@charset "UTF-8";
/**
  * Erdmann & Freunde - Nutshell
  * Starterkit
  * erdmann-freunde.de/nutshell/
  *
  * Lizenziert unter MIT OPEN SOURCE
  *
  */
/* ----------------------------------- *
 * Akzentfarben (Projektbezogen)
 * ----------------------------------- */
/* ----------------------------------- *
 * Font-Weight
 * ----------------------------------- */
/* ----------------------------------- *
 * Page-Layout
 * ----------------------------------- */
/* ----------------------------------- *
 * z-Indexes
 * ----------------------------------- */
html {
  --color-default: #ff5636;
  --color-gray-dark: #222;
  --color-gray: #555;
  --color-gray-light: #ccc;
  --color-brand: var(--color-default);
  --color-highlight: var(--color-brand);
  --color-page-background: #fff;
  --color-text: var(--color-gray-dark);
  --color-text-inverted: var(--color-page-background);
  --color-error: rgba(255, 0, 0, 1);
  --color-error-light: rgba(255, 0, 0, 0.5);
  --base-font-size-xs: 0.875rem;
  --base-font-size: 1rem;
  --base-font-size-xl: 1.125rem;
  --base-line-height: 1.625;
  --base-font-weight: 400;
  --base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
  --base-spacing-unit: 1rem;
  --base-spacing-unit-xs: calc(var(--base-spacing-unit) / 4);
  --base-spacing-unit-sm: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-lg: calc(var(--base-spacing-unit) * 2);
  --base-spacing-unit-xl: calc(var(--base-spacing-unit) * 4);
  --base-border-radius: 4px;
  --base-border-width: 1px;
  --base-border-color: var(--color-gray-light);
  --base-border: var(--base-border-width) solid var(--base-border-color);
  --grid-columns: 12;
  --grid-gutter: 1.875rem;
  --grid-gutter-half: calc(var(--grid-gutter) / 2);
  --layout-wrapper-background: transparent;
  --layout-header-background: var(--color-page-background);
  --layout-header-color: var(--color-text);
  --layout-footer-background: transparent;
  --layout-footer-color: var(--color-text);
  --article-spacing-sides: var(--grid-gutter-half);
  --article-spacing-top: var(--base-spacing-unit);
  --article-spacing-bottom: var(--base-spacing-unit);
  --headings-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial, sans-serif;
  --headings-font-weight: 700;
  --headings-color: 'currentColor';
  --h1-font-family: var(--headings-font-family);
  --h1-font-weight: var(--headings-font-weight);
  --h1-color: var(--headings-color);
  --h1-font-size: 2.0rem;
  --h1-font-size-sm: 2.0rem;
  --h1-font-size-md: 2.25rem;
  --h1-font-size-lg: 2.25rem;
  --h1-font-size-xl: 2.25rem;
  --h1-line-height: 1.55;
  --h1-spacing-top: 0;
  --h1-spacing-bottom: 0.5rem;
  --h2-font-family: var(--headings-font-family);
  --h2-font-weight: var(--headings-font-weight);
  --h2-color: var(--headings-color);
  --h2-font-size: 1.625rem;
  --h2-font-size-sm: 1.625rem;
  --h2-font-size-md: 1.75rem;
  --h2-font-size-lg: 1.75rem;
  --h2-font-size-xl: 1.75rem;
  --h2-line-height: 1.5;
  --h2-spacing-top: 0;
  --h2-spacing-bottom: 0.5rem;
  --h3-font-family: var(--headings-font-family);
  --h3-font-weight: var(--headings-font-weight);
  --h3-color: var(--headings-color);
  --h3-font-size: 1.375rem;
  --h3-font-size-sm: 1.375rem;
  --h3-font-size-md: 1.5rem;
  --h3-font-size-lg: 1.5rem;
  --h3-font-size-xl: 1.5rem;
  --h3-line-height: 1.25;
  --h3-spacing-top: 0;
  --h3-spacing-bottom: 0.5rem;
  --h4-font-family: var(--headings-font-family);
  --h4-font-weight: var(--headings-font-weight);
  --h4-color: var(--headings-color);
  --h4-font-size: 1.125rem;
  --h4-font-size-sm: 1.125rem;
  --h4-font-size-md: 1.25rem;
  --h4-font-size-lg: 1.25rem;
  --h4-font-size-xl: 1.25rem;
  --h4-line-height: 1;
  --h4-spacing-top: 0;
  --h4-spacing-bottom: 0.5rem;
  --h5-font-family: var(--headings-font-family);
  --h5-font-weight: var(--headings-font-weight);
  --h5-color: var(--headings-color);
  --h5-font-size: 1rem;
  --h5-font-size-sm: 1rem;
  --h5-font-size-md: 1rem;
  --h5-font-size-lg: 1rem;
  --h5-font-size-xl: 1rem;
  --h5-line-height: 1;
  --h5-spacing-top: 0;
  --h5-spacing-bottom: 0.5rem;
  --h6-font-family: var(--headings-font-family);
  --h6-font-weight: var(--headings-font-weight);
  --h6-color: var(--headings-color);
  --h6-font-size: 0.875rem;
  --h6-font-size-sm: 0.875rem;
  --h6-font-size-md: 0.875rem;
  --h6-font-size-lg: 0.875rem;
  --h6-font-size-xl: 0.875rem;
  --h6-line-height: 1;
  --h6-spacing-top: 0;
  --h6-spacing-bottom: 0.5rem;
  --paragraph-link-color: var(--links-color);
  --paragraph-link-decoration: underline;
  --paragraph-link-decoration-hover: none;
  --code-color: var(--color-highlight);
  --selection-background: var(--color-brand);
  --pre-color-background: var(--color-gray);
  --pre-color: var(--color-text-inverted);
  --selection-color: var(--color-text-inverted);
  --hr-border: var(--base-border);
  --gallery-gutter: var(--grid-gutter);
  --gallery-gutter-half: calc(var(--gallery-gutter) / 2);
  --links-color: var(--color-highlight);
  --links-color-hover: var(--color-highlight);
  --button-color: var(--color-text-inverted);
  --button-background: var(--color-highlight);
  --button-color-hover: var(--button-color);
  --button-background-hover: var(--color-highlight);
  --button-spacing: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  --button-border-radius: var(--base-border-radius);
  --button-border-width: var(--base-border-width);
  --button-font-family: var(--base-font-family);
  --button-font-weight: 400;
  --button-line-height: var(--base-line-height);
  --nav-item-padding: var(--base-spacing-unit);
  --slider-arrow-color: inherit;
  --slider-arrow-size: 2rem;
  --slider-arrow-font-family: 'Arial';
  --slider-menu-point-size: 2rem;
  --slider-menu-point-color: inherit;
  --slider-menu-point-color-active: var(--color-brand);
  --news-grid-columns-sm: 2;
  --news-grid-columns-md: 2;
  --news-grid-columns-lg: 3;
  --news-grid-columns-xl: 3;
  --news-border: var(--base-border);
  --events-grid-columns-sm: 1;
  --events-grid-columns-md: 2;
  --events-grid-columns-lg: 3;
  --events-grid-columns-xl: 3;
  --forms-input-border-width: var(--base-border-width);
  --forms-input-border-radius: var(--base-border-radius);
  --forms-input-border-color: rgba(0,0,0,0.25);
  --forms-input-background: var(--color-page-background);
  --forms-input-line-height: normal;
  --forms-mandatory-color: var(--color-brand);
  --accordion-spacing: var(--base-spacing-unit);
  --accordion-content-spacing: var(--base-spacing-unit-sm);
  --accordion-content-background: var(--color-gray-light);
  --accordion-toggler-font-size: 1.5rem;
  --accordion-toggler-background: var(--color-highlight);
  --accordion-toggler-color: var(--color-text-inverted);
  --accordion-toggler-color-hover: var(--color-brand-primary);
  --accordion-toggler-spacing: var(--base-spacing-unit-xs);
  --accordion-toggler-border: 2px solid transparent;
  --download-link-color: inherit;
  --download-link-decoration: none;
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: #ccc;
  --table-background-light: #eee;
  --newsletter-list-border: var(--base-border);
  --newsletter-reader-width: 600px;
  --newsletter-reader-border: var(--base-border);
  --faq-border: var(--base-border);
  --search-relevance-color: var(--color-gray);
  --search-url-color: var(--color-gray);
}

:root {
  --color-default: #4f5b4c;
  --color-gray-dark: #707070;
  --color-gray: #707070;
  --color-gray-light: #d5d5d5;
  --color-brand: var(--color-default);
  --color-highlight: #4f5b4c;
  --color-page-background: #fffcf9;
  --color-text: #393939;
  --color-text--inverted: var(--color-page-background);
  --color-error: rgba(255, 0, 0, 1);
  --color-error-light: rgba(255, 0, 0, 0.5);
  --base-font-size-xs: 1rem;
  --base-font-size: 1rem;
  --base-font-size-xl: 1.25rem;
  --base-line-height: 1.5;
  --base-font-weight: 300;
  --base-font-weight-v: normal;
  --base-font-family: "Outfit", "objektiv-mk1", -apple-system,
    BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Helvetica Neue", Arial, sans-serif;
  --base-spacing-unit: 1.5rem;
  --base-spacing-unit-xs: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-sm: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-lg: calc(var(--base-spacing-unit) * 2);
  --base-spacing-unit-xl: calc(var(--base-spacing-unit) * 4);
  --base-border-radius: 0;
  --base-border-width: 1px;
  --base-border-color: var(--color-text);
  --base-border: var(--base-border-width) solid var(--base-border-color);
  --grid-columns: 12;
  --grid-gutter: 0.7rem;
  --grid-gutter-half: calc(var(--grid-gutter) / 2);
  --layout-wrapper-background: transparent;
  --layout-header-background: var(--color-page-background);
  --layout-header-color: var(--color-text);
  --layout-footer-background: transparent;
  --layout-footer-color: var(--color-text);
  --article-spacing-sides: var(--grid-gutter-half);
  --article-spacing-top: var(--base-spacing-unit-lg);
  --article-spacing-bottom: var(--base-spacing-unit-lg);
  --headings-font-family: "Outfit", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Helvetica Neue", Arial,
    sans-serif;
  --headings-font-weight: 400;
  --headings-letter-spacing: 0;
}
@media screen and (min-width: 68.75em) {
  :root {
    --headings-letter-spacing: 2px;
  }
}
:root {
  --headings-color: "currentColor";
  --headings-font-family-special: "Sorts Mill Goudy", "Outfit", -apple-system,
    BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Helvetica Neue", Arial, sans-serif;
  --h1-font-family: var(--headings-font-family);
  --h1-font-weight: 500;
  --h1-color: var(--headings-color);
  --h1-font-size: 1.65rem;
  --h1-font-size-sm: 1.65rem;
  --h1-font-size-md: 1.65rem;
  --h1-font-size-lg: 1.65rem;
  --h1-font-size-xl: 1.65rem;
  --h1-font-size-xxl: 1.75rem;
  --h1-line-height: 1.25;
  --h1-spacing-top: 0;
  --h1-spacing-bottom: 0.5rem;
  --h2-font-family: var(--headings-font-family);
  --h2-font-weight: var(--headings-font-weight);
  --h2-color: var(--headings-color);
  --h2-font-size: 1.5rem;
  --h2-font-size-sm: 1.5rem;
  --h2-font-size-md: 1.5rem;
  --h2-font-size-lg: 1.5rem;
  --h2-font-size-xl: 1.5rem;
  --h2-font-size-xxl: 1.6rem;
  --h2-line-height: 1.25;
  --h2-spacing-top: 0;
  --h2-spacing-bottom: 0.5rem;
  --h3-font-family: var(--headings-font-family);
  --h3-font-weight: var(--headings-font-weight);
  --h3-color: var(--headings-color);
  --h3-font-size: 1.35rem;
  --h3-font-size-sm: 1.35rem;
  --h3-font-size-md: 1.35rem;
  --h3-font-size-lg: 1.35rem;
  --h3-font-size-xl: 1.35rem;
  --h3-font-size-xxl: 1.35rem;
  --h3-line-height: 1.25;
  --h3-spacing-top: 1rem;
  --h3-spacing-bottom: 0.2rem;
  --h4-font-family: var(--headings-font-family);
  --h4-font-weight: var(--headings-font-weight);
  --h4-color: var(--headings-color);
  --h4-font-size: 1.2rem;
  --h4-font-size-sm: 1.2rem;
  --h4-font-size-md: 1.2rem;
  --h4-font-size-lg: 1.2rem;
  --h4-font-size-xl: 1.2rem;
  --h4-font-size-xxl: 1.3rem;
  --h4-line-height: 1.25;
  --h4-spacing-top: 0.8rem;
  --h4-spacing-bottom: 0.2rem;
  --h5-font-family: var(--headings-font-family);
  --h5-font-weight: var(--headings-font-weight);
  --h5-color: var(--headings-color);
  --h5-font-size: 1.1rem;
  --h5-font-size-sm: 1.1rem;
  --h5-font-size-md: 1.1rem;
  --h5-font-size-lg: 1.1rem;
  --h5-font-size-xl: 1.1rem;
  --h5-font-size-xxl: 1.2rem;
  --h5-line-height: 1;
  --h5-spacing-top: 0.5;
  --h5-spacing-bottom: 0.2rem;
  --h6-font-family: var(--headings-font-family);
  --h6-font-weight: var(--headings-font-weight);
  --h6-color: var(--headings-color);
  --h6-font-size: 0.875rem;
  --h6-font-size-sm: 0.875rem;
  --h6-font-size-md: 1rem;
  --h6-font-size-lg: 1rem;
  --h6-font-size-xl: 1rem;
  --h6-font-size-xxl: 1rem;
  --h6-line-height: 1.3;
  --h6-spacing-top: 0;
  --h6-spacing-bottom: 0.2rem;
  --paragraph-link-color: var(--links-color);
  --paragraph-link-decoration: none;
  --paragraph-link-decoration-hover: none;
  --code-color: var(--color-highlight);
  --selection-background: var(--color-brand);
  --pre-color-background: var(--color-gray);
  --pre-color: var(--color-text-inverted);
  --selection-color: var(--color-text-inverted);
  --hr-border: var(--base-border);
  --gallery-gutter: var(--grid-gutter);
  --gallery-gutter-half: calc(var(--gallery-gutter) / 2);
  --links-color: #850109;
  --links-color-hover: #ba4c49;
  --button-color: #fffcf9;
  --button-background: #850109;
  --button-color-hover: var(--button-color);
  --button-background-hover: #850109;
  --button-spacing: 15px 25px;
  --button-border-radius: var(--base-border-radius);
  --button-border-width: var(--base-border-width);
  --button-font-family: var(--base-font-family);
  --button-font-weight: 300;
  --button-line-height: var(--base-line-height);
  --nav-item-padding: var(--base-spacing-unit);
  --slider-arrow-color: inherit;
  --slider-arrow-size: 2rem;
  --slider-arrow-font-family: "Arial";
  --slider-menu-point-size: 2rem;
  --slider-menu-point-color: inherit;
  --slider-menu-point-color-active: var(--color-brand);
  --news-grid-columns-sm: 2;
  --news-grid-columns-md: 2;
  --news-grid-columns-lg: 3;
  --news-grid-columns-xl: 3;
  --news-border: var(--base-border);
  --events-grid-columns-sm: 1;
  --events-grid-columns-md: 2;
  --events-grid-columns-lg: 3;
  --events-grid-columns-xl: 3;
  --forms-input-border-width: var(--base-border-width);
  --forms-input-border-radius: 0;
  --forms-input-border-color: rgba(0, 0, 0, 0.25);
  --forms-input-background: var(--color-page-background);
  --forms-input-line-height: normal;
  --forms-mandatory-color: var(--color-brand);
  --accordion-spacing: var(--base-spacing-unit);
  --accordion-content-spacing: var(--base-spacing-unit-sm);
  --accordion-content-background: var(--color-gray-light);
  --accordion-toggler-font-size: 1.5rem;
  --accordion-toggler-background: var(--color-highlight);
  --accordion-toggler-color: var(--color-text-inverted);
  --accordion-toggler-color-hover: var(--color-brand-primary);
  --accordion-toggler-spacing: var(--base-spacing-unit-xs);
  --accordion-toggler-border: 2px solid transparent;
  --download-link-color: inherit;
  --download-link-decoration: none;
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: #ccc;
  --table-background-light: #eee;
  --newsletter-list-border: var(--base-border);
  --newsletter-reader-width: 600px;
  --newsletter-reader-border: var(--base-border);
  --faq-border: var(--base-border);
  --search-relevance-color: var(--color-gray);
  --search-url-color: var(--color-gray);
}

.m-t-0,
.mod_article.m-t-0 {
  margin-top: calc(0 * var(--base-spacing-unit)) !important;
}

.m-b-0,
.mod_article.m-b-0 {
  margin-bottom: calc(0 * var(--base-spacing-unit)) !important;
}

.p-t-0,
.mod_article.p-t-0,
.mod_article.p-t-0 > .inside {
  padding-top: calc(0 * var(--base-spacing-unit)) !important;
}

.p-b-0,
.mod_article.p-b-0,
.mod_article.p-b-0 > .inside {
  padding-bottom: calc(0 * var(--base-spacing-unit)) !important;
}

.m-t-1,
.mod_article.m-t-1 {
  margin-top: calc(1 * var(--base-spacing-unit));
}

.m-b-1,
.mod_article.m-b-1 {
  margin-bottom: calc(1 * var(--base-spacing-unit));
}

.p-t-1,
.mod_article.p-t-1 {
  padding-top: calc(1 * var(--base-spacing-unit));
}

.p-b-1,
.mod_article.p-b-1 {
  padding-bottom: calc(1 * var(--base-spacing-unit));
}

.m-t-2,
.mod_article.m-t-2 {
  margin-top: calc(2 * var(--base-spacing-unit));
}

.m-b-2,
.mod_article.m-b-2 {
  margin-bottom: calc(2 * var(--base-spacing-unit));
}

.p-t-2,
.mod_article.p-t-2 {
  padding-top: calc(2 * var(--base-spacing-unit));
}

.p-b-2,
.mod_article.p-b-2 {
  padding-bottom: calc(2 * var(--base-spacing-unit));
}

.m-t-3,
.mod_article.m-t-3 {
  margin-top: calc(3 * var(--base-spacing-unit));
}

.m-b-3,
.mod_article.m-b-3 {
  margin-bottom: calc(3 * var(--base-spacing-unit));
}

.p-t-3,
.mod_article.p-t-3 {
  padding-top: calc(3 * var(--base-spacing-unit));
}

.p-b-3,
.mod_article.p-b-3 {
  padding-bottom: calc(3 * var(--base-spacing-unit));
}

.m-t-4,
.mod_article.m-t-4 {
  margin-top: calc(4 * var(--base-spacing-unit));
}

.m-b-4,
.mod_article.m-b-4 {
  margin-bottom: calc(4 * var(--base-spacing-unit));
}

.p-t-4,
.mod_article.p-t-4 {
  padding-top: calc(4 * var(--base-spacing-unit));
}

.p-b-4,
.mod_article.p-b-4 {
  padding-bottom: calc(4 * var(--base-spacing-unit));
}

.m-t-5,
.mod_article.m-t-5 {
  margin-top: calc(5 * var(--base-spacing-unit));
}

.m-b-5,
.mod_article.m-b-5 {
  margin-bottom: calc(5 * var(--base-spacing-unit));
}

.p-t-5,
.mod_article.p-t-5 {
  padding-top: calc(5 * var(--base-spacing-unit));
}

.p-b-5,
.mod_article.p-b-5 {
  padding-bottom: calc(5 * var(--base-spacing-unit));
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}

.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}


/*************************************

EXTERNAL WIDGETS STYLESHEET

*************************************/
#thn-cross-store .widget_bar {
  background-color: #4f5b4c !important;
}

[data-sal] {
  transition-delay: 0s;
  transition-delay: var(--sal-delay, 0s);
  transition-duration: 0.2s;
  transition-duration: var(--sal-duration, 0.2s);
  transition-timing-function: ease;
  transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
  transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
  transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
  transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
  transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
  transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
  transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
  transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
  transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
  transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
  transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
  transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
  transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
  transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
  transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
  transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
  transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
  transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
  transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
  transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
  transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
  transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
  transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
  transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
  transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
  transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
  transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
  transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
  transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
  transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
  transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
  transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
  transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
  transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
  transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
  transition-duration: 2s;
}

[data-sal][data-sal-delay="50"] {
  transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
  transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
  transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
  transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
  transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
  transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
  transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
  transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
  transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
  transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
  transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
  transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
  transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
  transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
  transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
  transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
  transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
  transition-delay: 1s;
}

