@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden; }
  .contao-cookiebar * {
    box-sizing: border-box; }
  .contao-cookiebar:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .contao-cookiebar .cc-inner {
    display: inline-block;
    overflow-y: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 1rem;
    text-align: left; }
  .contao-cookiebar.cc-top .cc-inner {
    vertical-align: top; }
  .contao-cookiebar.cc-top.cc-active .cc-inner {
    animation: cookiebar-top-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-top.cc-saved .cc-inner {
    animation: cookiebar-top-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom .cc-inner {
    vertical-align: bottom; }
  .contao-cookiebar.cc-bottom.cc-active .cc-inner {
    animation: cookiebar-bottom-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom.cc-saved .cc-inner {
    animation: cookiebar-bottom-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle .cc-inner {
    vertical-align: middle; }
  .contao-cookiebar.cc-middle.cc-active .cc-inner {
    animation: cookiebar-middle-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle.cc-saved .cc-inner {
    animation: cookiebar-middle-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-left {
    text-align: left; }
  .contao-cookiebar.cc-right {
    text-align: right; }
  .contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
    margin-top: 0; }
  .contao-cookiebar .cc-head p {
    margin-bottom: 15px; }
  .contao-cookiebar .cc-btn {
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 8px 14px;
    margin-bottom: 8px;
    font-size: 15px;
    outline: 0 none;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    color: #444;
    background: #f5f5f5; }
    .contao-cookiebar .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .cc-btn:last-child {
      margin-bottom: 0; }
  .contao-cookiebar .grayscale .cc-btn {
    background: #f1efef; }
    .contao-cookiebar .grayscale .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .grayscale .cc-btn.success {
      background: #fbfbfb; }
      .contao-cookiebar .grayscale .cc-btn.success:hover {
        background: #f7f7f7; }
  .contao-cookiebar .highlight .cc-btn.success {
    background: #4e9e3e;
    border-color: #3e7830;
    color: #fff; }
    .contao-cookiebar .highlight .cc-btn.success:hover {
      background: #4c933f; }
  .contao-cookiebar label {
    position: relative;
    display: block;
    padding: 8px 13px 8px 0;
    line-height: 1.2rem; }
    .contao-cookiebar label.group {
      font-weight: 600; }
  .contao-cookiebar input {
    position: absolute;
    width: 1px;
    height: 1px;
    outline: 0 none;
    opacity: 0; }
    .contao-cookiebar input + label {
      padding: 8px 13px 8px 50px;
      cursor: pointer; }
      .contao-cookiebar input + label:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 35px;
        height: 18px;
        margin: 0;
        box-sizing: content-box;
        border-radius: 10px;
        background: #fff;
        border: 2px solid #9c9b99;
        transition: border-color .2s; }
      .contao-cookiebar input + label:after {
        display: block;
        content: '';
        position: absolute;
        top: 10px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        background: #9c9b99;
        transition: background .2s, margin-left .2s, padding .2s; }
      .contao-cookiebar input + label:active:after {
        padding-left: 5px; }
    .contao-cookiebar input.cc-group-half + label:after {
      background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%); }
    .contao-cookiebar input:checked + label:after {
      background: #399d32;
      margin-left: 17px; }
    .contao-cookiebar input:checked + label:active:after {
      margin-left: 12px; }
    .contao-cookiebar input:checked + label:before {
      background: #dcf3db;
      border-color: #399d32; }
    .contao-cookiebar input:disabled + label {
      pointer-events: none; }
      .contao-cookiebar input:disabled + label:after {
        background: #c8c7c5; }
      .contao-cookiebar input:disabled + label:before {
        background: #f4f4f4;
        border-color: #c8c7c5; }
  .contao-cookiebar.cc-active .cc-inner {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .contao-cookiebar.cc-active.cc-blocked {
    pointer-events: auto;
    animation: cookiebar-overlay-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-saved.cc-inner {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
  .contao-cookiebar.cc-saved.cc-blocked {
    pointer-events: none;
    animation: cookiebar-overlay-out 0.5s ease-in-out forwards; }

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0; }
  .contao-cookiebar .cc-inner {
    max-width: 750px; } }

@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.75); } }

@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75); }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden; } }

@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); } }

@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0); } }

@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%); } }