[data-sal][data-sal-easing=linear] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing=ease] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing=ease-in] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing=ease-out] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing=ease-in-out] {
  transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-circ] {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing=ease-out-circ] {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing=ease-in-out-circ] {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing=ease-in-expo] {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing=ease-out-expo] {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing=ease-in-out-expo] {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

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

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

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

[data-sal][data-sal-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing=ease-in-quint] {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing=ease-out-quint] {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing=ease-in-out-quint] {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

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

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

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

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

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

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

[data-sal|=fade] {
  opacity: 0;
  transition-property: opacity;
}

[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
  opacity: 1;
}

[data-sal|=slide] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=slide-up] {
  transform: translateY(20%);
}

[data-sal=slide-down] {
  transform: translateY(-20%);
}

[data-sal=slide-left] {
  transform: translateX(20%);
}

[data-sal=slide-right] {
  transform: translateX(-20%);
}

[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
  opacity: 1;
  transform: none;
}

[data-sal|=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=zoom-in] {
  transform: scale(0.5);
}

[data-sal=zoom-out] {
  transform: scale(1.1);
}

[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
  opacity: 1;
  transform: none;
}

[data-sal|=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-sal=flip-left] {
  transform: perspective(2000px) rotateY(-91deg);
}

[data-sal=flip-right] {
  transform: perspective(2000px) rotateY(91deg);
}

[data-sal=flip-up] {
  transform: perspective(2000px) rotateX(-91deg);
}

[data-sal=flip-down] {
  transform: perspective(2000px) rotateX(91deg);
}

[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
  transform: none;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.invisible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

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

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

/*************************************

MAIN STYLESHEET

*************************************/
html.scroll-lock {
  overflow-y: hidden;
}

a:hover {
  color: rgb(208.9291044776, 1.5708955224, 14.1380597015);
}

.gnext,
.gprev {
  top: 45% !important;
}

#eighty_hotel_reviews_widget {
  position: initial !important;
}

/*************************************

START - HELPER CLASSES

*************************************/
.mail,
.tel,
.map,
.size-icon,
.night-icon,
.calendar-icon {
  transition: all 0.3s;
}
.mail:before,
.tel:before,
.map:before,
.size-icon:before,
.night-icon:before,
.calendar-icon:before {
  display: inline-block;
  width: 30px;
  height: 25px;
  margin-right: 10px;
  vertical-align: sub;
  filter: brightness(10);
}

.tel:before {
  height: 30px;
  margin-right: 0;
  content: url("../img/icons/phone-icon.svg");
}

.mail:before {
  content: url("../img/icons/mail-icon.svg");
}

.map br {
  padding-left: 30px;
}
.map:before {
  content: url("../img/icons/map-icon.svg");
  vertical-align: top;
}
@media screen and (min-width: 68.75em) {
  .map:before {
    float: left;
    height: 50px;
  }
}

.size-icon:before {
  content: url("../img/icons/quadtratmeter-icon.svg");
  width: 45px;
  filter: none;
}

.night-icon:before {
  content: url("../img/icons/night-icon.svg");
  filter: none;
  width: auto;
  height: auto;
  vertical-align: text-top;
  margin-right: 8px;
}

.calendar-icon:before {
  content: url("../img/icons/calendar-icon.svg");
  filter: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: text-top;
}

.people-icon {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.hyphenate {
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

@media screen and (min-width: 58.75em) {
  .d-lg-block {
    display: block !important;
  }
}
@media screen and (min-width: 68.75em) {
  .d-xl-inlineflex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 68.75em) {
  .d-xl-block {
    display: block;
  }
  .d-xl-none {
    display: none;
  }
}
.overflow-visible {
  overflow: visible !important;
}

.uppercase {
  text-transform: uppercase;
}

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

.imgFull {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.imgFull img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 58.75em) {
  .half-shifted > div:nth-child(even) {
    transform: translateY(-50px);
  }
}
.text--center {
  text-align: center;
}

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

.no-animation {
  transform: none !important;
  opacity: 1 !important;
}

/*************************************

BACKGROUNDS

*************************************/
.bg-darkwhite,
.bg-beige,
.bg-brown,
.bg-darkgreen,
#footer,
.bg-darkred,
.bg-green,
.bg-lightgreen {
  overflow: visible !important;
}
.bg-darkwhite > .inside > .btn:not(.back), .bg-darkwhite > .inside > .back:not(.back),
.bg-beige > .inside > .btn:not(.back),
.bg-beige > .inside > .back:not(.back),
.bg-brown > .inside > .btn:not(.back),
.bg-brown > .inside > .back:not(.back),
.bg-darkgreen > .inside > .btn:not(.back),
.bg-darkgreen > .inside > .back:not(.back),
#footer > .inside > .btn:not(.back),
#footer > .inside > .back:not(.back),
.bg-darkred > .inside > .btn:not(.back),
.bg-darkred > .inside > .back:not(.back),
.bg-green > .inside > .btn:not(.back),
.bg-green > .inside > .back:not(.back),
.bg-lightgreen > .inside > .btn:not(.back),
.bg-lightgreen > .inside > .back:not(.back) {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media screen and (min-width: 48em) {
  .bg-darkwhite > .inside > .btn:not(.back), .bg-darkwhite > .inside > .back:not(.back),
  .bg-beige > .inside > .btn:not(.back),
  .bg-beige > .inside > .back:not(.back),
  .bg-brown > .inside > .btn:not(.back),
  .bg-brown > .inside > .back:not(.back),
  .bg-darkgreen > .inside > .btn:not(.back),
  .bg-darkgreen > .inside > .back:not(.back),
  #footer > .inside > .btn:not(.back),
  #footer > .inside > .back:not(.back),
  .bg-darkred > .inside > .btn:not(.back),
  .bg-darkred > .inside > .back:not(.back),
  .bg-green > .inside > .btn:not(.back),
  .bg-green > .inside > .back:not(.back),
  .bg-lightgreen > .inside > .btn:not(.back),
  .bg-lightgreen > .inside > .back:not(.back) {
    bottom: -30px;
  }
}
.bg-darkwhite strong,
.bg-beige strong,
.bg-brown strong,
.bg-darkgreen strong,
#footer strong,
.bg-darkred strong,
.bg-green strong,
.bg-lightgreen strong {
  font-weight: 400;
}

.bg-darkwhite {
  background-color: #faf5f0;
}
.bg-darkwhite .card-slider .slider-wrapper .slide .slide-content {
  background-color: #fff;
}
.bg-darkwhite .controls #card-slider-controls li {
  background-color: #735c4f;
}
.bg-darkwhite .controls #card-slider-controls li img {
  filter: brightness(10);
}

.bg-brown {
  position: relative;
  background-color: #735c4f;
  color: #fff;
}
.bg-brown ul li:before {
  filter: brightness(10);
}
.bg-brown hr {
  border-color: #fff;
}
.bg-brown .ce_text a,
.bg-brown .ce_text ul a,
.bg-brown ul a,
.bg-brown .card .card-content p a {
  color: rgb(69.6520618557, 55.7216494845, 47.8479381443);
}
.bg-brown .ce_text a:hover,
.bg-brown .ce_text ul a:hover,
.bg-brown ul a:hover,
.bg-brown .card .card-content p a:hover {
  color: rgb(84.7680412371, 67.8144329897, 58.2319587629);
}
.bg-brown a {
  color: rgb(178.2396907216, 155.8917525773, 143.2603092784);
  border-bottom: 1px solid rgb(178.2396907216, 155.8917525773, 143.2603092784);
}
.bg-brown a:hover {
  color: rgb(188.6237113402, 169.2989690722, 158.3762886598);
  border-bottom: 1px solid rgb(188.6237113402, 169.2989690722, 158.3762886598);
}
.bg-brown:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100vw;
  background-color: #735c4f;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.bg-brown:after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: 0;
  background-color: #735c4f;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 58.75em) {
  .bg-brown:after {
    content: none;
  }
}

.bg-darkred {
  background-color: #850109;
  color: #fff;
}
.bg-darkred ul li:before {
  filter: brightness(10);
}
.bg-darkred .ce_text a,
.bg-darkred .ce_text ul a,
.bg-darkred ul a,
.bg-darkred .card .card-content p a {
  color: rgb(200.0199203187, 112.3705179283, 109.9800796813);
}
.bg-darkred .ce_text a:hover,
.bg-darkred .ce_text ul a:hover,
.bg-darkred ul a:hover,
.bg-darkred .card .card-content p a:hover {
  color: #ba4c49;
}

.bg-beige {
  background-color: #faf5f0;
}

.bg-green {
  background-color: #859d7f;
}
.bg-green .ce_text a,
.bg-green .ce_text ul a,
.bg-green p a,
.bg-green ul a,
.bg-green .card .card-content p a {
  color: rgb(91.0628742515, 104.8952095808, 87.6047904192);
}
.bg-green .ce_text a:hover,
.bg-green .ce_text ul a:hover,
.bg-green p a:hover,
.bg-green ul a:hover,
.bg-green .card .card-content p a:hover {
  color: #4f5b4c;
}
.bg-green a {
  color: rgb(91.0628742515, 104.8952095808, 87.6047904192);
}
.bg-green a:hover {
  color: #4f5b4c;
}
.bg-green p {
  color: #fff;
}
.bg-green .intro-text {
  color: #fff;
}
.bg-green .intro-text p {
  color: #fff;
}
.bg-green .intro-text.big {
  color: #4f5b4c;
}
.bg-green .filter-nav button.active {
  color: #4f5b4c;
}
.bg-green .filter-nav button:hover {
  color: #4f5b4c;
}

.bg-lightgreen {
  background-color: #cfddc7;
}
.bg-lightgreen p {
  color: #4f5b4c;
}
.bg-lightgreen .ce_text a,
.bg-lightgreen .ce_text ul a,
.bg-lightgreen ul a,
.bg-lightgreen p a,
.bg-lightgreen .card .card-content p a {
  color: rgb(115.1886227545, 132.6856287425, 110.8143712575);
}
.bg-lightgreen .ce_text a:hover,
.bg-lightgreen .ce_text ul a:hover,
.bg-lightgreen ul a:hover,
.bg-lightgreen p a:hover,
.bg-lightgreen .card .card-content p a:hover {
  color: #4f5b4c;
}
.bg-lightgreen a {
  color: rgb(115.1886227545, 132.6856287425, 110.8143712575);
}
.bg-lightgreen a:hover {
  color: #4f5b4c;
}

.bg-darkgreen, #footer {
  position: relative;
  background-color: #4f5b4c;
  color: #fff;
}
.bg-darkgreen .btn.green a, .bg-darkgreen .green.back a, #footer .btn.green a, #footer .green.back a {
  border: 1px solid #859d7f;
}
.bg-darkgreen ul li:before, #footer ul li:before {
  filter: brightness(10);
}
.bg-darkgreen hr, #footer hr {
  border-color: #fff;
}
.bg-darkgreen.ce_text a, .ce_text#footer a,
.bg-darkgreen ul a,
#footer ul a,
.bg-darkgreen p a,
#footer p a, .bg-darkgreen.card .card-content p a,
.bg-darkgreen .slide-content a,
#footer .slide-content a {
  color: #9bbb93;
}
.bg-darkgreen.ce_text a:hover, .ce_text#footer a:hover,
.bg-darkgreen ul a:hover,
#footer ul a:hover,
.bg-darkgreen p a:hover,
#footer p a:hover, .bg-darkgreen.card .card-content p a:hover,
.bg-darkgreen .slide-content a:hover,
#footer .slide-content a:hover {
  color: rgb(183.9772727273, 206.7045454545, 178.2954545455);
}
.bg-darkgreen:before, #footer:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100vw;
  background-color: #4f5b4c;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.bg-darkgreen:after, #footer:after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: 0;
  background-color: #4f5b4c;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 58.75em) {
  .bg-darkgreen:after, #footer:after {
    content: none;
  }
}
.bg-darkgreen .filter-nav button.active, #footer .filter-nav button.active {
  color: #4f5b4c;
}
.bg-darkgreen .filter-nav button:hover, #footer .filter-nav button:hover {
  color: #4f5b4c;
}

.ce_rsce_angebot_infos a:not(.btn):not(.back) {
  color: #859d7f !important;
}
.ce_rsce_angebot_infos a:not(.btn):not(.back):hover {
  color: rgb(95.4867256637, 117.5221238938, 89.9778761062) !important;
}

.workhour-wrapper .bg-darkgreen, .workhour-wrapper #footer,
.workhour-wrapper .bg-brown {
  padding: 30px 30px 55px 0;
  margin-bottom: 0;
}
.workhour-wrapper .bg-darkgreen .btn.btn--secondary, .workhour-wrapper .bg-darkgreen .btn--secondary.back, .workhour-wrapper #footer .btn.btn--secondary, .workhour-wrapper #footer .btn--secondary.back,
.workhour-wrapper .bg-brown .btn.btn--secondary,
.workhour-wrapper .bg-brown .btn--secondary.back {
  border-color: #fff;
  color: #fff;
}
.workhour-wrapper p {
  font-weight: 200;
}
.workhour-wrapper p strong {
  font-weight: 300;
  font-size: 22px;
}
.workhour-wrapper p.small,
.workhour-wrapper p span.small {
  font-size: 16px;
}
.workhour-wrapper hr {
  max-width: 500px;
  margin: 20px 0;
}
.workhour-wrapper h3 {
  font-weight: 300;
}
@media screen and (min-width: 120em) {
  .workhour-wrapper h3 {
    font-size: 30px;
  }
}

.workhour-bild-wrapper.ce_gallery {
  position: relative;
  padding-right: 0;
  margin-top: 10px;
  margin-left: -8vw;
  margin-right: -8vw;
}
@media screen and (min-width: 58.75em) {
  .workhour-bild-wrapper.ce_gallery {
    margin: 25px 0 0;
  }
}
@media only screen and (min-width: 2000px) {
  .workhour-bild-wrapper.ce_gallery {
    margin: 0 -15vw 0 0;
  }
}
.workhour-bild-wrapper.ce_gallery > ul li {
  grid-column: span 3;
}
.workhour-bild-wrapper.ce_gallery > ul figure img {
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 58.75em) {
  .workhour-bild-wrapper.ce_gallery {
    margin-top: 0;
  }
  .workhour-bild-wrapper.ce_gallery > ul {
    position: absolute;
    left: 0;
    right: -7vw;
    height: 100%;
  }
  .workhour-bild-wrapper.ce_gallery > ul * {
    height: 100%;
  }
  .workhour-bild-wrapper.ce_gallery > ul figure {
    height: 100%;
  }
  .workhour-bild-wrapper.ce_gallery > ul figure img {
    height: 100%;
  }
}
@media screen and (min-width: 120em) {
  .workhour-bild-wrapper.ce_gallery > ul {
    right: -10vw;
    overflow: hidden;
  }
}

.zimmer-startseite-wrapper .img-small,
.zimmer-startseite-wrapper .img-right {
  display: none;
}
@media screen and (min-width: 58.75em) {
  .zimmer-startseite-wrapper .img-small {
    display: block;
    max-width: 80%;
  }
  .zimmer-startseite-wrapper .img-right {
    display: block;
    margin-right: -10vw;
  }
}
@media only screen and (min-width: 2000px) {
  .zimmer-startseite-wrapper .img-right {
    margin-right: 0;
  }
}

/*************************************

INTRO

*************************************/
#intro {
  transform: none !important;
}
#intro .inside {
  padding-top: 40px;
  padding-bottom: 50px;
  max-width: 1000px;
}
@media screen and (min-width: 58.75em) {
  #intro .inside {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 120em) {
  #intro .inside {
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 1400px;
  }
}

.tipps-wrapper .tipps-text {
  position: relative;
}
@media screen and (min-width: 68.75em) {
  .tipps-wrapper .tipps-text {
    padding-right: 30px;
  }
}
@media screen and (min-width: 120em) {
  .tipps-wrapper .tipps-text {
    padding-right: 100px;
  }
}
.tipps-wrapper .tipps-text > figure {
  position: absolute;
  right: -10vw;
  opacity: 0.1;
}
@media screen and (min-width: 68.75em) {
  .tipps-wrapper .tipps-text > figure {
    opacity: 0.25;
  }
}

.detail-box {
  position: absolute;
  bottom: -40px;
  left: 50%;
  display: none;
  grid-template-columns: auto 1fr;
  width: -moz-max-content;
  width: max-content;
  padding: 15px 15px 15px 30px;
  align-items: center;
  background-color: white;
  border: 1px solid gray;
  text-align: center;
  transform: translateX(-50%);
  z-index: 1000;
}
@media screen and (min-width: 58.75em) {
  .detail-box {
    display: grid;
  }
}
@media screen and (min-width: 120em) {
  .detail-box {
    gap: 20px;
  }
}
.detail-box.title-green p a {
  color: rgb(119.2345132743, 145.9424778761, 112.5575221239) !important;
}
.detail-box.title-green p a:hover {
  color: rgb(95.4867256637, 117.5221238938, 89.9778761062) !important;
}
.detail-box .detail-wrapper {
  display: flex;
  margin-right: 15px;
  gap: 30px;
}
@media screen and (min-width: 120em) {
  .detail-box .detail-wrapper {
    margin-right: 25px;
    gap: 50px;
  }
}
.detail-box .detail-wrapper .detail {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 150px;
  text-align: left;
  gap: 10px;
}
.detail-box .detail-wrapper .detail:not(:last-child):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background-color: #d5d5d5;
  right: -15px;
}
@media screen and (min-width: 120em) {
  .detail-box .detail-wrapper .detail:not(:last-child):after {
    right: -25px;
  }
}
.detail-box a.btn, .detail-box a.back {
  margin-bottom: 0;
}
.detail-box a.btn:hover, .detail-box a.back:hover {
  transform: none;
}

/* ----------------------------------- *
 	* Fixed Widget Right 
 	* ----------------------------------- */
#eighty_hotel_reviews_widget {
  bottom: 80px !important;
}