.contao-cookiebar {
  color: #444444; }
  .contao-cookiebar p {
    color: #868686;
    line-height: 1.4; }
  .contao-cookiebar .cc-inner {
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    background: #fff; }
  .contao-cookiebar .cc-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    position: relative;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    margin-bottom: 10px; }
    .contao-cookiebar .cc-group > label {
      flex-grow: 1;
      margin: 5px 0 5px 10px; }
    .contao-cookiebar .cc-group .cc-detail-btn {
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      padding: 8px 10px;
      line-height: 1.2rem; }
      .contao-cookiebar .cc-group .cc-detail-btn span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn:hover {
        color: #717171; }
    .contao-cookiebar .cc-group .cc-detail-btn-details {
      display: inline-block;
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      text-decoration: underline;
      padding: 0;
      margin: 0 0 10px; }
      .contao-cookiebar .cc-group .cc-detail-btn-details span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn-details:hover {
        color: #717171; }
  .contao-cookiebar .cc-cookies {
    display: none;
    width: 100%;
    background: #fbfbfb;
    border-radius: 0 0 5px 5px; }
    .contao-cookiebar .cc-cookies > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-cookies > p, .contao-cookiebar .cc-cookies > .cc-cookie {
      margin: 0;
      padding: 15px;
      border-top: 1px solid #e6e6e6; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
      font-size: 0.875rem;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #efefef; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div > span {
        font-weight: 600; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div + div {
        margin-top: 5px;
        word-wrap: break-word; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
        margin-top: 15px; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-desc > p {
      margin-bottom: 0; }
    .contao-cookiebar .cc-cookies .cc-cookie label.cookie + p, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
      margin-top: 10px; }
    .contao-cookiebar .cc-cookies .cc-cookie p {
      margin: 0 0 15px;
      font-size: 0.875rem; }
  .contao-cookiebar .cc-footer, .contao-cookiebar .cc-info {
    text-align: center; }
  .contao-cookiebar .cc-info {
    margin-top: 15px; }
    .contao-cookiebar .cc-info > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-info > a {
      display: inline-block;
      font-size: 0.813rem;
      color: #a2a2a2;
      text-decoration: none; }
      .contao-cookiebar .cc-info > a:hover {
        color: #717171; }
      .contao-cookiebar .cc-info > a + a:before {
        display: inline-block;
        content: '·';
        margin-right: 5px; }

body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{position:relative}#main{}#left{}#right{}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li{float:left}.ce_gallery>ul li.col_first{clear:left}.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media all and (min-width: 1920px){



}

@media all and (max-width: 1260px){

   
}

@media all and (max-width: 980px){
   .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
  width: calc( (100% - (4 * 10px)) / 2 );
}
    
}



@media all and (max-width: 680px){
   .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
  width: 100%;
       margin: 0 0 20px;
}
    
        .teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li {
  width: calc( (100% - (0 * 10px)) / 1 );
}
    

}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

/* Grouping content
   ========================================================================== */

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font 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;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/*Basics*/

:root {
    --button-color: #F66035;
    --button-hover-color: #F86F4C;
    --text-on-light: #F66035;
    --text-on-dark: #F66035;
    --text-on-button: #FFF;
    --header-color: #313131;
    --header-border-color: #222222;
    --header-text-color: #ffffff;
}



*{
    border: none;
    outline: none;
}

html{
font-size:100.1%;
overflow-x:hidden;
-webkit-overflow-scrolling: touch;
 -webkit-text-size-adjust: 100%;
}
 
body, html {
height:100%;
min-height:100%;
}

body{
font-family: interstate, sans-serif;
color:#222;
font-size: 18px;
line-height: 1.8rem;
font-weight:300;
display: flex;
min-height: 100vh;
flex-direction: column;
}



  #wrapper {
    flex: 1 0 auto;
  }

/*Basics*/

/*Ende sticky footer*/

/*Form*/
input,textarea,select{
/*Safari*/
-webkit-appearance: none;
border-radius:0;
-webkit-border-radius:0;
}

.widget{
    margin-bottom: 2rem;
    display: table;
    width: 100%;
    box-sizing: border-box;
      color:gray;
}


.widget.widget-checkbox{
    color: inherit;
}



.widget.w50,.widget-select {
    float: left;
    width: calc((100% - 2rem) / 2);
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.widget.w50.clr {
    margin-right: 0;
}

.widget.w50.noflaot {
    float:none;
}

.widget.widget-checkbox, .widget.widget-radio {
    display: block;
    margin-bottom: 2rem;
    padding-left: 32px;
}

.widget.widget-checkbox label span, .widget.widget-radio label span{
    display: inherit;
}

.widget.widget-text input {
 
    padding: 10px 15px;
    width: 100%;
    background: #f3f4f6;
    border: 0;
    box-sizing: border-box;
}

.widget.widget-textarea textarea {
    padding: 15px;
    width: 100%;
    background: #f3f4f6;
    border: 0;
    box-sizing: border-box;
}

.submit{
    background: transparent;
    line-height: 3rem;
    display: table;
    cursor: pointer;
    color: white;
}



body .icheckbox_minimal {
    margin-left: -32px;
    margin-right: 10px;
}


body .dk-select, body .dk-select-multi{
    width: 100%;
    box-sizing: border-box;
}


body .dk-select .dk-selected{

    padding:10px 15px;
}

body .dk-select{
    height: auto;
}

body select[data-dkcacheid] {
    display: block;
    height: 100%;
    width: 200px;
    position: absolute;
    top: 0;
    opacity: 0;
    z-index: -99999;
}

.widget-select {
    position: relative;
}



/*Ende Form*/

/*set images to maxwidth 100%*/
figure{
line-height:0;
    margin: 0;
}

figure > img, .image_container > img{
max-width:100%;
height:auto;
}

a{
color:inherit;
}
 
 
a:focus{
}
/*Ende Basics*/



 a {
transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
text-decoration: none;
color:inherit;
 }


.table{
display:table;
width:100%;
}

.table-wrapper {
  display: table;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  table-layout:fixed;
}

.row{
display:table-row;
position:relative;
}

.row > *{
display:table-cell;
}

.vtop{
    vertical-align: top
}

.vmiddle{
    vertical-align: middle
}

.vbottom{
    vertical-align: bottom
}


.headlinecontainer{
margin-bottom:2rem;
}

.headlinecontainer > *{
margin:0;

}


h1, h2, h3, h4, h5, h6 {
    font-family: "KlavikaWebBasicLight",arial,sans-serif;
    font-weight: 100;
}
 
h1, .h1 {
  font-size:1.7em;
  line-height:1.2em;
  letter-spacing:0.03em;
  margin-bottom:0.5em;
}

h2 {
    font-size: 1.4rem;
    line-height: 1.6;
}
h3, .h3 {
  font-size:1.5em
}
h4 {
font-size:1.4em;
    margin-bottom: 0;
}

h5, .h5{
font-size:16px;
font-weight:600;
}
h6{}

ul li{

}


li{
list-style-type:none;
}

 
p{
margin-bottom:20px;
    margin-top:0;
}

p:last-of-type{
margin-bottom:0;
}
 
ul,ol{
margin:0;
    padding:0;
}
 

span{
    display: block;
}

#main {

}


/*Teaser*/
.ce_pageteaser span, .ce_pageteaser a, .ce_page_teasers_element span, .ce_page_teasers_element a{
    display: block;
}
.teasergrid > div, .teasergrid > ul {
    margin: -10px -10px -20px -43px;
    display: table;
    min-width: 100%;
}

.ce_gallery ul > li a{
    display: block;
}

.teasergrid > ul > *, .teasergrid > div > *,.ce_gallery ul > li{
    float: left;
    margin:0 10px 20px;
}

.ce_gallery ul > li img{
    max-width: 100%;
    height: auto;
}

.teasergrid > .itemsperRow_1 > *, .ce_gallery ul.cols_1 > li{
    width:calc(100% / 1 )
}

.teasergrid > .itemsperRow_2 > *,.ce_gallery ul.cols_2 > li{
 width:calc( (100% - (4 * 10px)) / 2 )
}

.teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li{
    width:calc( (100% - (6 * 10px)) / 3 )
}

.teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li{
    width:calc( (100% - (8 * 10px)) / 4 )
}

.teasergrid > .itemsperRow_5 > *, .ce_gallery ul.cols_5 > li{
     width:calc( (100% - (10 * 10px)) / 5 )
}


.teasergrid > .itemsperRow_6 > *, .ce_gallery ul.cols_6 > li{
    width:calc(100% / 6 )
}



#herosection{
    width: 100%;
	position:relative;
}

#herosection .mod_pageImage > .inside.mod_pageImage > .inside,#herosection .mod_pageImage > .inside .bgImage{
    line-height:0;
}

#herosection .mod_pageImage > .inside .caption{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
}


#herosection .inside,#herosection .inside .ce_herosection,#herosection .inside .ce_herosection .flexslider,#herosection .inside .ce_herosection .flexslider .slides, #herosection .inside .ce_herosection .flexslider .slides li,#herosection .inside .ce_herosection .flexslider .slides li .bgImage, #herosection .inside .ce_herosection .mod_pageImage,#herosection .inside .ce_herosection .mod_pageImage .inside, #herosection .inside .ce_herosection .mod_pageImage .inside .bgImage{
    height: 100%;
}

#herosection .caption *, #herosection .bgImage *,#herosection .flex-control-nav{
    height: auto;
}


/*if googlemap Iframe*/
#herosection iframe {

    border: 0;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 99999;
}


.headertop > .inside,.headerbottom > .inside, .footertop > .inside,.footerbottom > .inside,#main .mod_article > .block{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
        position: relative;
}

footer > .inside{
    
}


#main .mod_article > .block{
    padding: 2rem;
}


 #main .mod_article.fullwidth > .block, #main .mod_article > .block.fullwidth {
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*parallax*/
.fullwidth.mod_article > .block.ce_parallaxImage{
    padding: 0;
}

.parallax-container {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.parallax-container .parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}


.parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}



/*introtext*/
#main .mod_article > .ce_introtext{
    max-width: 980px;
}

/*align*/

.flex-viewport{
    height: 100%;
}

body .flexslider {
    margin: 0;
    background: transparent;
    border: none;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
 
}

body .flex-control-nav {

    bottom: 0;

    z-index: 999;
}





.avatar.rounded {
    border-radius: 50%;
    overflow: hidden;
    height: 20vw;
    width: 20vw;
    max-width: 250px;
    max-height: 250px;
  /*  margin: 0 auto; */
}

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

.textholder.align_above{
    margin-bottom: 6rem;
}

/*csscolumn*/

.columnized{
      column-fill: balance;
      -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
    orphans: 3;
    widows: 3;
}


.columnized.colcount_2{
 -webkit-columns: 2 200px;
     -moz-columns: 2 200px;
          columns: 2 200px;
}

.columnized.colcount_3{
-webkit-columns: 3 200px;
     -moz-columns: 3 200px;
          columns: 3 200px;
}


.columnized.colcount_4{
 -webkit-columns: 4 200px;
     -moz-columns: 4 200px;
          columns: 4 200px;
}


.columnized h3, .columnized h2, .columnized h1, .columnized h4, .columnized h5, .columnized h6,.columnized .headlinecontainer { 
  -webkit-column-span: all; 
          column-span: all; 
}


.columnized p {
  break-after: column;
    -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

/*Headerefx*/
header.clone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: 0.2s transform cubic-bezier(.3,.73,.3,.74);
    width: 100%;
    z-index: 999;
}

body.effectHeader.showOnUp.up header.clone {
     transform: translateY(0);
}

body.effectHeader.showOnDown.down header.clone,body.effectHeader.showOnDown.up header.clone {
      transform: translateY(0);
}


.vAlign_middle .row > *{
    vertical-align: middle;
}

.vAlign_top .row > *{
    vertical-align: top;
}


.vAlign_bottom .row > *{
    vertical-align: bottom;
}

.ce_kachelelement .row > *{
    width: 50%;
}




.ce_kachelelement .notfloat_right{
    padding-left:calc(((100% - 1280px) / 2)); 
}

.ce_kachelelement .notfloat_right > .inside{
    padding: 4rem 4rem 4rem 2rem;
}

.ce_kachelelement .notfloat_left{
    padding-right:calc(((100% - 1280px) / 2)); 
  
}

.ce_kachelelement .notfloat_left > .inside{
     padding: 4rem 2rem 4rem 4rem;
}

.ce_kachelelement video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/*scrolltop*/
a#return-to-top {
    
  background: var(--darkblue);
color: white;
    width: 60px;
    height: 48px;
    display: block;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	z-index:99999;
}

a#return-to-top:hover {
opacity:0.8;
}



a#return-to-top .icon-chevron-up{
    display: table;
height: 100%;
width: 100%;
}

a#return-to-top .icon-chevron-up {
    display: table;
height: 100%;
width: 100%;
}

a#return-to-top .icon-chevron-up > i{
display: table-cell;
vertical-align: middle;
text-align: center;
}

#return-to-top img {
   width: 59%;
	transform: rotate(-90deg);
	margin: 6px 0 0 12px;
}

.bgImage > img{
    max-width: 100%;
    height: auto;
}

.ce_gridList .slides li > img{
    opacity: 0;
    width: auto;
    max-width: 100%;
}

.ce_gridList .flexslider .slides > li:first-of-type{
    display: block;
}

.video_holder {
  position: relative;
background: black;
  overflow: hidden;
}

.ce_gridList video{

  width: 100%;
  height: auto;
}

/*Tciker*/
.ce_ticker{
    padding: 1rem 2rem 0.5rem;
    box-sizing: border-box;
}

#ticker {
    width: 100%;
    list-style: none;
    height: 1.85em;
    overflow: hidden;
    margin: 0;
}

#ticker > li {
    width: 100%;
    text-align: center;
    font-weight: bold;
}



/*Searchmodal*/
.openBtn {
    padding: 0;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    margin-left: 2rem;
}

.openBtn img{
    max-width: 100%;
    height: auto;
}

.openBtn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.openBtn:hover {
 opacity: 0.8;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}


.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}


[type="search"] {
width: 100%;
}


.mod_search form {
    display: table;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.mod_search form > .formbody{
   display: table-row;  
}

.mod_search form > .formbody > *{
   display: table-cell;
    vertical-align: middle;
}


.mod_search form .widget-text {
    background: white;
    width: calc(100% - 200px);
}


.mod_search form .widget-submit {
    width: 200px;
    border: 2px solid gray;
    background: gray;
}


.mod_search form .widget-submit > * {
    width: 100%;
    background: transparent;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
}
 .mod_search form [type="submit"] {
    padding: 0;
    margin: 0;
    line-height: 1;

}


.mod_search form .widget.widget-text input{
   background: white;
    padding: 10px 20px;
}

/*Linked Headline*/
/*headlinelink*/



.ce_headlineLink > .inside {
    display: table;
    margin: 0 auto;
}

.ce_headlineLink .h2 {
    font-size: 56px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ce_headlineLink .subheadline{
    font-size: 28px; 
}

.ce_headlineLink .headlineholder {
    padding-left: 3rem;
}

.ce_headlineLink .icon {
width: 100px;
height: 100px;
}


/*HeroImage*/
.ce_heroImage{
   position: relative;
}

.ce_heroImage .caption{
       position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.ce_heroImage .caption > .inside{
    display: table;
    height: 100%;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
    box-sizing: border-box;
}

.noMargBottom{
    margin: 0;
}

.captext{
    text-align: center;
}

.capholder h2{
    font-size: 48px;
    line-height: 1;
}

.capholder .linkText {
    display: table;
    margin: 0 auto;
        margin-top: 0px;
    background: var(--orange);
    line-height: 1;
    padding: 10px 2rem;
    margin-top: 2rem;
}

.footertop .row > *{
    vertical-align: middle;
}

.socialholder {
    float: right;
    display: table;
}

.socialcell .item {
    float: left;
    margin-left: 20px;
    width: 40px;
}

.socialcell img {
    max-width: 100%;
    opacity: 0.8;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
}

/*wow*/

.wow{
    visibility: hidden;
}

.logowhite {
    margin-bottom: 2rem;
}


.mod_logo {
    width: 180px;
}

.mod_logo img {
    max-width: 100%;
    height: auto;
}

.footertop .row > * {
    vertical-align: top;
}


.social {
    display: table;
    float: right;
}

.social > * {
    float: left;
    margin-right: 20px;
}

.social span {
    display: block;
}

.socialIcon img {
    max-height: 100%;
}

.social img {
    height: 25px;
    width: auto;
}

.headertopholder {
    display: table;
    width: 100%;
    text-align: center;
    letter-spacing: 0.03rem;
    line-height: 1;
}

.headertopholder, .footertop, .footerbottom {
    padding: 20px 0;
    font-weight: 400;
    font-size: 15px;
}

.footertop{
    background: gray;

}

.footerbottom,.headertop{
    background: black;
}

.footertop, .footerbottom, .headertop{
      color: white;  
}

.social > * > span {
    height: 100%;
    line-height: 0;
}

.map {
    height: 450px;
}


#header .row > * > span.icon {
    height: 0.8rem;
    margin-right: 5px;
}

#header .row > * > span {
    display: inline-block;
    vertical-align: middle;
}

#header .row > * > span.icon img {
    height: 100%;
    width: auto;
}

#header .mod_navigation > ul > li {
    float: left;
    margin-left: 2rem;
}

.navigation > * {
    float: right;
    width: auto;
}

header .row > *{
    vertical-align: middle;
}

body .sf-menu a, body .sf-menu strong {
    border: none;
    padding: .75em 1em;
        padding-right: 1em;
    color: inherit;
    display: block;
}

body .sf-menu li {
    background: transparent !important;
    white-space: nowrap;
    *white-space: normal;
    -webkit-transition: background .2s;
    transition: background .2s;
}

#header .mod_navigation .sf-menu ul a, #header .mod_navigation .sf-menu ul strong{
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

#header .mod_navigation .sf-menu ul strong{
    display: block;
padding: .75em 1em;
    padding-right: 1em;
padding-right: 1em;
}

#header .mod_navigation .sf-menu ul a:hover, #header .mod_navigation .sf-menu ul strong:hover, #header .mod_navigation .sf-menu ul strong{
    background: whiteSmoke;
}

body .sf-menu ul {
    box-shadow: none;
    background: white;
}

body .sf-arrows .sf-with-ul:after{
    border-top-color: var(--blue) !important;
}

body .sf-menu {
    float: none;
    margin-bottom: 0;
}

header .mod_navigation.block{
    overflow: visible;
}

body .sf-menu a {
    color: inherit;
}


.pageimage {
    position: relative;
    background: black;
}

#herosection .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

#herosection .caption *, #herosection .bgImage *, #herosection .flex-control-nav {
    height: auto;
}
#herosection .caption .inside > div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
        padding-right: 2rem;
        padding-left: 2rem;
    color: white;
    box-sizing: border-box;
}

#herosection .caption .inside > div {
    color: white;
}

#herosection h1 {
    font-size: 40px;
}

#herosection .row > *{
    vertical-align: bottom;
}

.linkText {
    display: table;
    margin-top: 2rem;
}

.linkText a {
    display: block;
    border: 1px solid rgba(255,255,255,0.6);
    line-height: 1;
    padding: 10px 40px;
}

/*paddingsetup*/

.noPadBottom, #main .mod_article > .block.noPadBottom{
    padding-bottom: 0;
}

.noPadTop, #main .mod_article > .block.noPadTop{
    padding-top: 0;
}


.noPadBottom, #main .mod_article > .block.noPadBottom{
    padding-bottom: 0;
}

.padTopSmall, #main .mod_article > .block.padTopSmall{
    padding-top: 2rem;
}

.padBottomSmall, #main .mod_article > .block.padBottomSmall{
    padding-bottom: 2rem;
}

/*gridlist varinate*/
.twocol.ce_gridList{
    
}


.twocol.ce_gridList .teasergrid > div > div{
    display: table;
    margin: 0 auto;
    padding-right: 2rem;
}

.twocol.ce_gridList .teasergrid > div > div > .inside{
    display: table-row;
}

.twocol.ce_gridList .teasergrid > div > div > .inside > *{
    display: table-cell;
    vertical-align: middle;
}



.twocol.ce_gridList .teasergrid > div > div > .inside > .text{
    text-align: left;
}

.twocol.ce_gridList .teasergrid > div > div > .inside > .image_container{
    padding-right: 2rem;
}