.widget-right {
  position: fixed;
  display: flex;
  left: 0;
  bottom: 0;
  gap: 15px;
  align-items: center;
  width: 100%;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.widget-right > div {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}
@media screen and (min-width: 120em) {
  .widget-right > div {
    width: 85px;
    height: 85px;
  }
}
.widget-right .widget {
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px) scale(0.85);
  padding: 0;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 68.74875em) {
  .widget-right .widget.buchen {
    order: 1;
  }
}
.widget-right .widget.buchen a {
  background-color: rgb(158.3097014925, 1.1902985075, 10.7126865672);
}
.widget-right .widget.bilder {
  display: none;
}
@media screen and (min-width: 58.75em) {
  .widget-right .widget.bilder {
    display: block;
  }
}
@media screen and (min-width: 58.75em) {
  .widget-right .widget.telefon {
    display: none;
  }
}
@media screen and (min-width: 58.75em) {
  .widget-right .widget.gasthaus {
    display: none;
  }
}
.widget-right .widget.angebote {
  display: none;
}
@media screen and (min-width: 58.75em) {
  .widget-right .widget.angebote {
    display: block;
  }
}
.widget-right .widget figure {
  height: 100%;
}
.widget-right .widget a {
  background-color: rgb(91.0628742515, 104.8952095808, 87.6047904192);
  border-radius: 5px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  font-size: 12px;
  color: #fff;
  transition: all 0.3s;
}
.widget-right .widget a:hover {
  transform: translateY(-3px);
}
.widget-right .widget a img {
  filter: brightness(10);
  margin-bottom: 5px;
}
@media screen and (min-width: 58.75em) {
  .widget-right {
    top: 30vh;
    right: 15px;
    bottom: initial;
    left: initial;
    display: block;
    border-radius: none;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    width: auto;
    z-index: 5100;
  }
}
.widget-right.scrolled {
  opacity: 1;
  visibility: visible;
}
.widget-right.scrolled .widget {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.imgright-wrap .slider-wrapper > .tns-item,
.imgleft-wrap .slider-wrapper > .tns-item {
  padding-right: 0 !important;
}

@media screen and (min-width: 58.75em) {
  .bildtext-wrapper.row {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media screen and (min-width: 58.75em) and (min-width: 120em) {
  .bildtext-wrapper .imgright-wrap figure {
    height: 100%;
  }
}
@media screen and (min-width: 58.75em) {
  .bildtext-wrapper .imgright-wrap figure img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .bildtext-wrapper .imgleft-wrap figure {
    height: 100%;
  }
  .bildtext-wrapper .imgleft-wrap figure img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (min-width: 120em) {
  .imgright-wrap {
    margin: 0 -185px 0 0;
  }
  .imgleft-wrap {
    margin: 0 0 0 -185px;
  }
}
@media only screen and (min-width: 2000px) {
  .bildtext-wrapper .imgright-wrap,
  .bildtext-wrapper .imgleft-wrap {
    margin: 0;
  }
}
.gutzuwissen-icons {
  row-gap: 50px;
}
.gutzuwissen-icons a {
  font-family: var(--headings-font-family-special);
  color: var(--color-text);
}
@media screen and (min-width: 68.75em) {
  .gutzuwissen-icons a {
    font-size: 20px;
  }
}
.gutzuwissen-icons .arrow-container {
  max-width: 80px;
  margin: 15px auto 0;
}
.gutzuwissen-icons img {
  margin-bottom: 20px;
}

@media screen and (min-width: 68.75em) {
  .bildtext-wrapper.row {
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
}
.call-to-action {
  display: grid;
}
@media screen and (min-width: 58.75em) {
  .call-to-action {
    grid-template-columns: 1fr 1fr;
  }
}
.call-to-action {
  align-items: center;
  background-color: #fffcf9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.call-to-action.title-green p a {
  color: rgb(119.2345132743, 145.9424778761, 112.5575221239) !important;
}
.call-to-action.title-green p a:hover {
  color: rgb(95.4867256637, 117.5221238938, 89.9778761062) !important;
}
.call-to-action.title-green .btn, .call-to-action.title-green .back {
  background-color: #4f5b4c;
  border-color: #4f5b4c;
}
@media screen and (min-width: 58.75em) {
  .call-to-action.img-right .content-wrap {
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
.call-to-action .img-wrap {
  height: 100%;
}
.call-to-action .img-wrap figure {
  height: 100%;
}
.call-to-action .img-wrap figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.call-to-action .content-wrap {
  position: relative;
  padding: var(--base-spacing-unit);
}
@media screen and (max-width: 68.74875em) {
  .call-to-action .content-wrap .title-big {
    font-size: clamp(30px, 6vw, 50px);
  }
}
@media screen and (min-width: 68.75em) {
  .call-to-action .content-wrap {
    padding: 5vw;
  }
}
.call-to-action .content-wrap .btn.btn--primary, .call-to-action .content-wrap .back {
  margin: 20px 0;
}
@media screen and (min-width: 68.75em) {
  .call-to-action .content-wrap .btn.btn--primary, .call-to-action .content-wrap .back {
    margin: 35px 0;
  }
}
.call-to-action.title-red {
  background-color: #faf5f0;
}
.call-to-action.title-green {
  background-color: #f8f8f8;
}

.beispielgerichte .title-brown p {
  color: #735c4f;
}
.beispielgerichte .title-brown > .ce_text > figure {
  position: absolute;
  right: 20vw;
  top: 50%;
  transform: translateY(-50%);
}
.beispielgerichte h3 {
  font-family: var(--headings-font-family-special);
  margin-bottom: 0;
}
@media screen and (min-width: 120em) {
  .beispielgerichte h3 {
    font-size: 30px;
  }
}
.beispielgerichte hr {
  max-width: 260px;
}

.herbs {
  max-width: 300px;
  mix-blend-mode: darken;
}
@media screen and (max-width: 58.74875em) {
  .herbs.thymian {
    max-width: 250px;
  }
}
@media screen and (max-width: 119.99875em) {
  .herbs.startzimmer {
    margin-left: -150px;
  }
}
@media screen and (min-width: 58.75em) {
  .herbs {
    position: absolute;
    top: 0;
    right: 10vw;
    z-index: -1;
  }
}
@media screen and (min-width: 120em) {
  .herbs {
    max-width: 400px;
  }
}

@media screen and (min-width: 120em) {
  .benefits-wrapper {
    font-size: 22px;
  }
}

@media screen and (min-width: 58.75em) {
  .tagung-wrapper {
    gap: 50px !important;
  }
}
@media screen and (min-width: 58.75em) {
  .tagung-wrapper > div > div {
    margin-bottom: 0;
  }
}

.tagung-box {
  border: 1px solid #735c4f;
  padding: 15px;
}
@media screen and (min-width: 58.75em) {
  .tagung-box {
    padding: 25px;
  }
}
@media screen and (min-width: 68.75em) {
  .tagung-box {
    padding: 50px;
  }
}
.tagung-box * {
  color: #735c4f;
}
.tagung-box ul {
  list-style: none;
}
.tagung-box ul li {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.tagung-box ul li:not(:last-of-type) {
  border-bottom: 1px solid #735c4f;
}
.tagung-box img {
  height: 100px;
}

/*************************************

IMPRESSUM

*************************************/
.impressum h1 {
  font-size: 1.9rem;
  margin-bottom: 2rem;
}
.impressum h2 {
  font-size: 1.4rem;
}
.impressum h3 {
  font-size: 1.25rem;
}
@media screen and (min-width: 68.75em) {
  .impressum h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .impressum h2 {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
  .impressum h3 {
    font-size: 1.35rem;
  }
}

/*************************************

Cards

*************************************/
.card-background {
  position: relative;
}
.card-background:before {
  content: "";
  background-image: url(../img/kraeuter/kraeuter.svg);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: -190px;
  width: 300px;
  height: 400px;
  z-index: -1;
}
@media screen and (min-width: 0) {
  .card-background {
    display: none;
  }
}
@media screen and (min-width: 58.75em) {
  .card-background {
    display: flex;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--base-spacing-unit-sm);
}

ul, ol, dl,
blockquote, p, address,
hr,
fieldset, figure,
pre {
  margin-bottom: var(--base-spacing-unit);
}

ul, ol, dd {
  margin-left: var(--base-spacing-unit);
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

a {
  color: var(--links-color);
}

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

figure {
  margin: 0;
}

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

html {
  font-family: var(--base-font-family, sans-serif);
  font-size: var(--base-font-size-xs);
  line-height: var(--base-line-height);
  font-weight: var(--base-font-weight);
  background-color: var(--color-page-background);
  color: var(--color-text);
  overflow-y: scroll;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 34.375em) {
  html {
    font-size: var(--base-font-size-sm, var(--base-font-size));
  }
}
@media screen and (min-width: 48em) {
  html {
    font-size: var(--base-font-size);
  }
}
@media screen and (min-width: 58.75em) {
  html {
    font-size: var(--base-font-size-lg, var(--base-font-size));
  }
}
@media screen and (min-width: 68.75em) {
  html {
    font-size: var(--base-font-size-xl);
  }
}

/* sorts-mill-goudy-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Sorts Mill Goudy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/sorts-mill-goudy-v15-latin-regular.woff2") format("woff2");
}
/* outfit-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/outfit-v11-latin-200.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/outfit-v11-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/outfit-v11-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/outfit-v11-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
  font-family: var(--h1-font-family);
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height);
  color: var(--h1-color);
  margin-top: var(--h1-spacing-top);
  margin-bottom: var(--h1-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-xl);
  }
}
@media screen and (min-width: 120em) {
  .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-xxl);
  }
}

.heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
  font-family: var(--h2-font-family);
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height);
  color: var(--h2-color);
  margin-top: var(--h2-spacing-top);
  margin-bottom: var(--h2-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-xl);
  }
}
@media screen and (min-width: 120em) {
  .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-xxl);
  }
}

.heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
  font-family: var(--h3-font-family);
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--h3-line-height);
  color: var(--h3-color);
  margin-top: var(--h3-spacing-top);
  margin-bottom: var(--h3-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-xl);
  }
}
@media screen and (min-width: 120em) {
  .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-xxl);
  }
}

.heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
  font-family: var(--h4-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--h4-line-height);
  color: var(--h4-color);
  margin-top: var(--h4-spacing-top);
  margin-bottom: var(--h4-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-xl);
  }
}
@media screen and (min-width: 120em) {
  .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-xxl);
  }
}

.heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
  font-family: var(--h5-font-family);
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--h5-line-height);
  color: var(--h5-color);
  margin-top: var(--h5-spacing-top);
  margin-bottom: var(--h5-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-xl);
  }
}
@media screen and (min-width: 120em) {
  .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-xxl);
  }
}

.heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
  font-family: var(--h6-font-family);
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--h6-line-height);
  color: var(--h6-color);
  margin-top: var(--h6-spacing-top);
  margin-bottom: var(--h6-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-xl);
  }
}
@media screen and (min-width: 120em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-xxl);
  }
}

p,
ul,
ol {
  margin-top: 0;
}
p a,
ul a,
ol a {
  -webkit-text-decoration: var(--paragraph-link-decoration);
  text-decoration: var(--paragraph-link-decoration);
}
p a:hover,
ul a:hover,
ol a:hover {
  --paragraph-link-decoration: var(--paragraph-link-decoration-hover);
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

code {
  color: var(--code-color);
}

pre {
  padding: 1rem;
  background: var(--pre-color-background);
  color: var(--pre-color);
  overflow-x: scroll;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: var(--hr-border);
}

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

.ce_text,
.content-text {
  margin-bottom: var(--base-spacing-unit);
}

::-moz-selection {
  background: var(--selection-background);
  color: var(--selection-color);
  opacity: 1;
}

::selection {
  background: var(--selection-background);
  color: var(--selection-color);
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-weight: var(--headings-font-weight);
  letter-spacing: var(--headings-letter-spacing);
  font-style: normal;
  font-variant-numeric: lining-nums;
}

@media screen and (max-width: 68.74875em) {
  h2 {
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

h3 {
  letter-spacing: 1px;
}

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

h4 + h3,
h5 + h3 {
  margin-top: -1rem;
}

p,
ul,
ol {
  margin-top: 0;
  font-weight: var(--base-font-weight);
  margin-bottom: var(--base-spacing-unit-xs);
}
p a,
ul a,
ol a {
  font-variant-numeric: lining-nums;
  -webkit-text-decoration: var(--paragraph-link-decoration);
  text-decoration: var(--paragraph-link-decoration);
}
p a:hover,
ul a:hover,
ol a:hover {
  --paragraph-link-decoration: var(--paragraph-link-decoration-hover);
}

ul {
  padding-left: 3px;
  margin-left: 15px;
}
@media screen and (min-width: 58.75em) {
  ul {
    padding-left: 5px;
  }
}

p + ul {
  margin-top: -10px;
}

strong {
  font-weight: 500;
}
strong.highlight {
  color: #859d7f;
}
strong.green {
  color: #850109;
}
strong.orange {
  color: #859d7f;
}

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

.text-big {
  font-size: 18px;
}
@media screen and (min-width: 58.75em) {
  .text-big {
    font-size: 25px;
  }
}
@media screen and (min-width: 68.75em) {
  .text-big {
    font-size: 35px;
  }
}

.font-big {
  font-size: clamp(25px, 2vw, 35px);
  color: var(--headings__color);
  font-weight: 100;
}

.intro-text {
  font-family: var(--headings-font-family-special);
  font-size: 18px;
  margin-bottom: 0;
  transform: none !important;
  opacity: 1 !important;
}
@media screen and (min-width: 68.75em) {
  .intro-text {
    font-size: 25px;
  }
}
@media screen and (min-width: 120em) {
  .intro-text {
    font-size: 35px;
  }
}
.intro-text h1 {
  font-family: var(--headings-font-family-special);
}
@media screen and (min-width: 120em) {
  .intro-text h1 {
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 20px;
  }
}
.intro-text strong {
  font-weight: 600;
}
@media screen and (min-width: 120em) {
  .intro-text.big h1 {
    font-size: 65px;
    line-height: 95px;
  }
}

.line-link, #main-menu ul.level_1 > li ul.level_2 li a, #footer p a,
#footer ul li a,
#footer strong {
  display: inline-block;
}
.line-link:after, #main-menu ul.level_1 > li ul.level_2 li a:after, #footer p a:after,
#footer ul li a:after,
#footer strong:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 0;
  background-color: rgb(173, 173, 173);
  opacity: 0;
  transition: all 0.3s;
}
.line-link:hover:after, #main-menu ul.level_1 > li ul.level_2 li a:hover:after, #footer p a:hover:after,
#footer ul li a:hover:after,
#footer strong:hover:after {
  width: 100%;
  opacity: 1;
}

/*************************************

TITLE SETTINGS

*************************************/
p.title-big,
.title-big {
  display: block;
  font-family: var(--headings-font-family-special);
  font-size: clamp(30px, 8.8vw, 50px);
  line-height: 1.3;
}
@media screen and (min-width: 58.75em) {
  p.title-big,
  .title-big {
    font-size: clamp(30px, 4vw, 60px);
  }
}
@media screen and (min-width: 120em) {
  p.title-big,
  .title-big {
    font-size: clamp(30px, 8vw, 60px);
    margin-bottom: 10px;
  }
}
p.title-big span,
.title-big span {
  background: linear-gradient(0deg, rgba(57, 57, 57, 0) 0%, rgba(57, 57, 57, 0) 20%, rgba(57, 57, 57, 0.1) 20%, rgba(57, 57, 57, 0.1) 40%, rgba(57, 57, 57, 0) 40%, rgba(57, 57, 57, 0) 70%, rgba(57, 57, 57, 0) 100%);
}

.title-green.ce_headline {
  color: #4f5b4c;
}
.title-green h1, .title-green h2, .title-green h3, .title-green h4, .title-green h5, .title-green h6 {
  color: #4f5b4c;
}
.title-green.ce_text a,
.title-green ul a, .title-green.card .card-content p a,
.title-green .slide-content a {
  color: rgb(119.2345132743, 145.9424778761, 112.5575221239) !important;
}
.title-green.ce_text a:hover,
.title-green ul a:hover, .title-green.card .card-content p a:hover,
.title-green .slide-content a:hover {
  color: rgb(95.4867256637, 117.5221238938, 89.9778761062) !important;
}
.title-green .title-big {
  color: #4f5b4c;
}
.title-green .title-big span {
  background: linear-gradient(0deg, rgba(79, 91, 76, 0) 0%, rgba(79, 91, 76, 0) 20%, rgba(79, 91, 76, 0.2) 20%, rgba(79, 91, 76, 0.2) 40%, rgba(79, 91, 76, 0) 40%, rgba(79, 91, 76, 0) 70%, rgba(79, 91, 76, 0) 100%);
}

.title-red.ce_headline {
  color: #850109;
}
.title-red h1, .title-red h2, .title-red h3, .title-red h4, .title-red h5, .title-red h6 {
  color: #850109;
}
.title-red .title-big {
  color: #850109;
}
.title-red .title-big span {
  background: linear-gradient(0deg, rgba(133, 1, 9, 0) 0%, rgba(133, 1, 9, 0) 20%, rgba(133, 1, 9, 0.2) 20%, rgba(133, 1, 9, 0.2) 40%, rgba(133, 1, 9, 0) 40%, rgba(133, 1, 9, 0) 70%, rgba(133, 1, 9, 0) 100%);
}

.title-brown.ce_headline {
  color: #735c4f;
}
.title-brown.ce_text a,
.title-brown ul a, .title-brown.card .card-content p a,
.title-brown .slide-content a {
  color: rgb(145.2319587629, 116.1855670103, 99.7680412371) !important;
}
.title-brown.ce_text a:hover,
.title-brown ul a:hover, .title-brown.card .card-content p a:hover,
.title-brown .slide-content a:hover {
  color: rgb(99.8840206186, 79.9072164948, 68.6159793814) !important;
}
.title-brown a {
  color: #735c4f;
}
.title-brown a:hover {
  color: rgb(145.2319587629, 116.1855670103, 99.7680412371);
}
.title-brown h1, .title-brown h2, .title-brown h3, .title-brown h4, .title-brown h5, .title-brown h6 {
  color: #735c4f;
}
.title-brown .title-big {
  color: #735c4f;
}
.title-brown .title-big span {
  background: linear-gradient(0deg, rgba(115, 92, 79, 0) 0%, rgba(115, 92, 79, 0) 20%, rgba(115, 92, 79, 0.2) 20%, rgba(115, 92, 79, 0.2) 40%, rgba(115, 92, 79, 0) 40%, rgba(115, 92, 79, 0) 70%, rgba(115, 92, 79, 0) 100%);
}

/*************************************

CHECKLIST SETTINGS

*************************************/
.checklist h1, .checklist h2, .checklist h3, .checklist h4, .checklist h5, .checklist h6 {
  margin-bottom: 30px;
}
.checklist ul {
  list-style: none;
  margin-left: 20px;
  margin-top: -20px;
}
.checklist ul li {
  margin-bottom: 5px;
  vertical-align: middle;
  text-indent: -20px;
}
@media screen and (min-width: 58.75em) {
  .checklist ul li {
    text-indent: -25px;
  }
}
.checklist ul li:before {
  content: "";
  display: inline-block;
  background: url("../img/icons/check-icon.svg") no-repeat;
  width: 15px;
  height: 15px;
  vertical-align: sub;
  margin-right: 5px;
  background-size: contain;
}
@media screen and (min-width: 58.75em) {
  .checklist ul li:before {
    vertical-align: baseline;
  }
}
.checklist ul li ul {
  list-style: revert;
  margin: 0;
  margin-bottom: 10px;
}
.checklist ul li ul li {
  text-indent: 0;
  margin-left: 15px;
}
.checklist ul li ul li:before {
  content: none;
}

.row {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}

.row--gap-y {
  row-gap: var(--grid-gutter);
}

.ce_gallery > ul li, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  display: grid;
  grid-column: 1/-1;
  max-width: 100%;
}
@supports not (display: grid) {
  .ce_gallery > ul li, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}

.col {
  grid-column: 1/-1;
}

.col-1 {
  grid-column: span 1/span 1;
}
@supports not (display: grid) {
  .col-1 {
    width: 8.3333333333%;
  }
}

.row-start-1 {
  grid-row-start: 1;
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.col-2 {
  grid-column: span 2/span 2;
}
@supports not (display: grid) {
  .col-2 {
    width: 16.6666666667%;
  }
}

.row-start-2 {
  grid-row-start: 2;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.col-3 {
  grid-column: span 3/span 3;
}
@supports not (display: grid) {
  .col-3 {
    width: 25%;
  }
}

.row-start-3 {
  grid-row-start: 3;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.col-4 {
  grid-column: span 4/span 4;
}
@supports not (display: grid) {
  .col-4 {
    width: 33.3333333333%;
  }
}

.row-start-4 {
  grid-row-start: 4;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.col-5 {
  grid-column: span 5/span 5;
}
@supports not (display: grid) {
  .col-5 {
    width: 41.6666666667%;
  }
}

.row-start-5 {
  grid-row-start: 5;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.col-6 {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .col-6 {
    width: 50%;
  }
}

.row-start-6 {
  grid-row-start: 6;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-7 {
  grid-column: span 7/span 7;
}
@supports not (display: grid) {
  .col-7 {
    width: 58.3333333333%;
  }
}

.row-start-7 {
  grid-row-start: 7;
}

.row-span-7 {
  grid-row: span 7/span 7;
}

.col-8 {
  grid-column: span 8/span 8;
}
@supports not (display: grid) {
  .col-8 {
    width: 66.6666666667%;
  }
}

.row-start-8 {
  grid-row-start: 8;
}

.row-span-8 {
  grid-row: span 8/span 8;
}

.col-9 {
  grid-column: span 9/span 9;
}
@supports not (display: grid) {
  .col-9 {
    width: 75%;
  }
}

.row-start-9 {
  grid-row-start: 9;
}

.row-span-9 {
  grid-row: span 9/span 9;
}

.col-10 {
  grid-column: span 10/span 10;
}
@supports not (display: grid) {
  .col-10 {
    width: 83.3333333333%;
  }
}

.row-start-10 {
  grid-row-start: 10;
}

.row-span-10 {
  grid-row: span 10/span 10;
}

.col-11 {
  grid-column: span 11/span 11;
}
@supports not (display: grid) {
  .col-11 {
    width: 91.6666666667%;
  }
}

.row-start-11 {
  grid-row-start: 11;
}

.row-span-11 {
  grid-row: span 11/span 11;
}

.col-12 {
  grid-column: span 12/span 12;
}
@supports not (display: grid) {
  .col-12 {
    width: 100%;
  }
}

.row-start-12 {
  grid-row-start: 12;
}

.row-span-12 {
  grid-row: span 12/span 12;
}

@media screen and (min-width: 0) {
  .col-xs-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-xs-1 {
      width: 8.3333333333%;
    }
  }
  .col-xs-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-xs-2 {
      width: 16.6666666667%;
    }
  }
  .col-xs-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-xs-3 {
      width: 25%;
    }
  }
  .col-xs-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-xs-4 {
      width: 33.3333333333%;
    }
  }
  .col-xs-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-xs-5 {
      width: 41.6666666667%;
    }
  }
  .col-xs-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-xs-6 {
      width: 50%;
    }
  }
  .col-xs-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-xs-7 {
      width: 58.3333333333%;
    }
  }
  .col-xs-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-xs-8 {
      width: 66.6666666667%;
    }
  }
  .col-xs-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-xs-9 {
      width: 75%;
    }
  }
  .col-xs-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-xs-10 {
      width: 83.3333333333%;
    }
  }
  .col-xs-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-xs-11 {
      width: 91.6666666667%;
    }
  }
  .col-xs-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-xs-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 0) {
  .row-span-xs-1 {
    grid-row: span 1/span 1;
  }
  .row-span-xs-2 {
    grid-row: span 2/span 2;
  }
  .row-span-xs-3 {
    grid-row: span 3/span 3;
  }
  .row-span-xs-4 {
    grid-row: span 4/span 4;
  }
  .row-span-xs-5 {
    grid-row: span 5/span 5;
  }
  .row-span-xs-6 {
    grid-row: span 6/span 6;
  }
  .row-span-xs-7 {
    grid-row: span 7/span 7;
  }
  .row-span-xs-8 {
    grid-row: span 8/span 8;
  }
  .row-span-xs-9 {
    grid-row: span 9/span 9;
  }
  .row-span-xs-10 {
    grid-row: span 10/span 10;
  }
  .row-span-xs-11 {
    grid-row: span 11/span 11;
  }
  .row-span-xs-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 0) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }
  .row-start-xs-1 {
    grid-row-start: 1;
  }
  .col-start-xs-2 {
    grid-column-start: 2;
  }
  .row-start-xs-2 {
    grid-row-start: 2;
  }
  .col-start-xs-3 {
    grid-column-start: 3;
  }
  .row-start-xs-3 {
    grid-row-start: 3;
  }
  .col-start-xs-4 {
    grid-column-start: 4;
  }
  .row-start-xs-4 {
    grid-row-start: 4;
  }
  .col-start-xs-5 {
    grid-column-start: 5;
  }
  .row-start-xs-5 {
    grid-row-start: 5;
  }
  .col-start-xs-6 {
    grid-column-start: 6;
  }
  .row-start-xs-6 {
    grid-row-start: 6;
  }
  .col-start-xs-7 {
    grid-column-start: 7;
  }
  .row-start-xs-7 {
    grid-row-start: 7;
  }
  .col-start-xs-8 {
    grid-column-start: 8;
  }
  .row-start-xs-8 {
    grid-row-start: 8;
  }
  .col-start-xs-9 {
    grid-column-start: 9;
  }
  .row-start-xs-9 {
    grid-row-start: 9;
  }
  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .row-start-xs-10 {
    grid-row-start: 10;
  }
  .col-start-xs-11 {
    grid-column-start: 11;
  }
  .row-start-xs-11 {
    grid-row-start: 11;
  }
  .col-start-xs-12 {
    grid-column-start: 12;
  }
  .row-start-xs-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 0) {
  .pull-right-xs {
    grid-column-end: -1;
  }
  .pull-left-xs {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-sm-1 {
      width: 8.3333333333%;
    }
  }
  .col-sm-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-sm-2 {
      width: 16.6666666667%;
    }
  }
  .col-sm-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-sm-3 {
      width: 25%;
    }
  }
  .col-sm-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-sm-4 {
      width: 33.3333333333%;
    }
  }
  .col-sm-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-sm-5 {
      width: 41.6666666667%;
    }
  }
  .col-sm-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-sm-6 {
      width: 50%;
    }
  }
  .col-sm-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-sm-7 {
      width: 58.3333333333%;
    }
  }
  .col-sm-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-sm-8 {
      width: 66.6666666667%;
    }
  }
  .col-sm-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-sm-9 {
      width: 75%;
    }
  }
  .col-sm-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-sm-10 {
      width: 83.3333333333%;
    }
  }
  .col-sm-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-sm-11 {
      width: 91.6666666667%;
    }
  }
  .col-sm-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-sm-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 34.375em) {
  .row-span-sm-1 {
    grid-row: span 1/span 1;
  }
  .row-span-sm-2 {
    grid-row: span 2/span 2;
  }
  .row-span-sm-3 {
    grid-row: span 3/span 3;
  }
  .row-span-sm-4 {
    grid-row: span 4/span 4;
  }
  .row-span-sm-5 {
    grid-row: span 5/span 5;
  }
  .row-span-sm-6 {
    grid-row: span 6/span 6;
  }
  .row-span-sm-7 {
    grid-row: span 7/span 7;
  }
  .row-span-sm-8 {
    grid-row: span 8/span 8;
  }
  .row-span-sm-9 {
    grid-row: span 9/span 9;
  }
  .row-span-sm-10 {
    grid-row: span 10/span 10;
  }
  .row-span-sm-11 {
    grid-row: span 11/span 11;
  }
  .row-span-sm-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }
  .row-start-sm-1 {
    grid-row-start: 1;
  }
  .col-start-sm-2 {
    grid-column-start: 2;
  }
  .row-start-sm-2 {
    grid-row-start: 2;
  }
  .col-start-sm-3 {
    grid-column-start: 3;
  }
  .row-start-sm-3 {
    grid-row-start: 3;
  }
  .col-start-sm-4 {
    grid-column-start: 4;
  }
  .row-start-sm-4 {
    grid-row-start: 4;
  }
  .col-start-sm-5 {
    grid-column-start: 5;
  }
  .row-start-sm-5 {
    grid-row-start: 5;
  }
  .col-start-sm-6 {
    grid-column-start: 6;
  }
  .row-start-sm-6 {
    grid-row-start: 6;
  }
  .col-start-sm-7 {
    grid-column-start: 7;
  }
  .row-start-sm-7 {
    grid-row-start: 7;
  }
  .col-start-sm-8 {
    grid-column-start: 8;
  }
  .row-start-sm-8 {
    grid-row-start: 8;
  }
  .col-start-sm-9 {
    grid-column-start: 9;
  }
  .row-start-sm-9 {
    grid-row-start: 9;
  }
  .col-start-sm-10 {
    grid-column-start: 10;
  }
  .row-start-sm-10 {
    grid-row-start: 10;
  }
  .col-start-sm-11 {
    grid-column-start: 11;
  }
  .row-start-sm-11 {
    grid-row-start: 11;
  }
  .col-start-sm-12 {
    grid-column-start: 12;
  }
  .row-start-sm-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    grid-column-end: -1;
  }
  .pull-left-sm {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 48em) {
  .col-md-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-md-1 {
      width: 8.3333333333%;
    }
  }
  .col-md-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-md-2 {
      width: 16.6666666667%;
    }
  }
  .col-md-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-md-3 {
      width: 25%;
    }
  }
  .col-md-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-md-4 {
      width: 33.3333333333%;
    }
  }
  .col-md-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-md-5 {
      width: 41.6666666667%;
    }
  }
  .col-md-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-md-6 {
      width: 50%;
    }
  }
  .col-md-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-md-7 {
      width: 58.3333333333%;
    }
  }
  .col-md-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-md-8 {
      width: 66.6666666667%;
    }
  }
  .col-md-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-md-9 {
      width: 75%;
    }
  }
  .col-md-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-md-10 {
      width: 83.3333333333%;
    }
  }
  .col-md-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-md-11 {
      width: 91.6666666667%;
    }
  }
  .col-md-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-md-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 48em) {
  .row-span-md-1 {
    grid-row: span 1/span 1;
  }
  .row-span-md-2 {
    grid-row: span 2/span 2;
  }
  .row-span-md-3 {
    grid-row: span 3/span 3;
  }
  .row-span-md-4 {
    grid-row: span 4/span 4;
  }
  .row-span-md-5 {
    grid-row: span 5/span 5;
  }
  .row-span-md-6 {
    grid-row: span 6/span 6;
  }
  .row-span-md-7 {
    grid-row: span 7/span 7;
  }
  .row-span-md-8 {
    grid-row: span 8/span 8;
  }
  .row-span-md-9 {
    grid-row: span 9/span 9;
  }
  .row-span-md-10 {
    grid-row: span 10/span 10;
  }
  .row-span-md-11 {
    grid-row: span 11/span 11;
  }
  .row-span-md-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }
  .row-start-md-1 {
    grid-row-start: 1;
  }
  .col-start-md-2 {
    grid-column-start: 2;
  }
  .row-start-md-2 {
    grid-row-start: 2;
  }
  .col-start-md-3 {
    grid-column-start: 3;
  }
  .row-start-md-3 {
    grid-row-start: 3;
  }
  .col-start-md-4 {
    grid-column-start: 4;
  }
  .row-start-md-4 {
    grid-row-start: 4;
  }
  .col-start-md-5 {
    grid-column-start: 5;
  }
  .row-start-md-5 {
    grid-row-start: 5;
  }
  .col-start-md-6 {
    grid-column-start: 6;
  }
  .row-start-md-6 {
    grid-row-start: 6;
  }
  .col-start-md-7 {
    grid-column-start: 7;
  }
  .row-start-md-7 {
    grid-row-start: 7;
  }
  .col-start-md-8 {
    grid-column-start: 8;
  }
  .row-start-md-8 {
    grid-row-start: 8;
  }
  .col-start-md-9 {
    grid-column-start: 9;
  }
  .row-start-md-9 {
    grid-row-start: 9;
  }
  .col-start-md-10 {
    grid-column-start: 10;
  }
  .row-start-md-10 {
    grid-row-start: 10;
  }
  .col-start-md-11 {
    grid-column-start: 11;
  }
  .row-start-md-11 {
    grid-row-start: 11;
  }
  .col-start-md-12 {
    grid-column-start: 12;
  }
  .row-start-md-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 48em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-lg-1 {
      width: 8.3333333333%;
    }
  }
  .col-lg-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-lg-2 {
      width: 16.6666666667%;
    }
  }
  .col-lg-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-lg-3 {
      width: 25%;
    }
  }
  .col-lg-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-lg-4 {
      width: 33.3333333333%;
    }
  }
  .col-lg-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-lg-5 {
      width: 41.6666666667%;
    }
  }
  .col-lg-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-lg-6 {
      width: 50%;
    }
  }
  .col-lg-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-lg-7 {
      width: 58.3333333333%;
    }
  }
  .col-lg-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-lg-8 {
      width: 66.6666666667%;
    }
  }
  .col-lg-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-lg-9 {
      width: 75%;
    }
  }
  .col-lg-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-lg-10 {
      width: 83.3333333333%;
    }
  }
  .col-lg-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-lg-11 {
      width: 91.6666666667%;
    }
  }
  .col-lg-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-lg-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 58.75em) {
  .row-span-lg-1 {
    grid-row: span 1/span 1;
  }
  .row-span-lg-2 {
    grid-row: span 2/span 2;
  }
  .row-span-lg-3 {
    grid-row: span 3/span 3;
  }
  .row-span-lg-4 {
    grid-row: span 4/span 4;
  }
  .row-span-lg-5 {
    grid-row: span 5/span 5;
  }
  .row-span-lg-6 {
    grid-row: span 6/span 6;
  }
  .row-span-lg-7 {
    grid-row: span 7/span 7;
  }
  .row-span-lg-8 {
    grid-row: span 8/span 8;
  }
  .row-span-lg-9 {
    grid-row: span 9/span 9;
  }
  .row-span-lg-10 {
    grid-row: span 10/span 10;
  }
  .row-span-lg-11 {
    grid-row: span 11/span 11;
  }
  .row-span-lg-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  .row-start-lg-4 {
    grid-row-start: 4;
  }
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  .row-start-lg-5 {
    grid-row-start: 5;
  }
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  .row-start-lg-6 {
    grid-row-start: 6;
  }
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  .row-start-lg-7 {
    grid-row-start: 7;
  }
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  .row-start-lg-8 {
    grid-row-start: 8;
  }
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  .row-start-lg-9 {
    grid-row-start: 9;
  }
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  .row-start-lg-10 {
    grid-row-start: 10;
  }
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  .row-start-lg-11 {
    grid-row-start: 11;
  }
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  .row-start-lg-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-xl-1 {
      width: 8.3333333333%;
    }
  }
  .col-xl-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-xl-2 {
      width: 16.6666666667%;
    }
  }
  .col-xl-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-xl-3 {
      width: 25%;
    }
  }
  .col-xl-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-xl-4 {
      width: 33.3333333333%;
    }
  }
  .col-xl-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-xl-5 {
      width: 41.6666666667%;
    }
  }
  .col-xl-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-xl-6 {
      width: 50%;
    }
  }
  .col-xl-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-xl-7 {
      width: 58.3333333333%;
    }
  }
  .col-xl-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-xl-8 {
      width: 66.6666666667%;
    }
  }
  .col-xl-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-xl-9 {
      width: 75%;
    }
  }
  .col-xl-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-xl-10 {
      width: 83.3333333333%;
    }
  }
  .col-xl-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-xl-11 {
      width: 91.6666666667%;
    }
  }
  .col-xl-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-xl-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 68.75em) {
  .row-span-xl-1 {
    grid-row: span 1/span 1;
  }
  .row-span-xl-2 {
    grid-row: span 2/span 2;
  }
  .row-span-xl-3 {
    grid-row: span 3/span 3;
  }
  .row-span-xl-4 {
    grid-row: span 4/span 4;
  }
  .row-span-xl-5 {
    grid-row: span 5/span 5;
  }
  .row-span-xl-6 {
    grid-row: span 6/span 6;
  }
  .row-span-xl-7 {
    grid-row: span 7/span 7;
  }
  .row-span-xl-8 {
    grid-row: span 8/span 8;
  }
  .row-span-xl-9 {
    grid-row: span 9/span 9;
  }
  .row-span-xl-10 {
    grid-row: span 10/span 10;
  }
  .row-span-xl-11 {
    grid-row: span 11/span 11;
  }
  .row-span-xl-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 68.75em) {
  .col-start-xl-1 {
    grid-column-start: 1;
  }
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  .row-start-xl-4 {
    grid-row-start: 4;
  }
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  .row-start-xl-5 {
    grid-row-start: 5;
  }
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  .row-start-xl-6 {
    grid-row-start: 6;
  }
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  .row-start-xl-7 {
    grid-row-start: 7;
  }
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  .row-start-xl-8 {
    grid-row-start: 8;
  }
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  .row-start-xl-9 {
    grid-row-start: 9;
  }
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  .row-start-xl-10 {
    grid-row-start: 10;
  }
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  .row-start-xl-11 {
    grid-row-start: 11;
  }
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  .row-start-xl-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 120em) {
  .col-xxl-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-xxl-1 {
      width: 8.3333333333%;
    }
  }
  .col-xxl-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-xxl-2 {
      width: 16.6666666667%;
    }
  }
  .col-xxl-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-xxl-3 {
      width: 25%;
    }
  }
  .col-xxl-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-xxl-4 {
      width: 33.3333333333%;
    }
  }
  .col-xxl-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-xxl-5 {
      width: 41.6666666667%;
    }
  }
  .col-xxl-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-xxl-6 {
      width: 50%;
    }
  }
  .col-xxl-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-xxl-7 {
      width: 58.3333333333%;
    }
  }
  .col-xxl-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-xxl-8 {
      width: 66.6666666667%;
    }
  }
  .col-xxl-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-xxl-9 {
      width: 75%;
    }
  }
  .col-xxl-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-xxl-10 {
      width: 83.3333333333%;
    }
  }
  .col-xxl-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-xxl-11 {
      width: 91.6666666667%;
    }
  }
  .col-xxl-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-xxl-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 120em) {
  .row-span-xxl-1 {
    grid-row: span 1/span 1;
  }
  .row-span-xxl-2 {
    grid-row: span 2/span 2;
  }
  .row-span-xxl-3 {
    grid-row: span 3/span 3;
  }
  .row-span-xxl-4 {
    grid-row: span 4/span 4;
  }
  .row-span-xxl-5 {
    grid-row: span 5/span 5;
  }
  .row-span-xxl-6 {
    grid-row: span 6/span 6;
  }
  .row-span-xxl-7 {
    grid-row: span 7/span 7;
  }
  .row-span-xxl-8 {
    grid-row: span 8/span 8;
  }
  .row-span-xxl-9 {
    grid-row: span 9/span 9;
  }
  .row-span-xxl-10 {
    grid-row: span 10/span 10;
  }
  .row-span-xxl-11 {
    grid-row: span 11/span 11;
  }
  .row-span-xxl-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 120em) {
  .col-start-xxl-1 {
    grid-column-start: 1;
  }
  .row-start-xxl-1 {
    grid-row-start: 1;
  }
  .col-start-xxl-2 {
    grid-column-start: 2;
  }
  .row-start-xxl-2 {
    grid-row-start: 2;
  }
  .col-start-xxl-3 {
    grid-column-start: 3;
  }
  .row-start-xxl-3 {
    grid-row-start: 3;
  }
  .col-start-xxl-4 {
    grid-column-start: 4;
  }
  .row-start-xxl-4 {
    grid-row-start: 4;
  }
  .col-start-xxl-5 {
    grid-column-start: 5;
  }
  .row-start-xxl-5 {
    grid-row-start: 5;
  }
  .col-start-xxl-6 {
    grid-column-start: 6;
  }
  .row-start-xxl-6 {
    grid-row-start: 6;
  }
  .col-start-xxl-7 {
    grid-column-start: 7;
  }
  .row-start-xxl-7 {
    grid-row-start: 7;
  }
  .col-start-xxl-8 {
    grid-column-start: 8;
  }
  .row-start-xxl-8 {
    grid-row-start: 8;
  }
  .col-start-xxl-9 {
    grid-column-start: 9;
  }
  .row-start-xxl-9 {
    grid-row-start: 9;
  }
  .col-start-xxl-10 {
    grid-column-start: 10;
  }
  .row-start-xxl-10 {
    grid-row-start: 10;
  }
  .col-start-xxl-11 {
    grid-column-start: 11;
  }
  .row-start-xxl-11 {
    grid-row-start: 11;
  }
  .col-start-xxl-12 {
    grid-column-start: 12;
  }
  .row-start-xxl-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 120em) {
  .pull-right-xxl {
    grid-column-end: -1;
  }
  .pull-left-xxl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
.justify-start {
  justify-self: start;
  text-align: left;
}

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

.justify-end {
  justify-self: end;
  text-align: right;
}

@media screen and (min-width: 0) {
  .justify-xs-start {
    justify-self: start;
    text-align: left;
  }
  .justify-xs-center {
    justify-self: center;
    text-align: center;
  }
  .justify-xs-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
    text-align: left;
  }
  .justify-sm-center {
    justify-self: center;
    text-align: center;
  }
  .justify-sm-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
    text-align: left;
  }
  .justify-md-center {
    justify-self: center;
    text-align: center;
  }
  .justify-md-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
    text-align: left;
  }
  .justify-lg-center {
    justify-self: center;
    text-align: center;
  }
  .justify-lg-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
    text-align: left;
  }
  .justify-xl-center {
    justify-self: center;
    text-align: center;
  }
  .justify-xl-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 120em) {
  .justify-xxl-start {
    justify-self: start;
    text-align: left;
  }
  .justify-xxl-center {
    justify-self: center;
    text-align: center;
  }
  .justify-xxl-end {
    justify-self: end;
    text-align: right;
  }
}
.align-start {
  align-self: start;
}

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