.center.twocol.ce_gridList .teasergrid > div > div {
    margin: 0 auto;
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.center.twocol.ce_gridList .teasergrid > div {
    margin: 0 -2rem 0 0;
}


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

/*kachelelement overlap*/
.mediaholder{
    position: relative;
}


.ce_kachelelement .mediaholder > .bgImage{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.ce_headline > ::after {
    content: '';
    display: block;
    max-width: 50px;
    margin: 2rem auto 0;
    height: 3px;
    width: 100%;
    background: #333;
}

.ce_kachelelement .overlapElement > .inside{
    padding: 0;
}

.ce_kachelelement .overlapElement.notfloat_left > .inside .holder {
    padding: 2rem;
    margin-left: -4rem;
    margin-right: 4rem;
    /*width: calc(100% + 4rem);*/
    background: #d6e8ef;
     position: relative;
    z-index: 1;
}

.ce_kachelelement .overlapElement.notfloat_right > .inside .holder {
    padding: 2rem;
    margin-right: -4rem;
  /*  width: calc(100% + 4rem);*/
 margin-left: 4rem;
    position: relative;
    z-index: 1;
}


.mod_article .ce_kachelelement .overlapElement > .inside .holder{
     background: white;
}

.mod_article[style*="background: #d6e8ef"] .ce_kachelelement .overlapElement > .inside .holder{
    background: #d6e8ef;
}


.ce_kachelelement .overlap .mediaholder .bgImage{
    padding: 4rem 0;
    margin-top: -4rem;
}

.table.overlap {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

#header .link .title, .ce_text a, #footer a, .links li span, .readmore{
	transition: all 0.2s;
}
#header .link .title:hover, .ce_text a:hover, #footer a:hover, .links li span:hover, .readmore:hover, .ce_hyperlink a:hover {
	opacity:0.75;
}

.floating_right{
    float:right;
}

.floating_left{
    float:left;
}

.textalign_right{
    text-align: right;
}

.textalign_left{
    text-align: left;
}

.textalign_center{
    text-align: center;
}

.mod_navigation > ul{
    display: table;
}

.image_container a{
    display: block;
}

#container{
    max-width: 1280px;
    margin: 0 auto;
}