.align-end {
  align-self: end;
}

@media screen and (min-width: 0) {
  .align-xs-start {
    align-self: start;
  }
  .align-xs-center {
    align-self: center;
  }
  .align-xs-end {
    align-self: end;
  }
}
@media screen and (min-width: 34.375em) {
  .align-sm-start {
    align-self: start;
  }
  .align-sm-center {
    align-self: center;
  }
  .align-sm-end {
    align-self: end;
  }
}
@media screen and (min-width: 48em) {
  .align-md-start {
    align-self: start;
  }
  .align-md-center {
    align-self: center;
  }
  .align-md-end {
    align-self: end;
  }
}
@media screen and (min-width: 58.75em) {
  .align-lg-start {
    align-self: start;
  }
  .align-lg-center {
    align-self: center;
  }
  .align-lg-end {
    align-self: end;
  }
}
@media screen and (min-width: 68.75em) {
  .align-xl-start {
    align-self: start;
  }
  .align-xl-center {
    align-self: center;
  }
  .align-xl-end {
    align-self: end;
  }
}
@media screen and (min-width: 120em) {
  .align-xxl-start {
    align-self: start;
  }
  .align-xxl-center {
    align-self: center;
  }
  .align-xxl-end {
    align-self: end;
  }
}
html {
  --grid__gutter: 1rem;
}

@media screen and (min-width: 58.75em) {
  .big-gap {
    -moz-column-gap: 1.5em;
    column-gap: 1.5em;
  }
}
@media screen and (min-width: 120em) {
  .big-gap {
    -moz-column-gap: 3.5em;
    column-gap: 3.5em;
  }
}

.align-items-baseline {
  align-items: baseline;
}

.row--gap-y {
  row-gap: calc(var(--grid-gutter) * 2);
}
@media screen and (min-width: 120em) {
  .row--gap-y {
    row-gap: calc(var(--grid-gutter) * 3);
  }
}

[id=wrapper] {
  min-height: 100vh;
  display: grid;
  grid-template-rows: min-content auto min-content;
  grid-template-columns: 100%;
  margin-left: auto;
  margin-right: auto;
  background: var(--layout-wrapper-background);
}

[id=header] {
  background: var(--layout-header-background);
  color: var(--layout-header-color);
}
[id=header] > .inside {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
}

[id=footer] {
  background: var(--layout-footer-background);
  color: var(--layout-footer-color);
}
[id=footer] > .inside {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
}

@media screen and (min-width: 120em) {
  .container-small {
    max-width: 80vw;
    margin: 0 auto;
  }
}

.column-2 {
  display: grid;
  justify-content: center;
  margin: 0;
}
@media screen and (min-width: 58.75em) {
  .column-2 {
    display: block;
    max-width: 650px;
    margin: 0 auto;
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .column-2 h1,
  .column-2 h2,
  .column-2 h3 {
    -moz-column-span: all;
    column-span: all;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 68.75em) {
  .column-2 {
    max-width: 850px;
  }
}
@media screen and (min-width: 120em) {
  .column-2 {
    -moz-column-gap: 200px;
    column-gap: 200px;
  }
}

.angebot-infos p {
  margin-bottom: 10px;
}
.angebot-infos a {
  color: #859d7f !important;
}
.angebot-infos a:hover {
  color: rgb(119.2345132743, 145.9424778761, 112.5575221239) !important;
}

/*************************************

FOOTER SECTION

*************************************/
#footer {
  position: relative;
  color: #fff;
  font-size: 17px;
  padding-top: 100px;
  z-index: 2000;
}
@media screen and (min-width: 34.375em) {
  #footer {
    font-size: 23px;
  }
}
#footer .inside > .row {
  position: relative;
  overflow: hidden;
}
#footer .inside > .row:before {
  content: "";
  background-image: url("../img/icons/kammbraeu-symbol.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 350px;
  height: 400px;
  opacity: 0.03;
  z-index: -1;
}
#footer p a,
#footer ul li a,
#footer strong {
  font-weight: 200;
  text-decoration: none;
  color: #fff;
}
#footer .footer-widgets {
  position: absolute;
  display: flex;
  gap: 20px;
  top: -65px;
  right: 10%;
}
#footer .footer-widgets a {
  transition: all 0.2s;
}
#footer .footer-widgets a:after {
  content: none;
}
#footer .footer-widgets a:hover {
  transform: translateY(-3px);
}
#footer .logo img {
  margin: 0;
  padding: 30px 0;
}
#footer .footer-nav {
  line-height: 40px;
  max-width: 250px;
}
#footer .footer-nav ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}
#footer .footer-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
#footer .footer-nav ul li.active {
  border-bottom: 1px solid #fff;
}
#footer .footer-nav ul li a,
#footer .footer-nav ul li strong {
  width: 100%;
  color: #fff;
}
#footer .copyright {
  font-size: 16px;
}
@media screen and (min-width: 34.375em) {
  #footer .copyright {
    font-size: 18px;
  }
}

.mod_article {
  position: relative;
}
.mod_article > .inside {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
  padding-top: var(--article-spacing-top);
  padding-bottom: var(--article-spacing-bottom);
}

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

.mod_article {
  position: relative;
  overflow: hidden;
}
.mod_article:not(#intro):not(#intro-padding):first-child > .inside {
  padding-bottom: 0;
}
.mod_article:first-child {
  transform: none !important;
  opacity: 1 !important;
}
@media screen and (min-width: 58.75em) {
  .mod_article > .inside {
    padding-left: var(--base-spacing-unit-lg);
    padding-right: var(--base-spacing-unit-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .mod_article > .inside {
    padding-left: var(--base-spacing-unit-lg);
    padding-right: var(--base-spacing-unit-lg);
  }
}
@media screen and (min-width: 120em) {
  .mod_article > .inside {
    padding-top: var(--base-spacing-unit-xl);
    padding-bottom: var(--base-spacing-unit-xl);
    padding-left: var(--base-spacing-unit);
    padding-right: var(--base-spacing-unit);
  }
}

#main .article--full > .inside {
  padding-top: var(--article-spacing-top);
  padding-bottom: var(--article-spacing-bottom);
}
@media screen and (min-width: 120em) {
  #main .article--full > .inside {
    padding: var(--base-spacing-unit-xl);
  }
}
#main .article--full > .inside .row.inside {
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
}
#main .article--full.no-padding > .inside {
  padding-left: 0;
  padding-right: 0;
}
.image--left img {
  text-align: left;
  margin-left: 0;
}

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

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

.ce_gallery {
  margin-bottom: var(--base-spacing-unit);
}
.ce_gallery > ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .ce_gallery > ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
.ce_gallery > ul {
  grid-row-gap: var(--gallery-gutter);
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.ce_gallery .cols_2 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_2 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_2 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_2 li {
    width: 50%;
  }
}
.ce_gallery .cols_3 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_3 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_3 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_3 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_3 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_3 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_3 li {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_3 li {
      width: 33.3333333333%;
    }
  }
}
.ce_gallery .cols_4 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_4 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_4 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_4 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_4 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_4 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_4 li {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_4 li {
      width: 25%;
    }
  }
}
.ce_gallery .cols_5 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_5 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_5 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_5 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_5 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_5 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_5 li {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_5 li {
      width: 16.6666666667%;
    }
  }
}
.ce_gallery .cols_6 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_6 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_6 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_6 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_6 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_6 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_6 li {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_6 li {
      width: 16.6666666667%;
    }
  }
}
.ce_gallery img {
  display: block;
}