.dk-select, .dk-select *, .dk-select *:before, .dk-select *:after, .dk-select-multi, .dk-select-multi *, .dk-select-multi *:before, .dk-select-multi *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.dk-select, .dk-select-multi {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5em;
  width: 200px;
  cursor: pointer; 
  height:45px;
  }


  
  
  .dk-selected {
    background-color: white;
    border: 1px solid #cccccc;
    overflow: hidden;
    padding: 5px 20px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
  .dk-selected:before, .dk-selected:after {
    content: '';
    display: block;
    position: absolute;
    right: 0; }
  .dk-selected:before {
    top: 50%;
    border: solid transparent;
    border-width: 0.25em 0.25em 0;
    border-top-color: #CCCCCC;
    margin: -0.125em 0.5em 0 0; }
  .dk-selected:after {
    top: 0;
    height: 100%;
    border-left: 1px solid #CCCCCC;
    margin: 0 1.5em 0 0; }

.dk-selected-disabled {
  color: #BBBBBB; }

.dk-select .dk-select-options {
  position: absolute;
  display: none;
  left: 0; }

.dk-select-open-up .dk-select-options {

  margin-bottom: -1px;
  bottom: 100%; }

.dk-select-open-down .dk-select-options {
 
  margin-top: -1px;
  top: 100%; }

.dk-select-multi .dk-select-options {
  max-height: 10em; }

.dk-select-options {
  width: 100%;
  z-index: 100;
  background-color: white;
  border: 1px solid #CCCCCC;

  overflow-x: hidden;
  overflow-y: auto;
  max-height: 10.5em;
  list-style: none;
  padding:0;
  margin: 0; }

.dk-option-selected {
  background-color: rgba(77, 89, 91, 1);;
  color: #fff; }

.dk-select-options-highlight .dk-option-selected {
  background-color: transparent;
  color: inherit; }

.dk-option {
  padding: 0 0.5em; }

.dk-select-options .dk-option-highlight {
  background-color: rgba(77, 89, 91, 1);;
  color: #fff; }

.dk-select-options .dk-option-disabled {
  color: #BBBBBB;
  background-color: transparent; }

.dk-optgroup {
  border: solid #CCCCCC;
  border-width: 1px 0;
  padding: 0.25em 0;
  margin-top: 0.25em; }
  .dk-optgroup + .dk-option {
    margin-top: 0.25em; }
  .dk-optgroup + .dk-optgroup {
    border-top-width: 0;
    margin-top: 0; }
  .dk-optgroup:nth-child(2) {
    padding-top: 0;
    border-top: none;
    margin-top: 0; }
  .dk-optgroup:last-child {
    border-bottom-width: 0;
    margin-bottom: 0;
    padding-bottom: 0; }

.dk-optgroup-label {
  padding: 0 0.5em 0.25em;
  font-weight: bold;
  width: 100%; }

.dk-optgroup-options {
  list-style: none;
  padding-left: 0; }
  .dk-optgroup-options li {
    padding-left: 1.2em; }

.dk-select-open-up .dk-selected {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color: rgba(77, 89, 91, 1);; }

.dk-select-open-down .dk-selected {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: rgba(77, 89, 91, 1);; }

.dk-select-open-up .dk-selected:before, .dk-select-open-down .dk-selected:before {
  border-width: 0 0.25em 0.25em;
  border-bottom-color: rgba(77, 89, 91, 1);; }

.dk-select-open-up .dk-selected:after, .dk-select-open-down .dk-selected:after {
  border-left-color: rgba(77, 89, 91, 1);; }

.dk-select-open-up .dk-select-options, .dk-select-open-down .dk-select-options, .dk-select-multi:focus .dk-select-options {
  display: block;
  border-color: rgba(77, 89, 91, 1);; }

.dk-select-multi:hover, .dk-select-multi:focus {
  outline: none; }

.dk-selected:hover, .dk-selected:focus {
  outline: none;
  border-color: rgba(77, 89, 91, 1);; }
  .dk-selected:hover:before, .dk-selected:focus:before {
    border-top-color: rgba(77, 89, 91, 1);; }
  .dk-selected:hover:after, .dk-selected:focus:after {
    border-left-color: rgba(77, 89, 91, 1);; }

.dk-select-disabled {
  opacity: 0.6;
  color: #BBBBBB;
  cursor: not-allowed; }
  .dk-select-disabled .dk-selected:hover, .dk-select-disabled .dk-selected:focus {
    border-color: inherit; }
    .dk-select-disabled .dk-selected:hover:before, .dk-select-disabled .dk-selected:focus:before {
      border-top-color: inherit; }
    .dk-select-disabled .dk-selected:hover:after, .dk-select-disabled .dk-selected:focus:after {
      border-left-color: inherit; }

select[data-dkcacheid] {
  display: none; }

/*Basics*/

:root {
    --sandHell: #EFE9DC;
    --sandDunkel:#D2C7B3;
    --darkBlue: #1B2366;
    --pastellBlue: #1B2366;
     --blue: #6592CB;
    --red:#772534;
    --maxWidth: 1280px;
    --orange: #E49820;
    --gruen:#599835;
    --lightgruen: #CFD5B8;
   
}

/* roboto-slab-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: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-regular.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-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: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-500.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-600 - 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: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-600.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-700 - 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: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-700.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-800 - 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: 'Roboto Slab';
  font-style: normal;
  font-weight: 800;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-800.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* roboto-slab-900 - 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: 'Roboto Slab';
  font-style: normal;
  font-weight: 900;
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/robotoslab/roboto-slab-v25-latin-900.svg#RobotoSlab') format('svg'); /* Legacy iOS */
}

/* corinthia-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: 'Corinthia';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-regular.svg#Corinthia') format('svg'); /* Legacy iOS */
}

/* corinthia-700 - 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: 'Corinthia';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/corinthia/corinthia-v11-latin-700.svg#Corinthia') format('svg'); /* Legacy iOS */
}

/* roboto-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: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-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: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - 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: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-900 - 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: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/files/theme/layout/fonts/roboto/roboto-v30-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}


*{
    box-sizing: border-box;
}
body{
    background: var(--sandHell);
    color: var(--darkBlue);
     font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
}
h1, h2, h3, h4, h5, h6, header .mod_customnav,header .mod_navigation,.caption,footer .footer_center, footer .footer_right {
  font-family: 'Roboto Slab';
font-weight: 600;
}
header{
    font-weight: 600;
    font-size: 17px;
}

#header .mod_navigation > ul > li.first{
    margin-left: 0;
}

#container{
    max-width: none;
    margin: 0;
}

.headertop{
    color: inherit;
    background: transparent;
    text-align: left;
    font-size: 16px;
    
}

.headline > *{
    margin: 0;
}

.headerbottom {
  padding: 30px 0 20px;
}

header:not(.clone) .headerright{
    position: relative;
}

header:not(.clone) .headerright .mod_logo figure{
    position: absolute;
    z-index: 999;
    right: 0;
}

.mod_customnav ul{
    display: table;
    
}

header .mod_customnav ul > li {
  display: inline-block;
  margin: 0 2rem;
    vertical-align: middle;
    font-size: 16px;
}

header .mod_customnav ul > li:first-of-type {
    margin-left: 0;
}

header .mod_customnav ul > li:last-of-type {
    margin-right:0;
}

footer{
    background: var(--sandDunkel);
}

header > .inside, footer >.inside, .mod_article > .block, .maxwidth, .maxWidth{
    max-width: var(--maxWidth);
    margin: 0 auto;
    padding: 0 2rem;
}

header .row > *{
    vertical-align: top;
}

header .mod_logo{
    float: right;
}

.headertop .mod_customnav ul > li.first > a, .headertop .mod_customnav ul > li.first > strong{
    background: var(--darkBlue);
    display: block;
    color: white;
    padding: 10px 15px 10px 10px;
    line-height: 1;
    border-radius: 0 0 20px 20px;
}

.headertop .mod_customnav ul > li.first > a::before, .headertop .mod_customnav ul > li.first > strong::before {
  content: '';
  height: 25px;
  width: 25px;
  display: inline-block;
  background: url(/files/theme/layout/images/icons/allgemein/white/info.svg) no-repeat scroll 0 0 transparent;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  line-height: 0;
}

.headertop .mod_customnav ul > li.first > a > span{
      display: inline-block;
      vertical-align: middle;
}
#herosection .row > *{
    vertical-align: middle;
}


img{
    max-width: 100%;
    height: auto;
}

.teasergrid > div, #wanderlist .teasergrid > ul{
    margin: 0 -10px -20px;
}


#wanderlist .mod_shoplist .teasergrid > div,#wanderlist .mod_shoplist .teasergrid > div > *,#wanderlist .teasergrid > ul{
    margin: 0;
}


.mod_shoplist .teasergrid > div > * .holder{
    position: relative;
}

.mod_shoplist .imagecell{
    line-height: 0;
    position: relative;
}

.mod_shoplist .imagecell .figurecaption{
    position: absolute;
bottom: 0;
left: 0;
padding: 20px;
line-height: 20px;
color: white;
    font-weight: 600;
}

.mod_shoplist .teasergrid > div > * .holder .caption{
    position: absolute;
    width: 100%;
    height: 0;
    opacity: 0;
    left: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    font-size: 18px;
    transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
        
}

.mod_shoplist .teasergrid > div > *:hover .holder .caption{
       opacity: 1;
    height: 100%;
}

.mod_shoplist .teasergrid > div > * .holder .caption .inner{
    padding: 20px;
    text-align: center;
     font-weight: 600;
}

.mod_shoplist .teasergrid > div > * .holder .caption .title_claim{
    margin-bottom: 30px;
}

.facts > .inside {
    display: table;
    width: 100%;
}

.facts > .inside > span{
    float: left;
    width: 50%;
    text-align: left;
    margin-bottom: 0.5rem;
   
}

.facts > .inside > span:before{
    content:'';
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: 10px;
    background-size: contain !important;
    vertical-align: middle;
}

.facts > .inside > span.saison:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon%20ionic-ios-partly-sunny.svg) no-repeat 50% 50% transparent;
}

.facts > .inside > span.profil:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon_simple-codeclimate.svg) no-repeat 50% 50% transparent;
}

.facts > .inside > span.dauer:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon_material-watch-later.svg) no-repeat 50% 50% transparent;
}


.facts > .inside > span.strecke:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon_material-linear-scale.svg) no-repeat 50% 50% transparent;
}

.ce_heroImage .caption .inside{
    color: white;
}

.ce_heroImage .caption .headlinecontainer{
    margin-bottom: 20px;
}

.ce_heroImage .caption .headlinecontainer > *{
   font-weight: 400;
}

.ce_heroImage .caption > .inside{
    padding: 0;
}

.ce_heroImage .caption .text {
 
  font-weight: 600;
  font-size: 36px;

  line-height: 1.2;
}
.ce_heroImage .caption .inside.align_right > div {
  box-sizing: border-box;
  max-width: 1280px;
  padding: 0 2rem 4rem;
  margin: 0 auto;
  text-align: right;
  display: table;
  width: 100%;
}

.ce_heroImage .caption .inside.align_right > div > div{
    max-width: 650px;
}

.ce_heroImage .caption .inside.align_right > div > div {
  max-width: 650px;
  float: right;
}

.align_right{
    text-align: right;
}


.align_center{
    text-align: center;
}

.align_left{
    text-align: left;
}

.v_bottom{
    vertical-align: bottom
}

.v_middle{
    vertical-align: middle
}

.v_top{
    vertical-align: top
}

.preheadline,.preHeadline,blockquote {
      font-family: 'Corinthia';
}

.preheadline, .preHeadline {
  font-size: 56px;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 10px;
  line-height: 0.8;
}

.ce_textBanner .headline{
    margin-bottom: 3rem;
}

blockquote {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.author{
    margin: 0 auto 0;
    display: table;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
}

#main .mod_article > .block.mod_metamodel_list {
  padding: 6rem 2rem;
}
#main .mod_article > .block.wegebeschaffenheit{
padding-top:0;
}

#main .mod_article > .ce_zitat{
    max-width: 860px;
}

blockquote::after {
  content: '';
  background: url(/files/theme/layout/images/icons/zitat.svg) no-repeat scroll 0 0 transparent;
  width: 80px;
  height: 37px;
  display: block;
  margin: 10px auto;
}

h2{
    font-size: 46px;
    line-height: 1.2;
}

.bgColored.colorwhite{
    color: white;
}


#main .mod_article.bgColored > .block{
    padding: 6rem 2rem 8rem;
}



.ce_heroImage .preHeadline,.ce_heroImage .preheadline{
    color: white;
}


#wanderlist .mod_shoplist .teasergrid > .itemsperRow_3 > *{
    width: calc( 100% / 3);
    overflow: hidden;
}

.linkholder .readmore.empty{
      background: url(/files/theme/layout/images/icons/readmore.svg) no-repeat scroll 0 0 transparent;
  width: 80px;
  height: 80px;
    display: block;
    margin: 0 auto;
    background-size: contain;
    margin-top: 2rem;
}

#herosection .caption .textbox {
  font-size: 32px;
  line-height: 1.4;
}

.safari #herosection .caption,.mod_shoplist .teasergrid > div > * .holder .caption{
    display: block;
}

.safari #herosection .caption > .row,.mod_shoplist .teasergrid > div > * .holder .caption > .row{
    display: table;
    height: 100%;
    width: 100%;
}

#herosection .caption .inside > div {
    padding: 0;
}

p img{
    margin-bottom: 2rem;
}


#header .mod_navigation > ul > li {

    float: left;
    margin-left: 40px;
    letter-spacing: 0.06rem;

}

.footer_left > .inside{
    max-width: 380px;
   
}

footer .table{
    table-layout: fixed;
    width: 100%;
     font-size: 15px;
    line-height: 1.4;
}

footer .row > *{
    vertical-align: bottom;
}
footer > .inside{
    padding: 4rem 2rem;
}

.footer_left .image_container{
    margin-bottom: 20px;
    max-width: 250px;
}

.footer_center{
    text-align: center;
}


.footer_right{
    text-align: right;
}

footer .mod_customnav > ul{
    float: right;
}

footer .mod_customnav > ul > li{
    float: none;
    display: block;
    margin: 0 0 5px;
    
}

footer .mod_customnav > ul > li:last-of-type{
    margin: 0;
}

footer .sociallist{
    display: table;
    float: right;
    margin-top: 4rem;
}

footer .sociallist > li{
    float:left;
    margin-right: 20px;
    line-height: 0;
}

footer .sociallist > li:last-of-type{
    margin-right: 0;
}

footer .claim{
    color:black;
}

.mod_shoplist .imagecell{
    overflow: hidden;
    height: 250px;
}

.mod_shoplist .imagecell img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mod_shoplist .imagecell:before {
  content: '';
  position: absolute;
  height: 80%;
  width: 100%;
  background: url(/files/theme/layout/images/grafiken/w.svg) no-repeat scroll 0 0 transparent;
  left: -10px;
  top: -10px;
    background-size: contain;
}

#herosection .mod_customnav ul{
    display: table;
    margin: 0 auto;
}

#herosection .mod_customnav ul > li{
    color: white;
    float: left;
    padding: 10px 20px;
    background: gray;   
      font-family: 'Roboto Slab';
font-weight: 600;
}

#herosection .mod_customnav ul > li > * > span{
    display: inline-block;
    vertical-align: middle;
}

#herosection .mod_customnav ul > li > a:before{
    content: '';
    display: inline-block;
     vertical-align: middle;
    height: 63px;
    width: 63px;
    margin-right: 10px;
    background-size: contain !important;
}

#herosection .mod_customnav ul > li.darkblue{
    background: var(--darkBlue);
}

#herosection .mod_customnav ul > li.darkblue a:before{
    background: url(/files/theme/layout/images/grafiken/premiumwanderwege.svg) no-repeat scroll 0 0 transparent;
}

#herosection .mod_customnav ul > li.blue{
    background: var(--blue);
}

#herosection .mod_customnav ul > li.blue a:before{
    background: url(/files/theme/layout/images/grafiken/spazierwanderwege.svg) no-repeat scroll 0 0 transparent;
}

#herosection .mod_customnav ul > li.red{
    background: var(--red);
}


#herosection .mod_customnav ul > li.red a:before{
    background: url(/files/theme/layout/images/grafiken/leichte.svg) no-repeat scroll 0 0 transparent;
}


.mod_pageImage > .inside > div:first-of-type{
    line-height: 0;
}


.mod_pageimage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#herosection .mod_customnav{
    margin-top: -3rem;
    position: relative;
		z-index:10;
}
#herosection .mod_customnav a:hover{
opacity:0.7;
}

b, strong {
  font-weight: 600;
}

header li:hover > a, header li.active strong,header li.trail a{
    color: var(--gruen);
}

header li.blue:hover > a, header li.blue.active strong,header li.blue.trail a{
    color: var(--blue);
}


header li.red:hover > a, header li.red.active strong,header li.red.trail a{
    color: var(--red);
}


.red .ce_kachelelement .textholder{
    background: var(--red);
    color: white;
}

.blue .ce_kachelelement .textholder{
    background: var(--blue);
}


.darkblue .ce_kachelelement .textholder{
    background: var(--darkBlue);
}


.fullwidth .ce_kachelelement .textholder {
    background: var(--darkBlue);
    color: white;
}

.fullwidth .ce_image img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#main .mod_article > #reader.block.mod_metamodel_list {
  padding: 0;
  max-width: none;
  margin: 0;
}


.description .desc{
    margin-bottom: 2rem;
    padding-right: 2rem;
}



#mainsection .facts .top{
    padding: 20px;
    background: rgba(255,255,255,0.8);
}

#mainsection .facts .bottom{
        padding: 20px;
    background: var(--darkBlue);
    color: white;
    font-weight: 600;
}


.parent_leichte-wander-welt #mainsection .facts .bottom,.parent_leichte-wander-welt #mainsection #besonderheiten.fullwidth .ce_kachelelement .textholder, .parent_leichte-wander-welt #mainsection #downloads.fullwidth .ce_kachelelement .textholder{
    background: var(--red);
}


.parent_spazierwanderwege #mainsection .facts .bottom,.parent_spazierwanderwege #mainsection #besonderheiten.fullwidth .ce_kachelelement .textholder, .parent_spazierwanderwege #mainsection #downloads.fullwidth .ce_kachelelement .textholder{
    background: var(--blue);
}




#mainsection .facts > .inside {
  top: -16rem;
  display: block;
  position: relative;
  z-index: 99999;
    width: 350px;
    margin-bottom: -16rem;
}

#mainsection .block:first-of-type{
    overflow: visible;
}

#mainsection .facts .headlinecontainer h4{
    display: inline-block;
  vertical-align: middle;
	width:100%;
}

#mainsection .facts .headlinecontainer .logo {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
  float:right;
}
/*.spazierwanderwege-details #mainsection .facts .headlinecontainer .logo{
  padding-left: 8px;
  width:92px;
}*/

#mainsection .facts .anchorlist li >a:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 37px;
    height: 37px;
     background: url(/files/theme/layout/images/logo/arrow.svg) no-repeat scroll 0 0 transparent;
    margin-right: 5px;
   
}