.content-gallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.content-gallery a {
  text-decoration: none;
}
.content-gallery {
  margin-bottom: var(--base-spacing-unit);
}
.content-gallery ul {
  grid-row-gap: var(--gallery-gutter);
}
.content-gallery--cols-2 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-2 ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
.content-gallery--cols-3 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-3 ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-3 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-3 ul {
      display: flex;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery--cols-4 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-4 ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-4 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-4 ul {
      display: flex;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery--cols-5 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-5 ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-5 ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-5 ul {
      display: flex;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery--cols-6 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-6 ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-6 ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-6 ul {
      display: flex;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery img {
  display: block;
}

.ce_player .video_container,
.ce_youtube .video_container {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}

.content-player figure:has(video),
.content-player figure:has(iframe),
.content-youtube figure:has(video),
.content-youtube figure:has(iframe) {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}

.ce_player video,
.content-player video {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}

.ce_youtube iframe,
.ce_youtube a,
.content-youtube iframe,
.content-youtube a {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}
.ce_youtube button,
.content-youtube button {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
}
.ce_youtube button img,
.content-youtube button img {
  grid-column: 1/-1;
  grid-row: 1;
}
.ce_youtube button p,
.content-youtube button p {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: var(--base-spacing-unit);
  background: var(--base-overlay-background);
  color: var(--color-text-inverted);
}

.fullwidth-left .fullwidth-left-img {
  position: relative;
  border-radius: 0 50px 50px 0;
  margin-left: -50%;
  overflow: hidden;
}
.fullwidth-left .fullwidth-left-img img {
  width: 100%;
}
.fullwidth-left .fullwidth-left-img:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  z-index: 1;
}

@media screen and (min-width: 68.75em) {
  .attached-img-left {
    margin-left: -100%;
  }
  .attached-img-left img {
    width: 100%;
  }
}

@media screen and (min-width: 58.75em) {
  .fullwidth-img::after {
    content: "";
    position: absolute;
    inset: 60% 0 0 0;
    background: linear-gradient(to bottom, transparent, black);
  }
}

.fullwidth-text {
  padding-top: 0;
}
@media screen and (min-width: 58.75em) {
  .fullwidth-text {
    margin-top: -5vw;
    padding-top: 0;
  }
}

.absolute-img figure {
  position: absolute;
  top: 50%;
  right: 15vw;
  transform: translateY(-50%);
  opacity: 0.15;
}

.masonry-wrap {
  width: calc(50% - 10px);
}
@media screen and (min-width: 68.75em) {
  .masonry-wrap {
    width: calc(25% - 30px);
  }
}
.masonry-wrap a:hover:after {
  content: none;
}

figcaption {
  display: none;
  padding: 0;
  font-size: 0.8em;
}

.caption-on figcaption {
  display: block !important;
}

.green .btn, .green .back {
  background-color: #4f5b4c;
  border-color: #4f5b4c;
}

.brown .btn, .brown .back {
  background-color: #735c4f;
  border-color: #735c4f;
}

.geschlossen figure {
  position: relative;
  position: relative;
}
.geschlossen figure:before {
  content: "Vorrübergehend geschlossen!";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(20px, 1.5vw, 30px);
  text-align: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.45);
}

.ce_comments .submit, input.submit,
button.submit, div.btn > a, div.back > a,
div.btn > button,
div.back > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button, a.btn, a.back,
span.btn,
span.back,
button.btn,
button.back {
  border-radius: var(--button-border-radius);
  padding: var(--button-spacing);
  display: inline-block;
  border: var(--button-border-width) var(--button-border-style, solid) var(--button-border-color, transparent);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  text-align: center;
  background: transparent;
  color: var(--button-color);
  background-image: none;
  white-space: nowrap;
  text-decoration: none;
}

.ce_comments .submit, input.submit,
button.submit, div.btn--primary > a, div.back > a,
div.btn--primary > button,
div.back > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button, a.btn--primary, a.back,
span.btn--primary,
span.back,
button.btn--primary,
button.back {
  background: var(--button-background);
  color: var(--button-color);
}
.ce_comments .submit:hover, input.submit:hover,
button.submit:hover, div.btn--primary > a:hover, div.back > a:hover,
div.btn--primary > button:hover,
div.back > button:hover,
.ce_toplink > a:hover,
.ce_toplink > button:hover,
.toplink > a:hover,
.toplink > button:hover,
.content-toplink > a:hover,
.content-toplink > button:hover, a.btn--primary:hover, a.back:hover,
span.btn--primary:hover,
span.back:hover,
button.btn--primary:hover,
button.back:hover {
  --button-background: var(--button-background-hover);
  --button-color: var(--button-color-hover);
}

a.btn, a.back,
span.btn,
span.back,
button.btn,
button.back {
  margin-bottom: var(--base-spacing-unit);
}

div.btn:not(:last-child), div.back:not(:last-child),
.ce_toplink:not(:last-child),
.toplink:not(:last-child),
.content-toplink:not(:last-child) {
  margin-bottom: var(--base-spacing-unit);
}

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

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

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

.btn--floated {
  float: left;
  margin-right: var(--base-spacing-unit-xs);
}

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

.back {
  border-top: var(--base-border);
  margin-top: var(--base-spacing-unit);
  padding-top: var(--base-spacing-unit-sm);
}
.back a {
  text-decoration: none;
}

html {
  --button-bg: transparent;
  --button-bg-hover: transparent;
  --button-border-radius: var(--base-border-radius);
  --button-border-width: 0;
  --button-font-family: var(--base-font-family);
  --button-font-weight: 400;
  --button-line-height: var(--base-line-height);
}

.ce_comments .submit, input.submit,
button.submit, a.btn, a.back,
span.btn,
span.back,
button.btn,
button.back, div.btn > a, div.back > a,
div.btn > button,
div.back > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  border-radius: var(--button-border-radius);
  padding: var(--button-spacing);
  border: var(--button-border-width) solid var(--button-background);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  text-align: center;
  background: var(--button-background);
  color: var(--button-color);
  background-image: none;
  white-space: nowrap;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  min-width: 170px;
}
@media screen and (max-width: 58.74875em) {
  .ce_comments .submit, input.submit,
  button.submit, a.btn, a.back,
  span.btn,
  span.back,
  button.btn,
  button.back, div.btn > a, div.back > a,
  div.btn > button,
  div.back > button,
  .ce_toplink > a,
  .ce_toplink > button,
  .toplink > a,
  .toplink > button,
  .content-toplink > a,
  .content-toplink > button {
    margin-bottom: 0.7rem;
  }
}

.ce_comments .submit, input.submit,
button.submit, a.btn--primary, a.back,
span.btn--primary,
span.back,
button.btn--primary,
button.back, div.btn--primary > a, div.back > a,
div.btn--primary > button,
div.back > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button {
  color: var(--button-color);
  transition: all 0.2s;
}
.ce_comments .submit:hover, input.submit:hover,
button.submit:hover, a.btn--primary:hover, a.back:hover,
span.btn--primary:hover,
span.back:hover,
button.btn--primary:hover,
button.back:hover, div.btn--primary > a:hover, div.back > a:hover,
div.btn--primary > button:hover,
div.back > button:hover,
.ce_toplink > a:hover,
.ce_toplink > button:hover,
.toplink > a:hover,
.toplink > button:hover,
.content-toplink > a:hover,
.content-toplink > button:hover {
  --button-background: var(--button-background-hover);
  --button-color: var(--button-color-hover);
  transform: translateY(-3px);
}
.ce_comments .submit .arrow-container .arrow-line, input.submit .arrow-container .arrow-line,
button.submit .arrow-container .arrow-line, a.btn--primary .arrow-container .arrow-line, a.back .arrow-container .arrow-line,
span.btn--primary .arrow-container .arrow-line,
span.back .arrow-container .arrow-line,
button.btn--primary .arrow-container .arrow-line,
button.back .arrow-container .arrow-line, div.btn--primary > a .arrow-container .arrow-line, div.back > a .arrow-container .arrow-line,
div.btn--primary > button .arrow-container .arrow-line,
div.back > button .arrow-container .arrow-line,
.ce_toplink > a .arrow-container .arrow-line,
.ce_toplink > button .arrow-container .arrow-line,
.toplink > a .arrow-container .arrow-line,
.toplink > button .arrow-container .arrow-line,
.content-toplink > a .arrow-container .arrow-line,
.content-toplink > button .arrow-container .arrow-line,
.ce_comments .submit .arrow-container .arrow-head > div,
input.submit .arrow-container .arrow-head > div,
button.submit .arrow-container .arrow-head > div,
a.btn--primary .arrow-container .arrow-head > div,
a.back .arrow-container .arrow-head > div,
span.btn--primary .arrow-container .arrow-head > div,
span.back .arrow-container .arrow-head > div,
button.btn--primary .arrow-container .arrow-head > div,
button.back .arrow-container .arrow-head > div,
div.btn--primary > a .arrow-container .arrow-head > div,
div.back > a .arrow-container .arrow-head > div,
div.btn--primary > button .arrow-container .arrow-head > div,
div.back > button .arrow-container .arrow-head > div,
.ce_toplink > a .arrow-container .arrow-head > div,
.ce_toplink > button .arrow-container .arrow-head > div,
.toplink > a .arrow-container .arrow-head > div,
.toplink > button .arrow-container .arrow-head > div,
.content-toplink > a .arrow-container .arrow-head > div,
.content-toplink > button .arrow-container .arrow-head > div {
  background-color: #fff;
}

a.btn, a.back,
span.btn,
span.back,
button.btn,
button.back {
  margin-bottom: var(--base-spacing-unit);
}
a.btn.green, a.green.back,
span.btn.green,
span.green.back,
button.btn.green,
button.green.back {
  background-color: #4f5b4c;
  border-color: #4f5b4c;
}
a.btn.braun, a.braun.back,
span.btn.braun,
span.braun.back,
button.btn.braun,
button.braun.back {
  background-color: #735c4f;
  border-color: #735c4f;
}
a.btn.btn--secondary, a.btn--secondary.back,
span.btn.btn--secondary,
span.btn--secondary.back,
button.btn.btn--secondary,
button.btn--secondary.back {
  background: none;
  border: 1px solid #707070;
  color: #707070;
}
a.btn.btn--secondary:hover, a.btn--secondary.back:hover,
span.btn.btn--secondary:hover,
span.btn--secondary.back:hover,
button.btn.btn--secondary:hover,
button.btn--secondary.back:hover {
  transform: translateY(-3px);
}

.link--primary {
  display: grid;
  grid-template-columns: auto 100px;
  padding: 20px 0;
  transition: all 0.3s;
  color: var(--text-color) !important;
}
@media screen and (min-width: 58.75em) {
  .link--primary {
    grid-template-columns: auto 1fr;
    padding: 50px 0 20px;
  }
}
.link--primary {
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s;
}

div.btn:not(:last-child), div.back:not(:last-child),
.ce_toplink:not(:last-child),
.toplink:not(:last-child),
.content-toplink:not(:last-child) {
  margin-bottom: var(--base-spacing-unit);
}

div.btn--primary.green a, div.green.back a,
.ce_toplink.green a,
.toplink.green a,
.content-toplink.green a {
  background-color: #4f5b4c;
  border-color: #4f5b4c;
}
div.btn--primary.brown a, div.brown.back a,
.ce_toplink.brown a,
.toplink.brown a,
.content-toplink.brown a {
  background-color: #735c4f;
  border-color: #735c4f;
}

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

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

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

.btn--floated {
  float: left;
  margin-right: var(--base-spacing-unit-xs);
}

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

.back {
  margin-top: 0;
  padding-top: 0;
  min-width: auto !important;
  border: none !important;
}
.back a {
  padding: 5px 10px !important;
  background-color: transparent !important;
  color: var(--text-color) !important;
  border: none !important;
}
.back a:hover {
  transform: none !important;
}
.back a:hover:after {
  transform: translateX(-3px);
}
.back a:hover .arrow-container .arrow-line {
  width: 70px;
}
.back a:after {
  content: url("../img/icons/arrow-left-black-icon.svg") !important;
  order: -1;
  padding-bottom: 4px;
}

a.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media screen and (min-width: 58.75em) {
  a.overlay {
    display: none;
  }
}

.arrow-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 5px;
}
.arrow-container .arrow-line {
  display: inline-block;
  width: 55px;
  height: 2px;
  background-color: var(--color-text);
  vertical-align: middle;
  transition: all 0.2s;
}
.arrow-container .arrow-head {
  margin: -4px 0 0 -6px;
  width: 0;
}
.arrow-container .arrow-head .arrow-line-horizontal {
  width: 10px;
  height: 2px;
  background-color: black;
  margin-top: 4px;
  transform: rotate(45deg);
}
.arrow-container .arrow-head .arrow-line-horizontal:last-child {
  transform: rotate(-45deg);
}

a:hover .arrow-container .arrow-line {
  width: 70px;
}

.ce_text a,
ul a,
.card .card-content p a,
.description a {
  font-weight: 500;
  transition: all 0.3s;
}

a {
  font-weight: 500;
  transition: all 0.3s;
}

#footer .info-wrapper a {
  display: inline-block;
  transition: all 0.3s;
}
#footer .info-wrapper a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 2px;
  background-color: #850109;
  opacity: 0;
  transition: all 0.3s;
}
#footer .info-wrapper a:hover:after {
  width: 100%;
  opacity: 1;
}

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

.nav--horizontal ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 48em) {
  .nav--horizontal ul {
    flex-direction: row;
  }
}
.nav--horizontal a,
.nav--horizontal strong.active,
.nav--horizontal strong.trail,
.nav--horizontal strong.forward {
  display: block;
  padding: calc(var(--nav-item-padding) / 2) var(--nav-item-padding);
}

.nav--vertical a,
.nav--vertical strong.active,
.nav--vertical strong.trail,
.nav--vertical strong.forward {
  display: block;
  padding: calc(var(--nav-item-padding) / 2) var(--nav-item-padding);
}

.nav--border {
  border: var(--base-border);
}
.nav--border a,
.nav--border strong.active,
.nav--border strong.trail,
.nav--border strong.forward {
  padding: var(--nav-item-padding) var(--nav-item-padding);
  border-bottom: 1px solid var(--base-border-color);
}
.nav--border a.last,
.nav--border strong.active.last,
.nav--border strong.trail.last,
.nav--border strong.forward.last {
  border-bottom: 0;
}

.nav--breadcrumb {
  border: var(--base-border);
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  display: flex;
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb {
    flex-direction: column;
  }
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb li {
    padding-right: var(--base-spacing-unit);
  }
}
.nav--breadcrumb a:after {
  font-size: 0.75rem;
  display: inline-block;
  content: "►";
  vertical-align: middle;
  padding-left: var(--base-spacing-unit);
}

.nav--select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: var(--base-border);
  padding: var(--base-spacing-unit-xs) var(--base-spacing-unit-sm);
}
.nav--select .submit {
  vertical-align: middle;
  padding: var(--base-spacing-unit-xs) var(--base-spacing-unit-sm);
}

.nav--pager ul {
  text-align: center;
}
.nav--pager li {
  display: inline-block;
}
.nav--pager .empty {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.nav--pager a {
  padding: var(--base-spacing-unit-sm);
}

.pagination ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination a {
  text-decoration: none;
}
.pagination {
  display: grid;
  grid-column: 1/-1;
  margin-top: var(--base-spacing-unit);
  text-align: center;
  line-height: 1;
}
@supports not (display: grid) {
  .pagination {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 34.375em) {
  .pagination {
    grid-template-columns: 1fr 1fr;
  }
}
.pagination p {
  padding: var(--base-spacing-unit-xs);
  padding-left: 0;
  margin: var(--base-spacing-unit-xs);
  margin-left: 0;
  border-top: var(--base-border-width) solid transparent;
}
.pagination li {
  display: inline;
}
.pagination a,
.pagination strong {
  display: inline-block;
  padding: var(--base-spacing-unit-xs);
  margin: var(--base-spacing-unit-xs);
}
.pagination strong {
  border: var(--base-border);
}
.pagination a.next {
  margin-right: 0;
  padding-right: 0;
}
@media screen and (min-width: 34.375em) {
  .pagination p {
    justify-self: start;
  }
  .pagination p + ul {
    justify-self: end;
  }
}

[id=header] {
  position: absolute;
  width: 100%;
  padding-top: 15px;
  background: linear-gradient(180deg, var(--header-color-background), transparent);
  z-index: 1010;
  transition: all 0.3s;
}
@media screen and (min-width: 68.75em) {
  [id=header] {
    padding-top: 30px;
  }
}
@media screen and (min-width: 120em) {
  [id=header] {
    padding-left: var(--base-spacing-unit-xl);
    padding-right: var(--base-spacing-unit-xl);
  }
}
[id=header] > .inside {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
}
@media screen and (min-width: 120em) {
  [id=header] > .inside {
    max-width: 90vw;
  }
}
[id=header] > .inside > .row {
  align-items: center;
}
[id=header] > .inside > .row a {
  color: #fff;
  font-weight: 200;
  text-decoration: none;
}
[id=header] > .inside > .row .tel {
  display: none;
}
@media screen and (min-width: 68.75em) {
  [id=header] > .inside > .row .tel {
    display: block;
  }
}
[id=header] > .inside > .row .tel a {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 1px;
  vertical-align: text-bottom;
}
[id=header] > .inside > .row .header-widgets {
  display: none;
  align-items: baseline;
  justify-content: flex-end;
  gap: 20px;
  text-align: center;
  font-weight: 200;
  font-size: 17px;
  letter-spacing: 1px;
  padding-right: 75px;
  transition: all 0.3s;
}
@media screen and (min-width: 68.75em) {
  [id=header] > .inside > .row .header-widgets {
    display: flex;
  }
}
@media screen and (min-width: 120em) {
  [id=header] > .inside > .row .header-widgets {
    gap: 40px;
    padding-right: 0;
  }
}
[id=header] > .inside > .row .header-widgets a {
  display: block;
  color: #fff;
  transition: all 0.2s;
}
[id=header] > .inside > .row .header-widgets a:hover {
  transform: translateY(-3px);
}
[id=header] > .inside > .row .header-widgets a img {
  margin-bottom: 3px;
}
[id=header] > .inside > .row .header-widgets .buchen a {
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
}
[id=header] > .inside > .row .header-widgets .buchen a:hover {
  background-color: rgba(133, 1, 9, 0.8);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}
[id=header] > .inside > .row .header-widgets img {
  height: 30px;
  margin-bottom: 5px;
  filter: brightness(10);
}
[id=header] > .inside .logo {
  width: 250px;
  margin-top: 10px;
  transition: all 0.3s;
}
@media screen and (min-width: 34.375em) {
  [id=header] > .inside .logo {
    width: 250px;
    margin-top: 0;
  }
}
@media screen and (min-width: 48em) {
  [id=header] > .inside .logo {
    width: 300px;
  }
}
@media screen and (min-width: 68.75em) {
  [id=header] > .inside .logo {
    margin-top: -15px;
  }
}
@media screen and (min-width: 120em) {
  [id=header] > .inside .logo {
    width: 100%;
  }
  [id=header] > .inside .logo img {
    width: 450px;
  }
}
[id=header]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
  z-index: -1;
}

/* ----------------------------------- *
 * HAMBURGER MENÜ
 * ----------------------------------- */
.nav-icon {
  position: fixed;
  display: block;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 72px;
  padding: 10px;
  border-radius: 5px;
  background: none;
  border: none;
  z-index: 9700;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 58.75em) {
  .nav-icon {
    top: 30px;
    right: 18px;
  }
}
@media screen and (min-width: 120em) {
  .nav-icon {
    top: 40px;
    right: 23px;
  }
}
.nav-icon:hover {
  transform: translateY(-3px);
}
.nav-icon.scrolled {
  background-color: var(--color-page-background);
}
.nav-icon.scrolled .icon-wrapper span {
  background: var(--color-text);
  color: var(--color-text);
}
.nav-icon .icon-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.nav-icon .icon-wrapper span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border: none;
  color: #fff;
  text-align: center;
  opacity: 1;
  left: 0;
  font-size: 16px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.nav-icon .icon-wrapper span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
.nav-icon .icon-wrapper span:nth-child(2) {
  top: 15px;
  transform-origin: left center;
}
.nav-icon .icon-wrapper span:nth-child(3) {
  top: 30px;
  transform-origin: left center;
}
.nav-icon .icon-wrapper span:nth-child(4) {
  top: 35px;
  height: auto;
  background: none;
  font-weight: 300;
  letter-spacing: 2px;
  transform-origin: left center;
}
.nav-icon.active {
  background: none;
}
.nav-icon.active span {
  background: var(--color-text);
  color: var(--color-text);
}
.nav-icon.active span:nth-child(1) {
  transform: rotate(45deg) translateY(-50%);
  top: 0;
  left: 0;
}
.nav-icon.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  top: 35px;
}
.nav-icon.active span:nth-child(4) {
  opacity: 0;
  visibility: hidden;
}

.slider {
  position: relative;
}
.slider .slider-control {
  position: static;
  height: 0;
}
.slider .slider-control a {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--slider-arrow-size);
  line-height: 1;
  position: absolute;
  display: block;
  color: var(--slider-arrow-color);
  font-family: var(--slider-arrow-font-family);
}
.slider .slider-control a:before {
  padding: var(--base-spacing-unit-sm);
  display: block;
}
.slider .slider-control a:hover {
  opacity: 0.5;
}
.slider .slider-prev:before {
  content: "◄";
}
.slider .slider-next:before {
  content: "►";
}
.slider .slider-menu {
  font-size: var(--slider-menu-point-size);
  line-height: 1;
  top: auto;
  bottom: 0;
}
.slider .slider-menu b {
  color: var(--slider-menu-point-color);
}
.slider .slider-menu b.active {
  color: var(--slider-menu-point-color-active);
}
.slider .slider-menu b:hover {
  opacity: 0.5;
}

@media screen and (min-width: 58.75em) {
  #main .slider-right-article > .inside {
    padding-right: 20px;
  }
}
@media screen and (max-width: 47.99875em) {
  .tns-slider {
    cursor: grab;
  }
}

.tns-item {
  margin-bottom: 10px;
}

.tns-outer {
  overflow: hidden;
}

.tns-visually-hidden {
  position: relative;
}

.tns-nav {
  display: block;
  text-align: center;
  width: 100%;
  height: auto;
  z-index: 1;
}
.tns-nav button {
  display: inline-block;
  background: #fff;
  -webkit-clip-path: circle();
  clip-path: circle();
  margin: 5px 15px;
  width: 15px;
  height: 15px;
  flex: 1;
  border: none;
}
.tns-nav button.tns-nav-active {
  background-color: #707070;
}

.controls-left .slideInfo, .imgright-wrap .slideInfo {
  margin-top: 10px;
}
@media screen and (min-width: 58.75em) {
  .controls-left .slideInfo, .imgright-wrap .slideInfo {
    text-align: left;
    margin-left: 52px;
  }
}
@media screen and (min-width: 58.75em) {
  .controls-left .tns-controls, .imgright-wrap .tns-controls {
    margin-left: -20px;
    justify-content: flex-start;
  }
}

.controls-right .slideInfo, .imgleft-wrap .slideInfo {
  margin-top: 10px;
}
@media screen and (min-width: 58.75em) {
  .controls-right .slideInfo, .imgleft-wrap .slideInfo {
    text-align: right;
    margin-right: 72px;
  }
}
@media screen and (min-width: 58.75em) {
  .controls-right .tns-controls, .imgleft-wrap .tns-controls {
    margin-right: -20px;
    justify-content: flex-end;
  }
}

.standard-slider {
  position: relative;
}
.standard-slider .tns-nav {
  z-index: 2;
}
.standard-slider .tns-nav + button {
  display: none;
}
.standard-slider .slider-wrapper {
  opacity: 0;
}
.standard-slider .slider-wrapper.tns-slider {
  opacity: 1;
}
@media screen and (min-width: 68.75em) {
  .standard-slider .slider-wrapper .ce_text {
    display: inline-flex;
  }
}
@media screen and (min-width: 68.75em) {
  .standard-slider .slider-wrapper .ce_text figure {
    width: 50%;
    padding: 25px;
  }
}
@media screen and (min-width: 120em) {
  .standard-slider .slider-wrapper .ce_text figure {
    padding: 50px;
  }
}
@media screen and (min-width: 68.75em) {
  .standard-slider .slider-wrapper .ce_text .text-wrapper {
    display: grid;
    align-self: center;
    width: 50%;
    padding: 50px;
  }
}
.standard-slider .slider-wrapper .ce_text .text-wrapper h1, .standard-slider .slider-wrapper .ce_text .text-wrapper h2, .standard-slider .slider-wrapper .ce_text .text-wrapper h3, .standard-slider .slider-wrapper .ce_text .text-wrapper h4, .standard-slider .slider-wrapper .ce_text .text-wrapper h5, .standard-slider .slider-wrapper .ce_text .text-wrapper h6 {
  font-family: var(--headings-font-family-special);
}

.card-slider.bg-white .slider-wrapper .slide .slide-content {
  background-color: #fff;
}
.card-slider.bg-white .slider-wrapper .slide .slide-content a {
  color: #850109;
  transition: all 0.3s;
}
.card-slider.bg-white .slider-wrapper .slide .slide-content a:hover {
  color: #ba4c49;
}
.card-slider .tns-inner {
  padding: 5px;
}
.card-slider .slider-wrapper {
  display: inline-flex;
}
.card-slider .slider-wrapper .slide {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 47.99875em) {
  .card-slider .slider-wrapper .slide {
    cursor: grab;
  }
}
.card-slider .slider-wrapper .slide .link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-slider .slider-wrapper .slide .link-overlay:hover ~ .slide-content .link--primary .arrow-container .arrow-line {
  width: 70px;
}
.card-slider .slider-wrapper .slide .slide-img {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.card-slider .slider-wrapper .slide .slide-content {
  padding: 5px 25px 25px;
  background-color: #cfddc7;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 68.75em) {
  .card-slider .slider-wrapper .slide .slide-content {
    font-size: 18px;
  }
}
.card-slider .slider-wrapper .slide .slide-content h3 {
  font-family: var(--headings-font-family-special);
}
@media screen and (max-width: 119.99875em) {
  .card-slider .slider-wrapper .slide .slide-content h3 {
    font-size: 25px !important;
  }
}
.card-slider .slider-wrapper .slide .slide-content hr {
  width: 100%;
  margin: 0px 0px 10px;
  border-color: #d5d5d5;
}
.card-slider .slider-wrapper .slide .slide-content a.link--primary {
  color: var(--text-color) !important;
  margin-top: auto;
  padding-bottom: 0;
  transition: all 0.3s;
}
.card-slider .slider-wrapper .slide .slide-content a.link--primary:hover {
  color: #859d7f;
}
.card-slider .slider-wrapper .slide .slide-content a.link--primary .arrow-container {
  max-width: 85px;
}
.card-slider .slideInfo {
  margin-top: -38px;
  padding-bottom: 20px;
}
@media screen and (max-width: 58.74875em) {
  .card-slider .slideInfo {
    float: right;
    padding-right: 70px;
  }
}
@media screen and (min-width: 120em) {
  .card-slider .slideInfo {
    float: right;
    padding-right: 70px;
  }
}
.card-slider .tns-controls {
  margin-top: 0;
}
@media screen and (max-width: 58.74875em) {
  .card-slider .tns-controls {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 120em) {
  .card-slider .tns-controls {
    justify-content: flex-end;
  }
}

.card-3-slider.bg-white .slider-wrapper .slide .slide-content {
  background-color: #fff;
}
.card-3-slider.bg-white .slider-wrapper .slide .slide-content a {
  color: #850109;
  transition: all 0.3s;
}
.card-3-slider.bg-white .slider-wrapper .slide .slide-content a:hover {
  color: #ba4c49;
}
.card-3-slider .tns-inner {
  padding: 5px;
}
.card-3-slider .slider-wrapper {
  display: inline-flex;
}
.card-3-slider .slider-wrapper .slide {
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-3-slider .slider-wrapper .slide.angebot-card .slide-content {
  background-color: #cfddc7;
}
.card-3-slider .slider-wrapper .slide.angebot-card .slide-content ul li:before {
  width: 15px;
  height: 16px;
}
@media screen and (max-width: 47.99875em) {
  .card-3-slider .slider-wrapper .slide {
    cursor: grab;
  }
}
.card-3-slider .slider-wrapper .slide .link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-3-slider .slider-wrapper .slide .link-overlay:hover ~ .slide-content .link--primary .arrow-container .arrow-line {
  width: 70px;
}
.card-3-slider .slider-wrapper .slide .slide-img {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.card-3-slider .slider-wrapper .slide .slide-content {
  padding: 5px 25px 25px;
  background-color: #cfddc7;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 68.75em) {
  .card-3-slider .slider-wrapper .slide .slide-content {
    font-size: 18px;
  }
}
.card-3-slider .slider-wrapper .slide .slide-content h3 {
  font-family: var(--headings-font-family-special);
}
.card-3-slider .slider-wrapper .slide .slide-content hr {
  width: 100%;
  margin: 0px 0px 10px;
  border-color: #d5d5d5;
}
.card-3-slider .slider-wrapper .slide .slide-content a.link--primary {
  color: var(--text-color) !important;
  margin-top: auto;
  padding-bottom: 0;
  transition: all 0.3s;
}
.card-3-slider .slider-wrapper .slide .slide-content a.link--primary:hover {
  color: #859d7f;
}
.card-3-slider .slider-wrapper .slide .slide-content a.link--primary .arrow-container {
  max-width: 85px;
}
.card-3-slider .slideInfo {
  margin-top: -38px;
  padding-bottom: 20px;
  margin-bottom: initial;
}
@media screen and (max-width: 58.74875em) {
  .card-3-slider .slideInfo {
    float: right;
    padding-right: 70px;
  }
}
@media screen and (min-width: 120em) {
  .card-3-slider .slideInfo {
    text-align: right;
    margin-right: 71px;
  }
}
.card-3-slider .tns-controls {
  margin-top: 0;
}
@media screen and (max-width: 58.74875em) {
  .card-3-slider .tns-controls {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 120em) {
  .card-3-slider .tns-controls {
    justify-content: flex-end;
  }
}

.angebot-slider {
  padding-bottom: 20px;
}
.angebot-slider.checklist h3 {
  margin-bottom: 0;
}
.angebot-slider.checklist ul {
  margin-top: -10px;
}
.angebot-slider.checklist ul li:before {
  filter: brightness(10);
}
.angebot-slider .angebot-wrapper {
  padding: 5px;
}
.angebot-slider .angebot-wrapper .angebot-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  color: #fff;
}
@media screen and (min-width: 68.75em) {
  .angebot-slider .angebot-wrapper .angebot-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
  }
}
.angebot-slider .angebot-wrapper .angebot-grid > div {
  color: #fff;
}
.angebot-slider .angebot-wrapper .angebot-grid hr {
  border-color: #fff;
}
@media screen and (min-width: 68.75em) {
  .angebot-slider .angebot-wrapper .angebot-grid .angebot-left {
    display: block;
  }
}
@media screen and (max-width: 68.74875em) {
  .angebot-slider .angebot-wrapper .angebot-grid .angebot-left a.btn, .angebot-slider .angebot-wrapper .angebot-grid .angebot-left a.back {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-left .angebot-title {
  background-color: #4f5b4c;
  color: #d5efce;
  text-transform: uppercase;
  padding: 5%;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media screen and (min-width: 68.75em) {
  .angebot-slider .angebot-wrapper .angebot-grid .angebot-left .angebot-title {
    padding: 11%;
    height: 65%;
    margin-bottom: 20px;
  }
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-left .angebot-title p {
  text-transform: none;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-img figure {
  height: 100%;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-img figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text {
  display: flex;
  flex-flow: column;
  background-color: #ba4c49;
  padding: 25px;
  font-size: 18px;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text *:not(strong):not(a) {
  font-weight: 200;
}
@media screen and (min-width: 68.75em) {
  .angebot-slider .angebot-wrapper .angebot-grid .angebot-text {
    margin-top: 10%;
    padding: 25px 30px;
  }
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text hr {
  width: 100%;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text a {
  color: #fff;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text a .arrow-line,
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text a .arrow-head > div {
  background-color: #fff;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text .information {
  margin-bottom: 20px;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text .pricedate-wrap {
  margin-top: auto;
  margin-bottom: 20px;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text .pricedate-wrap .booking-date {
  margin-bottom: 0;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text .pricedate-wrap .price {
  font-size: 20px;
}
.angebot-slider .angebot-wrapper .angebot-grid .angebot-text .link--primary {
  margin-top: auto;
  padding: 0;
}
.angebot-slider .slideInfo {
  margin-top: -38px;
}
@media screen and (max-width: 58.74875em) {
  .angebot-slider .slideInfo {
    float: right;
    padding-right: 70px;
  }
}
@media screen and (min-width: 120em) {
  .angebot-slider .slideInfo {
    float: right;
    padding-right: 70px;
  }
}
.angebot-slider .tns-controls {
  margin-top: 0;
}
@media screen and (max-width: 58.74875em) {
  .angebot-slider .tns-controls {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 120em) {
  .angebot-slider .tns-controls {
    justify-content: flex-end;
  }
}

.partner-slider {
  width: 100%;
}
.partner-slider .slider-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partner-slider .slide {
  position: relative;
}
.partner-slider .slide .link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.partner-slider .tns-nav {
  bottom: -20px;
}
.partner-slider .tns-nav button {
  background-color: #d5d5d5;
}
.partner-slider .tns-nav button.tns-nav-active {
  background-color: #707070;
}

@media screen and (max-width: 119.99875em) {
  .partners-wrapper {
    padding-bottom: 100px;
  }
}
.partners-wrapper .inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partners-wrapper img {
  mix-blend-mode: multiply;
}

@media screen and (max-width: 68.74875em) {
  .gallery-col {
    display: block;
  }
}
.ce_gallery {
  margin-bottom: 0;
}
.ce_gallery .gallery-slider {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 58.75em) {
  .ce_gallery ul.controls {
    position: absolute;
    margin: 0;
    top: 50%;
    right: -100px;
    left: initial;
    transform: translateY(-50%);
    gap: 10px;
    flex-flow: column;
  }
  .ce_gallery ul.controls li.prev {
    margin-top: 0;
  }
  .ce_gallery ul.controls li.prev:hover {
    transform: translateX(-5px);
  }
  .ce_gallery ul.controls li.next:hover {
    transform: translateX(5px);
  }
}

@media screen and (min-width: 68.75em) {
  .gallery-carousel-wrapper {
    overflow: hidden;
  }
  .gallery-carousel-wrapper .ce_gallery {
    margin-right: -15vw;
  }
}

.gallery-carousel {
  margin: 0;
  padding-left: 0;
}
@media screen and (min-width: 58.75em) {
  .gallery-carousel li {
    padding: 0 5px;
  }
}
.gallery-carousel li img {
  -o-object-fit: cover;
  object-fit: cover;
}

#carousel-controls {
  position: relative;
  transform: none;
  flex-flow: row;
  gap: 5px;
  inset: initial;
}
#carousel-controls .prev {
  margin-top: 30px;
}

.tns-nav + button {
  display: none;
}

.controls {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}
.controls > ul {
  grid-column-start: 2;
  justify-content: flex-end;
  display: flex;
  margin-top: 15px;
  gap: 5px;
  list-style: none;
}
.controls > ul#card-slider-controls {
  grid-column-start: 3;
}
.controls > ul#card-slider-controls li {
  background-color: #cfddc7;
}
.controls > ul#customize-controls {
  grid-column-start: 3;
}
.controls > ul#customize-controls li {
  background-color: #d5d5d5;
}
.controls > ul li {
  background-color: #ba4c49;
  display: inline-flex;
  padding: 15px;
  width: 55px;
  height: 55px;
  border-radius: 999px;
}

.tns-outer {
  position: relative;
}
.tns-outer > button:first-child {
  display: none;
}

#slideInfo,
.slideInfo {
  text-align: center;
  margin-bottom: -59px;
  color: #222;
  height: auto;
  font-size: 15px;
}

.tns-liveregion {
  display: none;
  position: absolute;
  left: initial;
  height: auto !important;
  right: 0;
  bottom: 50%;
  z-index: 99999999999;
}

.tns-controls {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  list-style: none;
  margin-top: 20px;
  width: 100%;
  z-index: 1;
}
.tns-controls button {
  position: relative;
  display: inline-block;
  background-color: transparent;
  text-indent: -9999px;
  width: 85px;
  height: 55px;
  padding: 15px;
  border: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
}
.tns-controls button:focus {
  outline: none;
}
.tns-controls button:hover:first-child {
  transform: translateX(-3px);
}
.tns-controls button:hover:last-child {
  transform: translateX(3px);
}
.tns-controls button:active {
  transform: none;
}
.tns-controls button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.tns-controls button:first-child:before {
  background-image: url("../img/icons/arrow-left-black-icon.svg");
}
.tns-controls button:last-child:before {
  background-image: url("../img/icons/arrow-right-black-icon.svg");
}

.card-slider .slider-wrapper {
  opacity: 0;
}
.card-slider .slider-wrapper.tns-slider {
  opacity: 1;
}

.angebot-slider .angebote-wrapper {
  opacity: 0;
}
.angebot-slider .angebote-wrapper.tns-slider {
  opacity: 1;
}

.swiper .swiper-wrapper,
.swiper-gallery .swiper-wrapper {
  margin-bottom: 15px;
  display: flex !important;
  list-style: none;
}
.swiper .swiper-wrapper li:before,
.swiper-gallery .swiper-wrapper li:before {
  content: none;
}
.swiper .swiper-wrapper .swiper-slide,
.swiper-gallery .swiper-wrapper .swiper-slide {
  width: 100% !important;
}
.swiper .swiper-slide,
.swiper-gallery .swiper-slide {
  opacity: 0.1;
  transition: opacity 0.8s;
}
.swiper .swiper-slide.swiper-slide-active,
.swiper-gallery .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev,
.swiper-gallery .swiper-button-next,
.swiper-gallery .swiper-button-prev {
  color: #850109;
}

.news-list {
  margin-bottom: var(--base-spacing-unit);
}
.news-list > h1, .news-list > h2, .news-list > h3, .news-list > h4, .news-list > h5, .news-list > h6 {
  margin-bottom: 0;
}
.news-list .info {
  margin-bottom: 0;
}
.news-list .float_left {
  margin-right: var(--base-spacing-unit);
}
.news-list .float_right {
  margin-left: var(--base-spacing-unit);
}
.news-list .layout_short > h1, .news-list .layout_short > h2, .news-list .layout_short > h3, .news-list .layout_short > h4, .news-list .layout_short > h5, .news-list .layout_short > h6,
.news-list .layout_latest > h1,
.news-list .layout_latest > h2,
.news-list .layout_latest > h3,
.news-list .layout_latest > h4,
.news-list .layout_latest > h5,
.news-list .layout_latest > h6,
.news-list .layout_simple > h1,
.news-list .layout_simple > h2,
.news-list .layout_simple > h3,
.news-list .layout_simple > h4,
.news-list .layout_simple > h5,
.news-list .layout_simple > h6 {
  margin-top: var(--base-spacing-unit);
}
.news-list .layout_simple time,
.news-list .layout_simple a,
.news-list .layout_upcoming time,
.news-list .layout_upcoming a {
  padding-top: var(--base-spacing-unit);
  display: inline-block;
}
.news-list .header {
  margin-top: var(--base-spacing-unit);
}

.news-grid {
  display: grid;
  grid-gap: var(--grid-gutter);
  margin-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 34.375em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-sm), 1fr);
  }
}
@media screen and (min-width: 48em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-md), 1fr);
  }
}
@media screen and (min-width: 58.75em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-lg), 1fr);
  }
}
@media screen and (min-width: 68.75em) {
  .news-grid {
    grid-template-columns: repeat(var(--news-grid-columns-xl), 1fr);
  }
}
.news-grid {
  margin-bottom: var(--base-spacing-unit);
}
.news-grid > h1, .news-grid > h2, .news-grid > h3, .news-grid > h4, .news-grid > h5, .news-grid > h6 {
  grid-column: 1/-1;
}
.news-grid .layout_simple time {
  display: block;
}

.news-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.news-menu a {
  text-decoration: none;
}
.news-menu .year {
  margin-bottom: var(--base-spacing-unit-sm);
}
.news-menu .year > a,
.news-menu .year > .active {
  color: inherit;
  font-weight: var(--headings-font-weight);
  font-family: var(--headings-font-family);
}
.news-menu .level_2 li {
  margin-bottom: var(--base-spacing-unit-xs);
}

.events-list {
  margin-bottom: var(--base-spacing-unit);
}
.events-list > h1, .events-list > h2, .events-list > h3, .events-list > h4, .events-list > h5, .events-list > h6 {
  margin-bottom: 0;
}
.events-list .image_container {
  margin-top: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
}
.events-list .float_left {
  margin-right: var(--base-spacing-unit);
}
.events-list .float_right {
  margin-left: var(--base-spacing-unit);
}
.events-list .event > h1, .events-list .event > h2, .events-list .event > h3, .events-list .event > h4, .events-list .event > h5, .events-list .event > h6 {
  margin-top: var(--base-spacing-unit);
}
.events-list .layout_upcoming time,
.events-list .layout_upcoming a {
  padding-top: var(--base-spacing-unit);
  display: inline-block;
}
.events-list .header {
  margin-top: var(--base-spacing-unit);
}

.events-grid {
  display: grid;
  grid-gap: var(--grid-gutter);
  margin-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 34.375em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-sm), 1fr);
  }
}
@media screen and (min-width: 48em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-md), 1fr);
  }
}
@media screen and (min-width: 58.75em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-lg), 1fr);
  }
}
@media screen and (min-width: 68.75em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-xl), 1fr);
  }
}

.events-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.events-menu a {
  text-decoration: none;
}
.events-menu .year {
  margin-bottom: var(--base-spacing-unit-sm);
}
.events-menu .year > a,
.events-menu .year > .active {
  color: inherit;
  font-weight: var(--headings-font-weight);
  font-family: var(--headings-font-family);
}
.events-menu .level_2 li {
  margin-bottom: var(--base-spacing-unit-xs);
}

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

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: var(--base-spacing-unit-xs);
}

input.text,
input.captcha,
textarea.textarea,
select.select {
  display: block;
  width: 100%;
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit-sm);
  border-radius: var(--forms-input-border-radius);
  border: var(--forms-input-border-width) solid var(--forms-input-border-color);
  background-clip: padding-box;
  background-image: none;
  background-color: var(--forms-input-background);
  line-height: var(--forms-input-line-height);
}

textarea.textarea {
  height: auto;
}

.widget-text,
.widget-textarea,
.widget-password {
  margin-bottom: var(--base-spacing-unit);
}

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

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

input.radio,
input.checkbox {
  margin-left: 1px;
  margin-right: var(--base-spacing-unit-xs);
  line-height: var(--base-line-height);
  vertical-align: middle;
}
input.radio + label,
input.checkbox + label {
  margin-right: var(--base-spacing-unit-xs);
  margin-bottom: 0;
  font-weight: normal;
}

.widget-radio,
.widget-checkbox,
.widget-select,
.widget-upload {
  margin-bottom: var(--base-spacing-unit);
}
.widget-radio legend,
.widget-checkbox legend,
.widget-select legend,
.widget-upload legend {
  font-weight: 700;
}

.radio_container > span,
.checkbox_container > span {
  display: inline-flex;
  align-items: center;
}

span.mandatory {
  color: var(--forms-mandatory-color);
}

p.error {
  margin-bottom: 0;
}

.formbody {
  grid-auto-rows: min-content;
}
.formbody > .row > div {
  grid-auto-rows: min-content !important;
}
.formbody .widget input,
.formbody .widget select {
  height: 45px;
  color: var(--color-text);
}
@media screen and (min-width: 58.75em) {
  .formbody .widget input,
  .formbody .widget select {
    height: 55px;
  }
}
@media screen and (min-width: 58.75em) {
  .formbody .widget.form-anpassung {
    margin-bottom: 83px;
  }
}
@media screen and (min-width: 68.75em) {
  .formbody .widget.form-anpassung {
    margin-bottom: 97px;
  }
}
.formbody .widget.widget-calendar div {
  position: relative;
}
.formbody .widget.widget-calendar div input + .input-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.formbody .widget.widget-calendar div input + .input-button img {
  filter: brightness(10);
}