#mainsection .facts .bottom li{
    margin-bottom: 10px;
}

#mainsection .facts .bottom li:before{
    content:'';
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: 15px;
    background-size: contain !important;
    vertical-align: middle;
}

#mainsection .facts .bottom li.saison:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon%20ionic-ios-partly-sunny.svg) no-repeat 50% 50% transparent;
}

#mainsection .facts .bottom li.profil:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon_simple-codeclimate.svg) no-repeat 50% 50% transparent;
}

#mainsection .facts .bottom li.zeit:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon_material-watch-later.svg) no-repeat 50% 50% transparent;
}


#mainsection .facts .bottom li.strecke:before{
    background: url(/files/theme/layout/images/icons/infografiken/Icon_material-linear-scale.svg) no-repeat 50% 50% transparent;
}

#mainsection .facts .headlinecontainer{
    margin-bottom: 10px;
}

#mainsection #streckenbeschreibung.fullwidth .ce_kachelelement .textholder{
    background: var(--sandDunkel);
    color: inherit;
    
}

.ce_kachelelement .textholder{
   vertical-align: middle; 
}

#mainsection #besonderheiten.fullwidth .ce_kachelelement .textholder,#mainsection #downloads.fullwidth .ce_kachelelement .textholder{
    background: var(--pastellBlue);
}

#mainsection #pflanzenwelt.fullwidth .ce_kachelelement .textholder{
    background: var(--lightgruen);
     color: inherit;
}

#mainsection .ce_kachelelement{
    font-size: 16px;
}

#mainsection .ce_kachelelement .bgImage > img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#mainsection .ce_kachelelement  .row > .mediaholder{
    width: 40%;
    line-height: 0;
}

#mainsection .ce_kachelelement .mediaholder iframe{
    width: 100%;
}


#mainsection .ce_zitat .rounded {
  border-radius: 50%;
  overflow: hidden;
  width: 227px;
  height: 227px;
  margin: 0 auto;
    margin-bottom: 0px;
  margin-bottom: 2rem;
}


.gastro_item{
    background: white;
    padding: 20px;
    text-align: center;
  color: var(--darkBlue);
}

#gastro, body#top .slicknav_nav{
    background: var(--darkBlue);
    color: white;
}

.slicknav_nav ul li.blue.trail > a,.slicknav_nav ul li.blue > a:hover,.slicknav_nav ul li.blue > strong{
    background: var(--blue);
}

.slicknav_nav ul li.red.trail > a,.slicknav_nav ul li.red > a:hover,.slicknav_nav ul li.red > strong{
    background: var(--red);
}

.slicknav_nav ul li.green.trail > a,.slicknav_nav ul li.green > a:hover,.slicknav_nav ul li.green > strong{
    background: var(--green);
}


.slicknav_nav ul li.darkblue.trail > a,.slicknav_nav ul li.darkblue > a:hover,.slicknav_nav ul li.darkblue > strong{
    background: var(--darkblue);
}

#gastro .teasergrid{
    padding-top: 6rem;
}

.gastro_item .icon {
  width: 120px;
  height: 120px;
  background: white;
  margin: -4rem auto 0;
  border-radius: 50%;
  overflow: hidden;
}

.gastro_item .name{
    font-weight: 600;
    margin-bottom: 20px;
}

#reader, #reader .author{
    font-size: 16px;
}

#reader .author{
    font-weight: 400;
}

.ce_anfahrt .table{
    table-layout: fixed;
    margin: 0 -2rem;
}

.ce_anfahrt .row > *{
    width: calc((100% - (4* 2rem)) / 2);
    padding: 0 2rem;
}

#gastrouebersicht .gastro_item.full{
    text-align: left;
}