.booking--bar {
  display: none;
}
@media screen and (min-width: 68.75em) {
  .booking--bar {
    display: block;
    max-width: 650px;
  }
}
.booking--bar {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4f5b4c;
  padding: 10px 0px 10px 30px;
}
.booking--bar .formbody {
  display: flex;
}
.booking--bar .formbody .widget {
  display: flex;
  align-items: center;
  margin: 0;
}
.booking--bar .formbody .widget:first-child {
  margin-right: 30px;
}
.booking--bar .formbody .widget.mandatory label {
  margin-right: 15px;
}
.booking--bar .formbody .widget.mandatory label span {
  display: none;
}
.booking--bar .formbody .widget label {
  color: #fff;
}
.booking--bar .formbody .widget input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 0;
  color: #fff;
  height: 45px;
}
.booking--bar .formbody .widget.widget-submit {
  margin: 0;
  color: #fff;
}
.booking--bar .formbody .widget.widget-submit button {
  display: inline-block;
  background: none;
  border: none;
  padding: 0 30px;
  min-width: 100px;
}
.booking--bar .formbody .widget label {
  margin-bottom: 0;
}

.ce_accordion {
  margin-bottom: var(--accordion-spacing);
}
.ce_accordion:not(.handorgel) .toggler {
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.ce_accordion:not(.handorgel) .toggler:hover {
  color: var(--accordion-toggler-color-hover);
}
.ce_accordion:not(.handorgel) .toggler:focus {
  outline: 0;
}
.ce_accordion.handorgel .toggler button {
  display: flex;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.ce_accordion.handorgel .toggler button:hover {
  color: var(--accordion-toggler-color-hover);
}
.ce_accordion.handorgel .toggler button:focus {
  outline: 0;
}
.ce_accordion .accordion {
  background: var(--accordion-content-background);
  overflow: hidden;
}
.ce_accordion .accordion > div {
  padding: var(--accordion-content-spacing);
}

.ce_download,
.ce_downloads,
.content-download,
.content-downloads {
  margin-bottom: 1rem;
}
.ce_download .mime_icon,
.ce_downloads .mime_icon,
.content-download .mime_icon,
.content-downloads .mime_icon {
  display: inline-block;
  vertical-align: middle;
}
.ce_download a,
.ce_downloads a,
.content-download a,
.content-downloads a {
  display: inline-block;
  color: var(--download-link-color);
  -webkit-text-decoration: var(--download-link-decoration);
  text-decoration: var(--download-link-decoration);
}

.ce_downloads ul,
.content-downloads ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ce_downloads a,
.content-downloads a {
  text-decoration: none;
}

table {
  margin-bottom: var(--base-spacing-unit);
  width: 100%;
  padding: 0;
  border-spacing: 0;
  border-left: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-top: var(--table-border-width) var(--table-border-style) var(--table-border-color);
}
table th,
table td {
  border-right: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-bottom: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  padding: 10px;
}

thead {
  text-align: left;
  background: var(--table-background-light);
}

tfoot {
  font-style: italic;
}

.table--striped .even {
  background: var(--table-background-light);
}

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

.newsletter-subscribe,
.newsletter-unsubscribe {
  margin-bottom: var(--base-spacing-unit);
}
.newsletter-subscribe .formbody,
.newsletter-unsubscribe .formbody {
  display: flex;
  flex-flow: row wrap;
}
.newsletter-subscribe .text,
.newsletter-subscribe .widget-text,
.newsletter-unsubscribe .text,
.newsletter-unsubscribe .widget-text {
  margin-bottom: 0;
  display: inline-block;
  flex: 1;
}
.newsletter-subscribe .error,
.newsletter-unsubscribe .error {
  margin-bottom: 0;
  flex: 1 100%;
  font-weight: 700;
}
.newsletter-subscribe .submit,
.newsletter-unsubscribe .submit {
  margin-left: var(--base-spacing-unit-xs);
}

.newsletter-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.newsletter-list a {
  text-decoration: none;
}
.newsletter-list li {
  border-bottom: var(--newsletter-list-border);
  padding-top: var(--base-spacing-unit);
  padding-bottom: var(--base-spacing-unit);
  display: block;
}
.newsletter-list li:first-of-type {
  border-top: var(--newsletter-list-border);
}
@media screen and (min-width: 34.375em) {
  .newsletter-list li {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
  }
}
@media screen and (min-width: 48em) {
  .newsletter-list li {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
  }
}
.newsletter-list li a:hover {
  opacity: 0.5;
}

.newsletter-reader {
  max-width: var(--newsletter-reader-width);
  margin-left: auto;
  margin-right: auto;
  border: var(--newsletter-reader-border);
  padding: 0 var(--base-spacing-unit);
}

.faq-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.faq-list a {
  text-decoration: none;
}
.faq-list > ul {
  margin-top: 2rem;
}
.faq-list li {
  margin-bottom: var(--base-spacing-unit-sm);
}
.faq-list li a {
  display: inline-block;
}
.faq-list > h1, .faq-list > h2, .faq-list > h3, .faq-list > h4, .faq-list > h5, .faq-list > h6 {
  margin-bottom: 0;
}
.faq-list > h1:after, .faq-list > h2:after, .faq-list > h3:after, .faq-list > h4:after, .faq-list > h5:after, .faq-list > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-list article > h1, .faq-list article > h2, .faq-list article > h3, .faq-list article > h4, .faq-list article > h5, .faq-list article > h6 {
  margin-bottom: 0;
}
.faq-list article > h1:after, .faq-list article > h2:after, .faq-list article > h3:after, .faq-list article > h4:after, .faq-list article > h5:after, .faq-list article > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}

.faq-page > h1, .faq-page > h2, .faq-page > h3, .faq-page > h4, .faq-page > h5, .faq-page > h6 {
  margin-bottom: 0;
}
.faq-page > h1:after, .faq-page > h2:after, .faq-page > h3:after, .faq-page > h4:after, .faq-page > h5:after, .faq-page > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-page article > h1, .faq-page article > h2, .faq-page article > h3, .faq-page article > h4, .faq-page article > h5, .faq-page article > h6 {
  margin-bottom: 0;
}
.faq-page article > h1:after, .faq-page article > h2:after, .faq-page article > h3:after, .faq-page article > h4:after, .faq-page article > h5:after, .faq-page article > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-page .info {
  font-size: 0.875rem;
  margin-top: var(--base-spacing-unit);
  opacity: 0.5;
}
.faq-page section {
  padding: var(--base-spacing-unit) 0;
  border-bottom: var(--faq-border);
}
.faq-page section.last {
  margin-bottom: var(--base-spacing-unit);
}

.faq-reader .info {
  font-size: 0.875rem;
  margin-top: var(--base-spacing-unit);
  opacity: 0.5;
}

.ce_comments {
  overflow: visible;
}
.ce_comments .widget {
  margin-bottom: var(--base-spacing-unit);
}
.ce_comments p.error {
  margin-bottom: 0;
  color: var(--color-error);
}
.ce_comments .error {
  border-color: var(--color-error-light);
}
.comment_default {
  padding: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
  border: var(--base-border);
}
.comment_default .info {
  padding-bottom: var(--base-spacing-unit);
  border-bottom: var(--base-border);
}
.comment_default.last {
  margin-bottom: var(--base-spacing-unit-lg);
}

.search .formbody {
  display: flex;
  flex-flow: row wrap;
}
.search .widget-text {
  margin-bottom: var(--base-spacing-unit-sm);
  display: inline-block;
  flex: 1;
}
.search .widget-text label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search .widget-submit {
  margin-bottom: var(--base-spacing-unit-sm);
  margin-left: var(--base-spacing-unit-xs);
  align-self: flex-end;
}
.search .widget-submit .submit {
  margin-left: 0;
}
.search .relevance {
  color: var(--search-relevance-color);
}
.search .context {
  margin-bottom: var(--base-spacing-unit-xs);
}
.search .highlight {
  font-weight: bold;
}
.search .url {
  color: var(--search-url-color);
}

/*************************************

MEGAMENÜ MODUL STYLESHEET

*************************************/
#megamenu-section {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #faf5f0;
  height: 100%;
  min-height: auto;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-20%);
  transition: all 0.3s;
  overflow-x: hidden;
  z-index: 9600;
}
@media screen and (min-width: 68.75em) {
  #megamenu-section {
    height: 80vh;
    max-height: 40em;
  }
}
#megamenu-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#megamenu-section > .inside {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr 3fr 1.3fr;
  align-items: center;
  max-width: 1600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
}
@media screen and (min-width: 120em) {
  #megamenu-section > .inside {
    grid-template-rows: 150px 3fr 1.3fr;
    padding-left: var(--base-spacing-unit-xl);
    padding-right: var(--base-spacing-unit-xl);
  }
}
#megamenu-section > .inside .mega-header > .row {
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 68.74875em) {
  #megamenu-section > .inside .mega-header > .row .tel {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
}
#megamenu-section > .inside .mega-header > .row .tel a {
  color: var(--color-text);
  font-weight: 200;
  letter-spacing: 1px;
  align-items: center;
  vertical-align: text-bottom;
  text-decoration: none;
}
#megamenu-section > .inside .mega-header > .row .tel:before {
  filter: none;
}
#megamenu-section > .inside .mega-header > .row .logo {
  padding-top: 10px;
}
@media screen and (max-width: 47.99875em) {
  #megamenu-section > .inside .mega-header > .row .logo img {
    width: 80px;
  }
}
#megamenu-section > .inside .mega-header > .row .header-widgets {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 0 20px 0;
  gap: 20px;
  text-align: center;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1px;
}
@media screen and (min-width: 68.75em) {
  #megamenu-section > .inside .mega-header > .row .header-widgets {
    justify-content: flex-end;
    padding-right: 80px;
  }
}
@media only screen and (min-width: 1700px) {
  #megamenu-section > .inside .mega-header > .row .header-widgets {
    padding-right: 0;
  }
}
@media screen and (min-width: 120em) {
  #megamenu-section > .inside .mega-header > .row .header-widgets {
    font-size: 17px;
  }
}
#megamenu-section > .inside .mega-header > .row .header-widgets > .row {
  align-items: flex-end;
}
#megamenu-section > .inside .mega-header > .row .header-widgets .buchen a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  transition: all 0.2s;
}
#megamenu-section > .inside .mega-header > .row .header-widgets .buchen a:hover {
  border-bottom-color: #850109;
}
#megamenu-section > .inside .mega-header > .row .header-widgets a {
  display: block;
  color: var(--color-text);
  font-weight: 200;
  transition: all 0.2s;
}
#megamenu-section > .inside .mega-header > .row .header-widgets a:hover {
  transform: translateY(-3px);
}
#megamenu-section > .inside .mega-header > .row .header-widgets a img {
  margin-bottom: 3px;
}
#megamenu-section > .inside .mega-bottom {
  position: relative;
  font-size: 16px;
  padding: 20px 0;
}
@media screen and (min-width: 120em) {
  #megamenu-section > .inside .mega-bottom {
    font-size: 18px;
  }
}
@media only screen and (min-width: 2000px) {
  #megamenu-section > .inside .mega-bottom {
    padding: 30px 0;
  }
}
#megamenu-section > .inside .mega-bottom {
  line-height: 1;
  font-weight: 300;
  height: 100%;
}
#megamenu-section > .inside .mega-bottom:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: -50vw;
  right: -50vw;
  height: 1px;
  background-color: #d5d5d5;
}
@media screen and (min-width: 48em) {
  #megamenu-section > .inside .mega-bottom > .row {
    height: 100%;
  }
}
#megamenu-section > .inside .mega-bottom > .row {
  align-items: center;
  row-gap: 20px;
}
#megamenu-section > .inside .mega-bottom .bottom-links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 350px;
}
@media screen and (min-width: 58.75em) {
  #megamenu-section > .inside .mega-bottom .bottom-links {
    gap: 15px;
  }
}
#megamenu-section > .inside .mega-bottom .bottom-links nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
#megamenu-section > .inside .mega-bottom .bottom-links nav ul li {
  display: inline-block;
  padding-right: 5px;
}
@media screen and (max-width: 47.99875em) {
  #megamenu-section > .inside .mega-bottom .bottom-links nav ul li {
    font-size: 16px;
  }
}
#megamenu-section > .inside .mega-bottom .bottom-links nav ul li:not(:last-child):after {
  content: "▪";
  display: inline-block;
  vertical-align: baseline;
  color: #707070;
}
@media screen and (min-width: 48em) {
  #megamenu-section > .inside .mega-bottom .bottom-links nav ul li:not(:last-child):after {
    padding-right: 5px;
  }
}
@media screen and (max-width: 47.99875em) {
  #megamenu-section > .inside .mega-bottom .bottom-links nav ul li:not(:last-child):after {
    padding-left: 5px;
  }
}
#megamenu-section > .inside .mega-bottom .bottom-links nav ul li a {
  text-decoration: none;
}
#megamenu-section > .inside .mega-bottom .bottom-links a,
#megamenu-section > .inside .mega-bottom .bottom-links strong {
  display: inline-block;
}
@media screen and (min-width: 48em) {
  #megamenu-section > .inside .mega-bottom .bottom-links a,
  #megamenu-section > .inside .mega-bottom .bottom-links strong {
    padding-right: 10px;
  }
}
#megamenu-section > .inside .mega-bottom .bottom-links a {
  color: var(--color-text);
  font-weight: 300;
}
#megamenu-section > .inside .mega-bottom .bottom-links a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 0;
  background-color: rgb(173, 173, 173);
  opacity: 0;
  transition: all 0.3s;
}
#megamenu-section > .inside .mega-bottom .bottom-links a:hover:after {
  width: 100%;
  opacity: 1;
}
#megamenu-section > .inside .mega-bottom .bottom-links strong {
  color: #850109;
}
#megamenu-section > .inside .mega-bottom .bottom-links strong:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0;
  background-color: #850109;
  opacity: 1;
  transition: all 0.3s;
}
#megamenu-section > .inside .mega-bottom .bottom-links.important {
  max-width: none;
}
#megamenu-section > .inside .mega-bottom .bottom-links.important a,
#megamenu-section > .inside .mega-bottom .bottom-links.important strong {
  font-family: "Sorts Mill Goudy";
  font-size: 18px;
}
@media screen and (min-width: 48em) {
  #megamenu-section > .inside .mega-bottom .bottom-links.important a,
  #megamenu-section > .inside .mega-bottom .bottom-links.important strong {
    font-size: 23px;
  }
}
@media screen and (max-width: 58.74875em) {
  #megamenu-section > .inside .mega-bottom .bottom-links.important {
    padding-top: 10px;
  }
}
#megamenu-section > .inside .mega-bottom .social-media {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 58.75em) {
  #megamenu-section > .inside .mega-bottom .social-media {
    justify-content: flex-end;
    grid-row: 1/span 2;
  }
}
#megamenu-section > .inside .mega-bottom .social-media a {
  display: inline-block;
  transition: all 0.2s;
}
#megamenu-section > .inside .mega-bottom .social-media a:hover {
  transform: translateY(-3px);
}

#main-menu {
  align-self: baseline;
  padding-top: 30px;
  margin-bottom: 35px;
}
#main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#main-menu ul.level_1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 34.375em) {
  #main-menu ul.level_1 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 48em) {
  #main-menu ul.level_1 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 68.75em) {
  #main-menu ul.level_1 {
    display: flex;
    justify-content: space-between;
  }
}
#main-menu ul.level_1 > li > a,
#main-menu ul.level_1 > li > strong {
  font-family: var(--headings-font-family-special);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
}
@media only screen and (min-width: 1400px) {
  #main-menu ul.level_1 > li > a,
  #main-menu ul.level_1 > li > strong {
    font-size: 25px;
  }
}
#main-menu ul.level_1 > li > a:after,
#main-menu ul.level_1 > li > strong:after {
  content: none;
}
#main-menu ul.level_1 > li.trail.forward > strong {
  color: #850109;
}
#main-menu ul.level_1 > li.trail.forward > ul.level_2 {
  border-top: 1px solid #850109;
}
#main-menu ul.level_1 > li ul.level_2 {
  border-top: 1px solid;
  padding-top: 5px;
}
#main-menu ul.level_1 > li ul.level_2 li a,
#main-menu ul.level_1 > li ul.level_2 li strong {
  display: inline-block;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
  font-weight: 300;
  text-decoration: none;
}
@media only screen and (min-width: 1400px) {
  #main-menu ul.level_1 > li ul.level_2 li a,
  #main-menu ul.level_1 > li ul.level_2 li strong {
    font-size: 18px;
  }
}
#main-menu ul.level_1 > li ul.level_2 li a {
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 58.74875em) {
  #main-menu ul.level_1 > li ul.level_2 li a {
    width: 100%;
  }
}
#main-menu ul.level_1 > li ul.level_2 li a:hover:before {
  right: -5px;
  opacity: 0;
}
@media screen and (max-width: 58.74875em) {
  #main-menu ul.level_1 > li ul.level_2 li a:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    background: url("../img/icons/arrow-right-black-icon.svg") no-repeat;
    background-size: contain;
    width: 15px;
    height: 5px;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
}
#main-menu ul.level_1 > li ul.level_2 li strong {
  display: inline-block;
  color: #850109;
  text-decoration: none;
  transition: all 0.3s;
}
#main-menu ul.level_1 > li ul.level_2 li strong:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0;
  background-color: #850109;
  opacity: 1;
}

/*************************************

HERO SECTION

*************************************/
#hero-section .scroll-down {
  display: none;
}
#hero-section > .mod_article {
  transform: none !important;
}
#hero-section > .mod_article:first-child {
  position: relative;
}
#hero-section > .mod_article:first-child .h-big {
  position: relative;
  text-align: center;
  z-index: 1;
  font-size: clamp(30px, 8vw, 70px);
  letter-spacing: 10px;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-break: normal;
}
#hero-section > .mod_article:first-child .inside {
  padding: 0;
}
#hero-section > .mod_article:first-child .hero {
  display: grid;
  align-items: end;
  height: 40vh;
  min-height: 300px;
}
@media screen and (min-width: 68.75em) {
  #hero-section > .mod_article:first-child .hero {
    min-height: 78vh;
  }
}
#hero-section > .mod_article:first-child .hero.img-position-top img {
  -o-object-position: top;
  object-position: top;
}
#hero-section > .mod_article:first-child .hero div {
  height: 100%;
}
#hero-section > .mod_article:first-child .hero figure {
  position: absolute;
  inset: 0;
  z-index: -1;
}
#hero-section > .mod_article:first-child .hero figure figcaption {
  display: block;
  color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
#hero-section > .mod_article:first-child .hero figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#hero-section > .mod_article:first-child .hero video {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 100vh;
}
#hero-section > .mod_article:first-child .hero .hero-text {
  display: flex;
  align-items: flex-end;
  padding: 6vw;
  z-index: 1;
}
#hero-section > .mod_article:first-child .hero .hero-text .title-big {
  display: inline-block;
  font-family: var(--headings-font-family-special);
  color: #fff;
  line-height: 1.1;
  z-index: 1;
}
#hero-section > .mod_article:first-child .hero .hero-text .description {
  color: #fff;
}
#hero-section > .mod_article:first-child .hero .hero-text .hero-links {
  z-index: 1;
}
#hero-section > .mod_article:first-child .hero .hero-text:before {
  content: "";
  position: absolute;
  inset: 0 0 50vh 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
}
#hero-section > .mod_article:first-child .hero .hero-text:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: rgb(48, 37, 21);
  background: radial-gradient(circle, rgba(48, 37, 21, 0) 0%, rgb(33, 23, 9) 100%);
}
@media screen and (max-width: 47.99875em) {
  #hero-section > .mod_article:first-child .hero .hero-text:after {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}
#hero-section > .mod_article:first-child .hero .tns-outer {
  position: initial;
}
#hero-section > .mod_article:first-child .hero .slider-wrapper .tns-fadeIn:before {
  content: "";
  position: absolute;
  inset: 0;
  animation: slideEffect 0.5s;
  animation-delay: 150ms;
  z-index: 1;
  opacity: 0;
}
#hero-section > .mod_article:first-child .hero #slideInfo,
#hero-section > .mod_article:first-child .hero .slideInfo {
  position: absolute;
  height: auto !important;
  color: #fff;
  left: 50%;
  right: initial;
  bottom: 46px;
}
@media screen and (min-width: 58.75em) {
  #hero-section > .mod_article:first-child .hero #slideInfo,
  #hero-section > .mod_article:first-child .hero .slideInfo {
    bottom: 65px;
  }
}
#hero-section > .mod_article:first-child .hero #slideInfo,
#hero-section > .mod_article:first-child .hero .slideInfo {
  transform: translateX(-50%);
  margin: 0;
}
#hero-section > .mod_article:first-child .hero .tns-controls {
  height: auto;
  position: absolute;
  bottom: 30px;
}
@media screen and (min-width: 58.75em) {
  #hero-section > .mod_article:first-child .hero .tns-controls {
    bottom: 50px;
  }
}
#hero-section > .mod_article:first-child .hero .tns-controls {
  left: 0;
  right: 0;
  justify-content: center;
  padding: 0;
}
#hero-section > .mod_article:first-child .hero .tns-controls button:before {
  filter: brightness(10);
}
#hero-section > .mod_article:first-child .hero .tns-nav {
  position: absolute;
  display: flex;
  height: auto;
  margin: 0 auto;
  justify-content: flex-start;
  max-width: 80em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--base-spacing-unit);
  padding-right: var(--base-spacing-unit);
}
#hero-section > .mod_article:first-child .hero-start {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
}
#hero-section > .mod_article:first-child .hero-start div {
  height: 100%;
}
#hero-section > .mod_article:first-child .hero-start .tns-controls {
  bottom: 30px;
}
#hero-section > .mod_article:first-child .hero-start .slideInfo {
  bottom: 46px;
}
#hero-section > .mod_article:first-child .hero-start .tns-nav {
  justify-content: center;
}
#hero-section > .mod_article:first-child .hero-start .hero-text .title-big {
  position: relative;
  display: inline-block;
  font-size: clamp(40px, 8vw, 115px);
  max-width: 80%;
  padding-bottom: 80px;
  margin-bottom: 0;
}
@media screen and (min-width: 34.375em) {
  #hero-section > .mod_article:first-child .hero-start .hero-text .title-big {
    max-width: 30%;
    padding-bottom: 120px;
  }
}
#hero-section > .mod_article:first-child .hero-start .hero-text .title-big span {
  background: linear-gradient(0deg, rgba(186, 76, 73, 0) 0%, rgba(186, 76, 73, 0) 20%, rgba(186, 76, 73, 0.8) 20%, rgba(186, 76, 73, 0.8) 40%, rgba(186, 76, 73, 0) 40%, rgba(186, 76, 73, 0) 70%, rgba(186, 76, 73, 0) 100%);
}

.red-notice {
  position: absolute;
  bottom: 350px;
  left: -10px;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  background-color: #850109;
  border-radius: 999px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 1;
  overflow: visible;
  opacity: 0.75;
  transition: all 0.3s;
}
.red-notice.disabled {
  pointer-events: none;
  cursor: default;
}
.red-notice.angebot {
  bottom: 50px;
}
@media screen and (min-width: 34.375em) {
  .red-notice.angebot {
    bottom: 50px;
  }
}
@media screen and (min-width: 58.75em) {
  .red-notice.angebot {
    bottom: 150px;
  }
}
@media screen and (min-width: 68.75em) {
  .red-notice.angebot a {
    font-size: 20px;
  }
}
.red-notice.angebot a {
  padding: 15px;
}
@media screen and (min-width: 68.75em) {
  .red-notice.angebot figure {
    padding-top: 10px;
  }
}
.red-notice.angebot h1, .red-notice.angebot h2, .red-notice.angebot h3, .red-notice.angebot h4, .red-notice.angebot h5, .red-notice.angebot h6 {
  position: absolute;
  left: 50%;
  top: 33px;
  color: #ffffff;
  transform: translateX(-50%);
  font-family: var(--headings-font-family-special);
  line-height: 1;
}
@media screen and (min-width: 120em) {
  .red-notice.angebot h1, .red-notice.angebot h2, .red-notice.angebot h3, .red-notice.angebot h4, .red-notice.angebot h5, .red-notice.angebot h6 {
    font-size: 17px;
  }
}
.red-notice h1, .red-notice h2, .red-notice h3, .red-notice h4, .red-notice h5, .red-notice h6 {
  position: absolute;
  left: 50%;
  top: 20px;
  color: #ffffff;
  transform: translateX(-50%);
}
@media screen and (min-width: 34.375em) {
  .red-notice {
    left: initial;
    right: 30px;
    bottom: 150px;
    opacity: 1;
  }
}
@media screen and (min-width: 58.75em) {
  .red-notice {
    right: 150px;
    bottom: 150px;
  }
}
@media screen and (min-width: 120em) {
  .red-notice {
    right: 330px;
    bottom: 230px;
  }
}
.red-notice:hover {
  transform: translateY(-3px);
  background-color: rgb(143.123880597, 1.076119403, 9.6850746269);
}
.red-notice:active {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background-color: #850109;
}
.red-notice figure {
  position: relative !important;
  display: block;
  height: 100%;
}
.red-notice figure a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  font-family: var(--headings-font-family-special);
  text-align: center;
}
@media screen and (min-width: 120em) {
  .red-notice figure a {
    font-size: 20px;
  }
}
.red-notice figure a img {
  position: absolute;
  top: -5px;
  right: -20px;
  width: 65px !important;
  height: auto !important;
  transform: rotate(-5deg);
}

.green-notice {
  position: absolute;
  bottom: 220px;
  left: -10px;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  background-color: #4f5b4c;
  border-radius: 999px;
  z-index: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  overflow: visible;
  transition: all 0.3s;
}
.green-notice.disabled {
  pointer-events: none;
  cursor: default;
}
@media screen and (min-width: 34.375em) {
  .green-notice {
    left: initial;
    right: 45px;
    bottom: 25px;
    opacity: 1;
  }
}
@media screen and (min-width: 120em) {
  .green-notice {
    right: 150px;
    bottom: 100px;
  }
}
.green-notice:hover {
  transform: translateY(-3px);
  background-color: rgb(83.8251497006, 96.5580838323, 80.6419161677);
}
.green-notice:active {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background-color: #4f5b4c;
}
.green-notice figure {
  position: relative !important;
  display: block;
  height: 100%;
}
.green-notice figure a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #fff;
  font-family: var(--headings-font-family-special);
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 120em) {
  .green-notice figure a {
    font-size: 25px;
    line-height: 1.1;
  }
}
.green-notice figure a img {
  position: absolute;
  top: 33px;
  right: -52px;
  width: 80px !important;
  height: auto !important;
  transform: rotate(-6deg);
}

.lightred-notice {
  position: absolute;
  bottom: 270px;
  left: 120px;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  background-color: #ba4c49;
  border-radius: 999px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 1;
  overflow: visible;
  opacity: 0.75;
  transition: all 0.3s;
}
.lightred-notice.disabled {
  pointer-events: none;
  cursor: default;
}
.lightred-notice.angebot {
  bottom: 50px;
}
@media screen and (min-width: 34.375em) {
  .lightred-notice.angebot {
    bottom: 50px;
  }
}
@media screen and (min-width: 58.75em) {
  .lightred-notice.angebot {
    bottom: 150px;
  }
}
@media screen and (min-width: 68.75em) {
  .lightred-notice.angebot a {
    font-size: 20px;
  }
}
.lightred-notice.angebot a {
  padding: 20px;
}
@media screen and (min-width: 68.75em) {
  .lightred-notice.angebot figure {
    padding-top: 10px;
  }
}
.lightred-notice.angebot h1, .lightred-notice.angebot h2, .lightred-notice.angebot h3, .lightred-notice.angebot h4, .lightred-notice.angebot h5, .lightred-notice.angebot h6 {
  position: absolute;
  left: 50%;
  top: 33px;
  color: #ffffff;
  transform: translateX(-50%);
  font-family: var(--headings-font-family-special);
  line-height: 1;
}
@media screen and (min-width: 120em) {
  .lightred-notice.angebot h1, .lightred-notice.angebot h2, .lightred-notice.angebot h3, .lightred-notice.angebot h4, .lightred-notice.angebot h5, .lightred-notice.angebot h6 {
    font-size: 17px;
  }
}
.lightred-notice h1, .lightred-notice h2, .lightred-notice h3, .lightred-notice h4, .lightred-notice h5, .lightred-notice h6 {
  position: absolute;
  left: 50%;
  top: 20px;
  color: #ffffff;
  transform: translateX(-50%);
}
@media screen and (min-width: 34.375em) {
  .lightred-notice {
    left: initial;
    right: 30px;
    bottom: 270px;
    opacity: 1;
  }
}
@media screen and (min-width: 58.75em) {
  .lightred-notice {
    right: 20px;
    bottom: 230px;
  }
}
@media screen and (min-width: 120em) {
  .lightred-notice {
    right: 150px;
    bottom: 300px;
  }
}
.lightred-notice:hover {
  transform: translateY(-3px);
  background-color: rgb(143.123880597, 1.076119403, 9.6850746269);
}
.lightred-notice:active {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background-color: #850109;
}
.lightred-notice figure {
  position: relative !important;
  display: block;
  height: 100%;
}
.lightred-notice figure a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  font-family: var(--headings-font-family-special);
  text-align: center;
}
@media screen and (min-width: 120em) {
  .lightred-notice figure a {
    font-size: 20px;
  }
}
.lightred-notice figure a img {
  position: absolute;
  top: -5px;
  right: -20px;
  width: 65px !important;
  height: auto !important;
  transform: rotate(-5deg);
}

.hero-unterseite ~ .red-notice {
  bottom: 100px;
  right: 15px;
  left: initial;
}
.hero-unterseite ~ .red-notice a {
  font-size: 14px;
}
@media screen and (min-width: 34.375em) {
  .hero-unterseite ~ .red-notice {
    bottom: 150px;
  }
  .hero-unterseite ~ .red-notice a {
    font-size: 16px;
  }
}
@media screen and (min-width: 58.75em) {
  .hero-unterseite ~ .red-notice {
    right: 150px;
    bottom: 150px;
  }
}
@media screen and (min-width: 120em) {
  .hero-unterseite ~ .red-notice {
    right: 330px;
    bottom: 250px;
  }
  .hero-unterseite ~ .red-notice a {
    font-size: 20px;
  }
}
.hero-unterseite ~ .green-notice {
  bottom: 20px;
}
@media screen and (min-width: 120em) {
  .hero-unterseite ~ .green-notice {
    bottom: 70px;
  }
}

/*************************************

CARDS MODULE

*************************************/
.simpleParallax {
  height: 100%;
}

.card {
  display: flex;
  flex-flow: column;
  margin-bottom: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.card figcaption {
  position: absolute;
  bottom: -24px;
  right: 5px;
  display: block !important;
  font-size: 12px;
  pointer-events: none;
  color: #ccc;
  font-weight: 300;
}
.card:not(.ce_rsce_card_zimmer):not(.ce_rsce_card_angebot) h3 {
  font-family: var(--headings-font-family-special);
}
.card .card-img {
  position: relative;
}
.card .card-img .card-img-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  font-size: 15px;
  padding: 5px 10px 7px;
  background-color: #850109;
  color: #fff;
}
.card .card-img.bg-shadow a:before {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(0, black 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.7;
}
.card .card-img:hover + .card-content .card-links .btn.btn--secondary, .card .card-img:hover + .card-content .card-links .btn--secondary.back {
  transform: translateY(-3px);
}
.card .card-img:hover + .card-content .card-links .btn.btn--secondary .arrow-container .arrow-line, .card .card-img:hover + .card-content .card-links .btn--secondary.back .arrow-container .arrow-line {
  width: 100%;
}
.card .swiper {
  width: 100%;
  height: 100%;
}
.card .swiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
}
.card .swiper .swiper-wrapper .swiper-slide figure {
  height: 100%;
  overflow: hidden;
}
.card .swiper .swiper-wrapper .swiper-slide figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 0 1px;
}
.card .card-content {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 15px;
  font-size: 18px;
}
@media screen and (min-width: 68.75em) {
  .card .card-content {
    padding: 25px;
  }
}
.card .card-content {
  background-color: #fff;
}
.card .card-content h3 {
  margin: 0;
}
.card .card-content h3 span {
  display: block;
}
.card .card-content h3 span.small-title {
  font-size: 17px;
  color: #850109;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.card .card-content h3 span.real-title {
  margin-bottom: 5px;
}
@media screen and (min-width: 120em) {
  .card .card-content .subheading {
    font-weight: 400;
    line-height: 1.2;
    font-size: 18px;
  }
}
.card .card-content .card-infos {
  display: flex;
  gap: 20px;
  font-size: 16px;
}
@media screen and (max-width: 47.99875em) {
  .card .card-content .card-infos {
    flex-flow: column;
    gap: 5px;
  }
  .card .card-content .card-infos p {
    margin-bottom: 0;
  }
}
.card .card-content .card-infos + p {
  padding-top: 20px;
  margin-top: auto;
  margin-bottom: 0;
}
.card .card-content .card-infos + p + .card-links {
  padding-top: 30px;
}
.card .card-content .card-infos .people-icon {
  display: flex;
  gap: 5px;
}
.card .card-content .card-infos .night-icon {
  font-weight: 400;
  font-size: 18px;
}
.card .card-content .description {
  padding: 5px 0 25px;
}
@media screen and (min-width: 68.75em) {
  .card .card-content .description {
    font-size: 0.85rem;
  }
}
.card .card-content .price {
  font-weight: 500;
  margin-top: auto;
  margin-bottom: var(--base-spacing-unit);
}
.card .card-content .link--primary {
  margin-top: auto;
  padding-bottom: 0;
}
.card .card-content .card-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
}
.card .card-content .card-links a {
  margin-bottom: 0;
}
.card .card-content .card-links a:hover {
  transform: none;
}
.card .card-content .card-links a.btn, .card .card-content .card-links a.back {
  transition: all 0.2s;
  padding: 10px 15px;
  min-width: auto;
}
.card .card-content .card-links a.btn .arrow-container .arrow-line, .card .card-content .card-links a.back .arrow-container .arrow-line {
  width: 90%;
}
.card .card-content .card-links a.btn:hover, .card .card-content .card-links a.back:hover {
  transform: translateY(-3px);
}
.card .card-content .card-links a.btn:hover .arrow-container .arrow-line, .card .card-content .card-links a.back:hover .arrow-container .arrow-line {
  width: 100%;
}
.card.angebot .card-content h3 span.small-title {
  color: #4f5b4c;
}
.card.angebot.checklist ul {
  margin-top: 0;
}

.brauhaus-wrapper .card-wrapper > div:last-child > .card,
.haupthaus-wrapper .card-wrapper > div:last-child > .card {
  position: relative;
}
.brauhaus-wrapper .card-wrapper > div:last-child > .card:before,
.haupthaus-wrapper .card-wrapper > div:last-child > .card:before {
  content: "";
  display: none;
  background-image: url("../img/kraeuter/kraeuter.svg");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: -190px;
  width: 300px;
  height: 400px;
  z-index: -1;
}
@media screen and (min-width: 68.75em) {
  .brauhaus-wrapper .card-wrapper > div:last-child > .card:before,
  .haupthaus-wrapper .card-wrapper > div:last-child > .card:before {
    display: block;
  }
}

/*************************************

ZOOM GALLERY MODUL STYLESHEET

*************************************/
/* Add your custom styles here */
/* Keyframe animation for the slide effect */
@keyframes slideEffect {
  0% {
    /* Initial position, adjust as needed */
    opacity: 1;
  }
  100% {
    /* Final position, adjust as needed */
    opacity: 0;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*************************************

FILTER MODUL STYLESHEET

*************************************/
.filter-nav {
  position: sticky;
  display: flex;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: var(--color-page-background);
  border: 1px solid #d5d5d5;
  font-weight: 200;
  font-size: 15px;
  margin: 30px auto -75px;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  .filter-nav {
    font-size: 18px;
  }
}
@media screen and (min-width: 120em) {
  .filter-nav {
    margin: 70px auto -133px;
  }
}
.filter-nav button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7px;
  background: none;
  color: var(--color-text);
  border: none;
  transition: all 0.3s;
}
@media screen and (min-width: 48em) {
  .filter-nav button {
    padding: 20px;
  }
}
.filter-nav button:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #d5d5d5;
}
@media screen and (min-width: 48em) {
  .filter-nav button:not(:last-child):after {
    height: 40px;
  }
}
.filter-nav button.active {
  color: #850109;
  font-weight: 300;
}
.filter-nav button:hover {
  color: #850109;
}
.filter-nav p {
  position: relative;
  color: var(--color-text);
  padding: 20px;
  margin: 0;
  font-weight: 400;
}
.filter-nav p:after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 1px;
  height: 100%;
  background-color: #d5d5d5;
}

.brauhaus-wrapper,
.haupthaus-wrapper {
  display: none;
  transition: all 0.3s;
}
.brauhaus-wrapper.active,
.haupthaus-wrapper.active {
  display: block;
}
.brauhaus-wrapper.loading,
.haupthaus-wrapper.loading {
  opacity: 0;
}

.nights3,
.nights4,
.nights5,
.nights7 {
  display: none;
  transition: all 0.3s;
}
.nights3.active,
.nights4.active,
.nights5.active,
.nights7.active {
  display: flex;
}
.nights3.loading,
.nights4.loading,
.nights5.loading,
.nights7.loading {
  opacity: 0;
}

/*************************************

MODAL MODUL STYLESHEET

*************************************/
#kammbraeukulinarik.modal {
  max-width: 950px;
  padding: 5px 30px 30px;
}

.blocker {
  z-index: 100000000000000000000000000000000000000000000000;
}

/*************************************

BIKE MODUL STYLESHEET

*************************************/
.bikemodule {
  position: relative;
}
.bikemodule.alone h6 {
  margin-bottom: 0;
}
.bikemodule a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.bikemodule a:hover ~ .download-icon {
  transform: translateY(-3px);
  filter: brightness(1);
}
.bikemodule a:hover ~ .bikemodule-content {
  border: 1px solid #850109;
  transform: translateY(-3px);
}
.bikemodule a:hover ~ .bikemodule-content h6 {
  color: #850109;
}
.bikemodule a:active ~ .download-icon {
  transform: translateY(0);
}
.bikemodule a:active ~ .bikemodule-content {
  transform: translateY(0);
}
.bikemodule a .download {
  position: absolute;
  display: grid;
  align-items: center;
  inset: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.bikemodule .download-icon {
  position: absolute;
  right: 5px;
  bottom: 5px;
}
@media screen and (min-width: 120em) {
  .bikemodule .download-icon {
    right: 15px;
    bottom: 15px;
  }
}
.bikemodule .download-icon {
  width: 20px;
  filter: brightness(0);
  transition: all 0.3s;
}
.bikemodule .bikemodule-content {
  height: 100%;
  padding: 7px;
}
@media screen and (min-width: 34.375em) {
  .bikemodule .bikemodule-content {
    padding: 15px;
  }
}
.bikemodule .bikemodule-content {
  border: 1px solid #735c4f;
  transition: all 0.3s;
}
.bikemodule .bikemodule-content h6 {
  font-weight: 500;
  letter-spacing: 0;
}
.bikemodule .bikemodule-content p {
  margin-bottom: 5px;
}
.bikemodule .bikemodule-content .dauer:before {
  background-image: url(../img/icons/biken/zeit-biken.svg);
}
.bikemodule .bikemodule-content .laenge:before {
  background-image: url(../img/icons/biken/kilometer-biken.svg);
}
.bikemodule .bikemodule-content .schwierig:before {
  background-image: url(../img/icons/biken/schiwerigkeitsgrad-biken.svg);
}
.bikemodule .bikemodule-content .dauer,
.bikemodule .bikemodule-content .laenge,
.bikemodule .bikemodule-content .schwierig {
  display: grid;
}
@media screen and (min-width: 34.375em) {
  .bikemodule .bikemodule-content .dauer,
  .bikemodule .bikemodule-content .laenge,
  .bikemodule .bikemodule-content .schwierig {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.bikemodule .bikemodule-content .dauer:before,
.bikemodule .bikemodule-content .laenge:before,
.bikemodule .bikemodule-content .schwierig:before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 58.75em) {
  .bikemodule .bikemodule-content .dauer:before,
  .bikemodule .bikemodule-content .laenge:before,
  .bikemodule .bikemodule-content .schwierig:before {
    width: 25px;
    height: 25px;
  }
}

/* ----------------------------------- *
 * startseite overlay
 * ----------------------------------- */
#homepage-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000000000000000000000000000;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
#homepage-overlay.showOverlay {
  opacity: 1;
  visibility: visible;
}
#homepage-overlay .overlayBox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1.5rem;
  overflow-y: auto;
}
#homepage-overlay .overlayBox .overlay-text {
  position: relative;
  padding: 2rem;
  margin: 0 auto;
  width: 1050px;
  max-width: 100%;
  max-height: 95svh;
  height: auto;
  background: #faf5f0;
  color: #735c4f;
  z-index: 2;
  overflow: hidden;
  overflow-y: auto;
}
@media screen and (min-width: 120em) {
  #homepage-overlay .overlayBox .overlay-text {
    padding: 2rem 5rem;
    max-height: none;
    overflow: hidden;
  }
}
#homepage-overlay .overlayBox .overlay-text.absolute-img figure {
  opacity: 0.08;
  right: -150px;
  z-index: -1;
}
#homepage-overlay .overlayBox .overlay-text h2,
#homepage-overlay .overlayBox .overlay-text h3,
#homepage-overlay .overlayBox .overlay-text h4 {
  letter-spacing: 0;
}
#homepage-overlay .overlayBox .overlay-text .close {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}
#homepage-overlay .overlay-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(20, 20, 20, 0.5);
  transition: all 0.3s;
}

@media screen and (max-width: 47.99875em) {
  #homepage-overlay .overlayBox .overlay-text .close {
    top: 13px;
    right: 15px;
  }
}
/*************************************

WIDGETS SECTION

*************************************/
#popup-section {
  z-index: 9500;
}

.popup_active .popup_deactivated {
  display: block;
}

.popup_deactivated {
  display: none;
}

.fixpopups {
  position: fixed;
  top: 100px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 300px;
  opacity: 0;
  animation: fadeInDown 1s ease-out forwards;
  animation-delay: 10s;
}
@media screen and (min-width: 68.75em) {
  .fixpopups {
    top: 15%;
    right: 7%;
  }
}
.fixpopups > div {
  margin-bottom: 0 !important;
}

/* POPUP AKTIVCARD */
#popup_aktivcard,
#popup_hochwasser {
  display: none;
  position: relative;
  font-size: 16px;
  padding: 30px;
  border-radius: 10px;
  background: #859d7f;
  color: #fff;
  max-width: 300px;
  text-wrap: balance;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
}
#popup_aktivcard a,
#popup_hochwasser a {
  display: inline-block;
  color: #4f5b4c;
}
#popup_aktivcard a:after,
#popup_hochwasser a:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 30px;
  height: 10px;
  background-image: url(../img/icons/arrow-right-black-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
}
#popup_aktivcard .close-button,
#popup_hochwasser .close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
#popup_aktivcard.active,
#popup_hochwasser.active {
  display: block;
}

#popup_hochwasser {
  background: #850109;
}
#popup_hochwasser a,
#popup_hochwasser .close-button {
  color: #fff;
}
#popup_hochwasser a:after {
  background-image: url("../img/icons/arrow-right-icon.svg");
}

/* POPUP MOUSE LEAVE */
.close-button {
  position: absolute;
  top: 2px;
  right: 7px;
  background: none;
  border: none;
  padding: 0;
}

#popup-section:before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
#popup-section.bg-shadow {
  z-index: 10000000000000000000000;
}
#popup-section.bg-shadow:before {
  opacity: 1;
  visibility: visible;
}

#popup_ml {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: var(--color-page-background);
  padding: 30px;
  max-width: 600px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  z-index: 1001;
}
@media screen and (max-width: 47.99875em) {
  #popup_ml {
    width: 90vw;
  }
}
#popup_ml.active {
  opacity: 1;
  visibility: visible;
}
#popup_ml .btn.btn--primary, #popup_ml .back {
  margin: 15px 0 0;
}
/*# sourceMappingURL=../maps/default.css.map */