#gastrouebersicht .gastro_item.full .icon{
   margin: -3rem 0 0;
    text-align: center;
    position: relative;
}

#gastrouebersicht .image_container{
    margin: -20px;
    margin-bottom: -2rem;
    background: gray;
    line-height: 0;
    position: relative;
    z-index: 0;
}


#gastrouebersicht .gastro_item.full .image_container{
   
}

#main .mod_article > .block#gastroreader + .mod_metamodel_list .ce_gastro.block{
    padding: 3rem 0 0;
}

#gastroreader

#main .mod_article > .block{}


#main .mod_article > .block#gastroreader + .mod_metamodel_list{
    padding-top: 0;
}


#gastrouebersicht .itemsperRow_3 > .gastro_item.full {
  width: 100%;
  margin-bottom: 8rem;
  float: none;
    padding: 0;
}

#gastrouebersicht .itemsperRow_3 .textholder{
    padding: 2rem;
}

.linkset,.layout_latest .linkholder{
    margin-top: 2rem;
}

.linkset .links > li{
    display: block;
    margin-bottom: 20px;
}

.linkset .links > li a:before,.ce_gastro .linkholder .readmore > span:before,.layout_latest .readmore > span:before {
    content:'';
  background: url(/files/theme/layout/images/icons/readmore.svg) no-repeat scroll 0 0 transparent;
    background-size: auto;
  width: 80px;
  height: 80px;
  display: inline-block;
    vertical-align: middle;

   
  background-size: contain;
  
}

.linkset .links > li a > span,.layout_latest .readmore > span{
     display: inline-block;
    vertical-align: middle;
}

.wegeinfos{
    margin-top: 2rem;
}

.wegeinfos .inside{
  padding: 2rem;
  border: 5px dashed white;
}

.wegeinfos .inside > div{
margin-bottom: 10px;    
}

.wegeinfos .inside > div:last-of-type{
    margin-bottom: 0;
}

.wegeinfos .headline{
display: table;
  font-size: 12px;
  background: var(--sandHell);
  padding: 10px;
  margin-bottom: -26px;
  position: relative;
  z-index: 1;
  margin-left: calc(2rem - 5px);
}

/*Progressbar*/
#progressbar {	
width:100%;	
height:30px;	
position:relative;
background:#fff;	
overflow:hidden;
}

#count {	
width:100%;	
height:100%;	
position:absolute;	
left:0;	
top:0;	
padding:0 16px;	
line-height:30px;	
z-index:9;	
color: #fff;	
text-transform:uppercase;	
letter-spacing:1px;	
font-weight:700;
}

#bar {	
width:0;	
height:30px;	
position:absolute;	
left:0;	
top:0;	
z-index:999;
}


.valueholder{
    margin-bottom: 2rem;
    display: table;
    width: 100%;
}

.valueholder > div {
    width: calc((100% - 4rem) / 2);
    float: left;
    margin-left: 4rem;
    margin-bottom:2rem;
}

.valueholder > div:first-of-type,.valueholder > div:nth-child(2n + 1) {
    margin-left: 0;
}

.wegebeschaffenheit .headlinecontainer{
    margin-bottom: 4rem;
}

.valueholder #count{
   
}

.valueholder .naturnah #bar{
background:#599835;	
}

.valueholder .asphalt #bar{
background:#707070;	
}

.valueholder .feinschotter #bar{
background:#D0C5AE;	
}


.valueholder .sonstiges #bar{
background:#375881;	
}


.valueholder #bar{
    
   
}

.valueholder #bar .value{
    position: absolute;
     
    font-family: 'Roboto Slab';
  font-weight: 600;
    padding: 0 2rem;
}

.mod_shoplist.warnungen{
    width: calc(100% - (350px + 2rem));
}

span.mandatory{
    display: inline-block;
}

.ce_form label {
  display: none;
  font-size: 18px;
  margin-bottom: 10px;
}
.ce_form .altcha-label label {
display:block;
}
body .altcha-checkbox .icheckbox_minimal {
margin:-4px 0 0 0;
}

.ce_form .widget.widget-text input,.ce_form .widget.widget-textarea textarea {
  padding: 10px 15px;
  width: 100%;
  background: #f3f4f6;
  border: 0;
  box-sizing: border-box;
  background: white;
  border: 1px solid var(--sandDunkel);
  box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);
    font-size: 16px;
}

.ce_form .widget.widget-textarea textarea {
    margin-top: 20px;
}

.noPadBottom, #main .mod_article.bgColored > .block.noPadBottom{
 padding-bottom: 0;   
}

.download_item {
  float: left;
  width: calc((100% - (4 * 10px)) / 2);
  margin: 0 10px 20px;
  background: white;
  color: var(--darkBlue);
  line-height: 1.2;
  padding: 20px;
  font-weight: 600;
 font-family: 'Roboto Slab';
    position: relative;
}

.download_item:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    width: 40px;
    background: url(/files/theme/layout/images/grafiken/icon_download.svg) no-repeat scroll 0 0 transparent;
    background-size: contain;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    margin-top: -20px;
}


.download_item.external:before{

    background: url(/files/theme/layout/images/icons/icon_external_link.svg) no-repeat scroll 0 0 transparent;
    background-size: contain;
}

.download_item.komoot:before{

    background: url(/files/theme/layout/images/icons/komoot.png) no-repeat scroll 0 0 transparent;
    background-size: contain;

}

.download_item.outdooractive:before{

    background: url(/files/theme/layout/images/icons/outdooractive.png) no-repeat scroll 0 0 transparent;
    background-size: contain;

}


body .flex-direction-nav a::before {
    display: none;
}

.ce_gastro .teasergrid > .itemsperRow_3 > *{
    margin-bottom: 4rem;
}

body .flex-direction-nav .flex-prev {
  left: 0 !important;
  text-align: left;
    opacity: 1 !important;
}

body .flex-direction-nav .flex-next {
  right: 0 !important;
     opacity: 1 !important;
  text-align: right;
}

.ce_gastro .teasergrid.featured{
    margin-bottom: 8rem;
}

.featured .gastro_item{
    overflow: visible;
}



body .featured .flex-direction-nav .flex-prev{
    margin-left: -20px;
}

body .featured .flex-direction-nav .flex-next{
    margin-right: -20px;
}

.teasergrid > div.itemsperRow_1,.teasergrid > div.itemsperRow_1 > *{
    margin: 0;
}


.ce_gastro .linkholder{
    vertical-align: bottom;
    text-align: right;
    margin: 0;
    font-family: 'Roboto Slab';
    font-weight: 800;
}


.ce_gastro .linkholder .readmore > span {
  display: table;
  float: right;
}

.ce_gastro .linkholder .readmore > span:before{
    margin-right: 10px;
}

.ce_kachelelement .mediaholder > .bgImage{
    position: relative;
    line-height: 0;
}

.ce_kachelelement .table,.ce_kachelelement .table > .row, .ce_kachelelement .table > .row >*{
    height: 100%;
}

body .slicknav_menu{
    background: var(--sandHell) !important;
}

.ce_zitat .rounded img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download_item a {
  padding-left: 50px;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
}
#herosection .inside .ce_herosection {
width:100%;
}
.mod_pageImage .bgImage picture {
opacity:0;
}
.safari .ce_heroImage .caption.table {
display:block;
}
.safari .ce_heroImage .caption.table .row {
display:table;
height:100%;
width:100%;
}
#herosection h1 {
text-shadow:0 0 8px rgba(0,0,0,0.5);
}

.card{
    background: white;
    padding: 20px;
}

.layout_latest{
    margin-bottom: 20px;
}

.layout_latest.last{
    margin-bottom: 0;
}
 

.layout_latest .mediaholder{
    padding-right: 2rem;
}

.layout_latest .mediaholder *{
    height: 100%;
}


.layout_latest .mediaholder .bgImage img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.safari .layout_latest img{
  object-fit: cover;
    height: auto;
    width: 100%;
} 

.layout_latest .date{
    margin-bottom: 20px;
}

.layout_full .date{
    margin-bottom: 0.5rem;
    line-height: 1;
}

.layout_latest .headlinecontainer{
    margin-bottom: 20px;
}

.layout_full .headlinecontainer{
      margin-bottom: 2rem;
}

.layout_latest h3{
font-size: 26px;
  line-height: 1.4;
}

.layout_latest .textholder{
    font-size: 16px;
}

.layout_latest .linkholder {
  margin-top: 20px;
  font-weight: 600;
}

.pagination{
    display: table;
    width: 100%;
    font-size: 14px;
    margin-top: 2rem;
}

.pagination p,.pagination ul li{
    float: left;
    margin-left: 5px;
    
}

.pagination ul{
    float: right;
}
  
.pagination ul li a, .pagination ul li strong{
    background:  var(--sandDunkel);
    display: block;
    line-height: 1;
    padding: 5px 10px;
    color: white;
}

.pagination ul li strong{
   background: var(--darkBlue); 
}

.pagination ul li.previous,.pagination ul li.next{
    display: none;
}


.layout_full .textholder > .inside {
  padding-top: 0;
  padding-left: 0;
}

a#return-to-top {
  position: fixed;
  bottom: 7rem;
  right: 20px;
  background: var(--pastellBlue);
  color: white;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

p > a,.ce_gastro a{
    text-decoration: underline;
    color:var(--orange);
}

header li.green{
    color: var(--gruen);
}
#main .mod_article > .block#wanderlist {
padding: 0 2rem 6rem 2rem;
}

.einkehren-uebernachten #main .mod_article > .block.mod_metamodel_list{
    padding: 6rem 2rem;
}
.stoererDSW {
position:absolute;
top:10vh;
left: 5vw;
z-index:10;
max-width:360px;
width:25%;
min-width:200px;
}
.fineuploader-item span {
display:inline-block;
}
.widget-fineuploader {
font-size:16px;
line-height:180%;
}
body .dk-select {
font-size: 16px;
}
.dk-selected, .dk-selected:hover, .dk-selected:focus {
border: 1px solid var(--sandDunkel);
box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2);
}
.widget {
color: var(--darkBlue);
}
input, textarea, select {
-webkit-appearance: auto;
}
#altcha_checkbox {
margin-top:-4px;
}
.altcha {
margin-bottom:2rem;
}

.mod_article.scouts > *{
    padding: 4rem 2rem 2rem;
}

.mod_article.scouts > *:last-of-type{
    padding-bottom: 4rem;
}
@media all and (max-width: 1230px){
    header .mod_customnav ul > li {
        margin: 0 1rem;
    }
}

@media all and (max-width: 1180px){
    #header .mod_navigation > ul > li:not(.first){
        margin-left: 20px;
    }  
    
    header .mod_customnav ul > li{
        margin: 0 15px;
    }
    #herosection .mod_customnav ul > li {
        font-size: 18px;
    }
    
    h2{
        font-size: 38px;
    }
    
    .preheadline, .preHeadline,blockquote{
        font-size: 48px;
    }
    
    #main .mod_article > .block {
  padding: 3rem 2rem;
}
    .ce_kachelelement .notfloat_left > .inside {
  padding: 2rem 2rem 2rem 3rem;
}
    
    .ce_kachelelement .notfloat_right > .inside {
  padding: 2rem 3rem 2rem 2rem;
}
    
    header{
        font-size: 16px;
    }
    
    header .mod_customnav ul > li{
        font-size: 14px;
    }
}

@media all and (max-width: 980px){
    header,#herosection .mod_customnav{
        display: none;
    }
    
    .mod_shoplist .teasergrid > div > * .holder .caption {
  font-size: 14px;
        line-height: 1.4;
}
    
    body .slicknav_menu{
        display: block;
    }
}

@media all and (max-width: 980px){
   #mainsection .facts > .inside {
    width: 100%;
    position: relative;
    top: 0;
    margin: 0 0 0;
  }
    .mod_shoplist.warnungen {
width: 100%;
}
    
    #mainsection .ce_kachelelement .row > .mediaholder{
        width: 50%;
    }
    
    #reader .desc, .ce_kachelelement .textholder{
        display: table-header-group
    }
    
    #reader .desc, .ce_kachelelement .mediaholder{
        display: table-header-group
    }
    
    .ce_kachelelement .notfloat_right > .inside {
    padding: 0;
  }
   
   .ce_kachelelement .notfloat_left > .inside {
    padding: 0;
  }
    
     .fullwidth .ce_kachelelement .textholder > .inside{
        padding: 2rem 20px;
    }
    
    #reader .facts {
  display: table-footer-group;
}
    
    #mainsection .facts .top{
        display: none;
    }
    
    #mainsection .facts .bottom{
        margin-top: 3rem;
    }
}

@media all and (max-width: 930px){
    #mainsection .ce_kachelelement .row > .textholder{
         display: table-header-group
    }
    
    #mainsection .ce_kachelelement .row > .mediaholder{
         display: table-footer-group
    }
    
    #main .mod_article.bgColored > .block{
         padding: 2rem 20px;
    }
    
    #main .mod_article.fullwidth > .block, #main .mod_article > .block.fullwidth {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}
    
    .ce_anfahrt .row > *{
        display: block;
        width: 100%;
        padding: 0 2rem;
        margin-bottom: 3rem;
    }
    
    .ce_anfahrt .row > :last-of-type{
        margin: 0;
    }
    
    .ce_kachelelement .table > .row{
        display: table;
        width: 100%;
        height: auto;
    }
    
    .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
  width: calc( (100% - (4 * 10px)) / 2 );
}
    .valueholder > div {
  width: calc((100% - 2rem) / 2);
  float: left;
  margin-left: 2rem;
  margin-bottom: 2rem;
}
}

@media all and (max-width: 860px){
  #main .mod_article > .block,  #main .mod_article.fullwidth > .block {
    padding: 2rem 20px;
  }
    
    #wanderlist .mod_shoplist .teasergrid > .itemsperRow_3 > * {
  width: calc( 100% / 2);
}
    
    footer > .inside {
  padding: 2rem 20px;
}
    
 
    
   .headlinecontainer{
        margin-bottom: 20px;
    }
    .wegebeschaffenheit .headlinecontainer, .textholder .headlinecontainer{
        margin-bottom: 2rem;
    }
    footer .row > *{
        display: block;
        text-align: left;
        float: none;
        margin-bottom: 2rem;
    }
    
    footer .mod_customnav > ul {
  float: none;
}
    
    footer .sociallist {
  display: table;
  float: none;
  margin-top: 2rem;
}
    
    footer .row > :last-of-type{
        margin-bottom: 0;
    }
    
}

@media all and (max-width: 780px){
    
    
    #herosection .mod_customnav{
        display: none;
    }
    #herosection .mod_pageImage > .inside .caption,.ce_heroImage .caption{
        position: relative;
    }
    
  .ce_heroImage .caption{  
    background: var(--darkBlue);
    }
    
    .ce_heroImage .caption .inside.align_right > div{
        padding: 2rem 20px;
        text-align: center;
       
    }
    
   
    
    #herosection .caption .textbox,.ce_heroImage .caption .text{
        font-size: 21px;
        line-height: 1.8;
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    
    blockquote {
font-size: 32px;
}
   
    
  
    
    .download_item{
        width: calc( 100% - 20px );
        margin: 0 0 20px 0;
    }
    
    #herosection .caption{
        position: relative;
        background: var(--darkBlue);
          opacity: 1 !important;
       bottom: 0 !important;
    }
    
   .blue #herosection .caption{
        background: var(--blue);
     
    }
    
    .red #herosection .caption{
        background: var(--red);
     
    }
    
    .green #herosection .caption{
        background: var(--green);
     
    }
    
    #herosection .caption .row > .inside > div{
        padding: 2rem 20px;
    }
    
  #herosection .caption h1 {
    margin: 0;
    font-size: calc(24px + 1vw);
  }
}

@media all and (max-width: 730px){
.stoererDSW {
top:1rem;
left: 1rem;
width:150px;
min-width:150px;
}
}


@media all and (max-width: 680px){

 .valueholder > div {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-bottom: 2rem;
  }
    h2 {
font-size: 32px;
}
    .preheadline, .preHeadline {
font-size: 32px;
    }
    
     .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
    width: 100%;
         margin-bottom: 6rem;
  }
    
    .teasergrid > .itemsperRow_3 > :last-of-type{
        margin-bottom: 0;
    }
}

@media all and (max-width: 580px){
    #wanderlist .mod_shoplist .teasergrid > .itemsperRow_3 > * {
  width: 100%;
}
       #main .mod_article > .block#wanderlist{
        max-width: 450px;
    }
    
      #wanderlist .mod_shoplist .teasergrid > div > *{
        margin-bottom: 20px;
    }
}
