@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Crackerbrusher';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/CRACKERSBRUSHER.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/poppins-v21-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v22-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v22-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-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: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */   
}
/* poppins-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: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v21-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --weiss: #fff;
    --schwarz: #000;
    --linkfarbe: #323535;
    --grau: #808385;
    --hellgrau: #d7d8d9;
    --schwarztrans07: rgba(0,0,0,0.7);
    --standardtransition: all 0.3s ease;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    float: left;
    clear: both;
    font-family: 'Poppins', arial,sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 1.3em;
    color: var(--schwarz);
}

strong{
    font-weight: 600;
}

#inhaltsbereich{
    min-height: calc(100vh - 286px);
}

#inhaltsbereich .ce-bodytext {
    hyphens: auto;
    hyphenate-limit-chars: 10 5 5;
     line-height: 1.3em;
}


#inhaltsbereich .frame-text70.frame-layout-40 {
    padding-bottom: 100px !important;
}




#inhaltsbereich .frame-text70 .cn_multicontent_teaser,
#inhaltsbereich .frame-text70 .ce-bodytext {
    max-width: 700px;
}

#inhaltsbereich .ce-bodytext a {    
    position: relative;
    text-decoration: none;
    /* text-transform: uppercase; */
}


#inhaltsbereich .ce-bodytext a.link-mail {    
    position: relative;
    text-decoration: none;
    text-transform: none;
}


#inhaltsbereich .ce-bodytext a:before {    
    content: '';
    width: 100%;
    height: 1px;
    background: var(--grau);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: var(--standardtransition);
}


#inhaltsbereich .ce-bodytext a:hover:before {    
    content: '';
    width: 0%;
    height: 1px;
    background: var(--grau);
    position: absolute;
    right: 0;
    left:auto;
    bottom: 0;
    transition: var(--standardtransition);
}



#inhaltsbereich .ce-bodytext a.more {    
    padding:10px;
    border: 1px solid var(--grau);
    text-transform: none;
    font-size:16px;
    font-weight: 400;
    float:left;
    /* clear:left; */
    margin:20px 20px 0 00;
}




* {
    outline: none;
}

a, a:hover, a:active, a:visited {
    color: var(--linkfarbe);
    text-underline-offset: 6px;
    /* text-decoration: none; */
    letter-spacing: 1px;
    text-decoration-thickness: 1px;
    transition: var(--standardtransition);
}

a:hover{
    color: var(--grau);
}

figure.image > a {
    display: table;
}

.audio-embed, .audio-caption {
    float: left;
    clear: both;
    width: 100%;
}

p {
    margin: 0 0 10px 0;
}

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

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

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

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

.ce-center .ce-outer {
    position: relative;
    float: left;
    clear: both;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
}

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

.video[data-type="external"] .video-embed {
    padding-top: 0;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.videobox,
.video-embed {
    position: relative;
}

.videoiframelink {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
    text-indent: -9999px;
    color: transparent;
    cursor: default;
    pointer-events: none;
} 

.ce-gallery.videocontainer {
    width: 100%;
	float: left;
	clear: both;  
}

.ce-gallery.videocontainer .video-column {
    max-width: 100%;
    float: left;
}

.ce-gallery.videocontainer figure.video {
	display: block;
}

/* -- header:not(.sub)video -- */
.frame-type-textmedia.frame-layout-11 > .rahmen {
    width: 100% !important;
    max-width: none !important;
    float: left !important;
    clear: both !important;
    margin: 0 !important;
    display: block !important;
}

.frame-type-textmedia.frame-layout-11 .ce-gallery {
    margin: 0;
    width: 100%;
    float: left;
    clear: both;
    position: relative;
}

.frame-type-textmedia.frame-layout-11 .ce-gallery::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.frame-type-textmedia.frame-layout-11 .video-embed .video-preview {
    height: 100%;
}

.frame-type-textmedia.frame-layout-11 .video-embed .video-preview img {
    width: 100%;
    max-width: none;
    height: auto;
}

.frame-type-textmedia.frame-layout-11.loadingok .video-embed .video-preview {
    display: none;
}

.frame-type-textmedia.frame-layout-11 .video[data-type="internal"] .video-embed .video-embed-item {
    width: 100%;
}

body.lb_body {
    height: auto !important;
    max-width: 800px;
    width: 90vw;
}

#lightbox {
    width: 96%;
    margin: 10px 2%;    
}

.ce-intext.ce-left .ce-gallery {
    margin-right: 45px;
}
.ce-intext.ce-right .ce-gallery {
    margin-left: 45px;
}

.ce-intext.ce-left ol, .ce-intext.ce-left ul{
    overflow: hidden;
}
/* -------------------------------------------------------------- */
/* -- header:not(.sub) & Navi -- */
#oben{
    position: fixed;
    padding: 45px 0 0 2%;
    z-index: 5;
    width: 98%;
    transition: var(--standardtransition);
}

#oben::before{
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    z-index: -1;
    background: var(--linkfarbe);
    opacity: 80%;
    top: -1px;
    left: 0;
    transition: var(--standardtransition);
    box-shadow: 0 0 0 1px var(--hellgrau);
}

#oben.scroll,
#oben.leer{
    padding: 25px 0 10px 2%;
}

#oben.scroll::before,
#oben.leer::before{
    height: 100%;
    top: 0;
}

#oben.leer + #header + #inhaltsbereich{
    margin-top: 180px;
}

#oben > .frame-type-textmedia{
    float: left;
}

.hnavi{
    list-style-type: none;
    margin: 0 calc(50% - 475px) 0 0;
    padding: 0;
    float: right;
    width: auto;
    opacity: 0;
}

.hnavi li{
    float: left;
    position: relative;
}

.hnavi > li + li{
    margin-left: 40px;
}

.hnavi li a{
    font-size: 18px;
    text-decoration: none;
    color: var(--weiss);
    text-transform: uppercase;
    float: left;
    padding: 15px 0 10px;
    position: relative;
    font-weight: 400;
}

.hnavi > li:not(.ifsub) > a::before{
    content: '';
    width: 0;
    height: 1px;
    background: var(--weiss);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: var(--standardtransition);
}

.hnavi li.act{
    text-decoration: none;
}

.hnavi > li.act > a{
    font-weight: 800;
}

.unavi{
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
    left: 0;
    top: 100%;
    width: max-content;
    border-top: 1px solid var(--hellgrau);
    border-bottom: 1px solid var(--hellgrau);
    display: none;
}

.unavi::before {
    content: '';
    width: 120vw;
    height: calc(100% + 140px);
    position: absolute;
    z-index: -1;
    background: var(--linkfarbe);
    opacity: 80%;
    top: -90px;
    left: -50vw;
    transition: var(--standardtransition);
    /* box-shadow: 0 0 0 1px var(--hellgrau); */
}

.unavi li{
    display: block;
    clear: both;
}

.unavi li a{
    transition: var(--standardtransition);
}

.unavi li a:hover{
    color: var(--grau);
    text-decoration: none;
}

.unavi li.act a{
    text-decoration: none;
    font-weight: 800;
}

@media (hover:hover){
    .hnavi li a:hover::before{
        width: 100%;
    }

    .hnavi > li.ifsub:hover > a{
        color: var(--hellgrau);
    }
    
    .hnavi > li.ifsub:hover .unavi{
        display: block;
    }
}

.hnavi li.termin{
    position: absolute;
    right: 2%;
}

.hnavi li.termin a::after{
    content: '';
    position: absolute;
    background: url(/fileadmin/cn_website/images/kalender.png) center center/contain no-repeat;
    width: 50px;
    height: 50px;
    left: -60px;
    top: 0;
}

#header:not(.sub){
    /* height: 100vh;
    position: relative;
    overflow: hidden; */
    float: left;
    clear: both;
    width: 100%;
    background: var(--linkfarbe);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

#header .frame-default{
    float: left;
    clear: both;
    width: 100%;
}

#header.sub{
    position: relative;
}

#header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    background: rgb(50,53,53);
    background: linear-gradient(0deg, rgba(50,53,53,0.2) 0%, rgba(50,53,53,0.9) 100%);
}

#header::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(50,53,53);
    background: linear-gradient(180deg, rgba(50,53,53,0.2) 0%, rgba(50,53,53,1) 100%);
}

#header .frame-default .ce-bodytext{
    position: absolute;
    font-size: 60px;
    color: var(--weiss);
    line-height: 1.3em;
    left: calc(50% - 475px);
    bottom: 15%;
    font-weight: 200;
    z-index: 1;
}

#header:not(.sub) .frame-default .ce-bodytext i {
    font-family: 'Crackerbrusher';
    font-size: 100px;
    font-style: normal;
    margin-top: 20px;
    float: left;
    margin-bottom: -10px;
    clear: both;
    width: 100%;
}

#header:not(.sub) .frame-default .ce-gallery{
    margin: 0;
}

#header:not(.sub) .frame-default .ce-gallery img{
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

#header:not(.sub) .frame-termin{
    position: absolute;
    right: calc(50% - 475px);
    bottom: 17%;
    background: var(--linkfarbe);
    color: var(--weiss);
    z-index: 1;
    font-size: 20px;
    padding: 15px 35px;
    border-radius: 20px;
    line-height: 1.3em;
    transition: var(--standardtransition);
    cursor: pointer;
    font-weight: 400;
}

.frame-termin a{
    color: var(--weiss);
    text-decoration: none;
}

#header:not(.sub) .frame-termin:hover{
    background: var(--schwarz);
}

#header:not(.sub) .frame-termin p{
    margin: 12px 0 0 0;
}


#header:not(.sub) .frame-termin .ce-gallery{
    margin: 0 30px 0 0;
}

/* #header.sub{
    max-height: 700px;
    overflow: hidden;
}
 */
.down{
    position: absolute;
    left: calc(50% - 30px);
    bottom: 40px;
    width: 60px;
    height: 60px;
    background: url(/fileadmin/cn_website/images/pfeil.png) center center/contain no-repeat;
    z-index: 1;
    cursor: pointer;
    transition: var(--standardtransition);
}

.down:hover{
    transform: scale(1.1);
}
/* -- header:not(.sub) & Navi -- */
/* -- Inhaltsbereich -- */
#inhaltsbereich{
    float: left;
    clear: both;
    width: 100%;
}
h1{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--hellgrau);
    letter-spacing: 1px;
}

#inhaltsbereich.sub h1{
    font-family: 'Crackerbrusher';
    font-size: 100px;
    color: var(--linkfarbe);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 90px;
}

#inhaltsbereich.sub h2{
    font-family: 'Crackerbrusher';
    font-size: 80px;
    color: var(--linkfarbe);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 70px;
}

#inhaltsbereich.sub h3,
#inhaltsbereich.sub .ce-bodytext h2{
    font-family: 'Poppins','arial', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.3em;
    margin: 0 0 30px 0;
    color: var(--linkfarbe); 
}

h2{
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4em;
}

h3{
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4em;
}

h4{
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4em;
}

#inhaltsbereich.sub li {
    padding: 0 0 10px 0;
}

#inhaltsbereich > .frame > .rahmen,
#footer > .frame > .rahmen{
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
}

#inhaltsbereich > .frame{
    margin-bottom: 80px;
    float: left;
    clear: both;
    width: 100%;
}

.page1  #inhaltsbereich > .frame:last-child{
    margin-bottom: 0;
}

#inhaltsbereich .frame-layout-40{
    background: var(--linkfarbe);
    color: var(--hellgrau);
    padding: 130px 0;
    font-size: 40px;
    line-height: 1.3em;
}

#inhaltsbereich .frame-layout-40 + .frame-layout-40{
    margin-top: -80px !important;
    padding-top: 80px;
}

#inhaltsbereich .frame-intro{
    margin-top: -180px !important;
    margin-bottom: 0;
}

#inhaltsbereich .frame-intro .ce-bodytext{
    padding-top: 180px
}

#inhaltsbereich .frame-intro .ce-gallery{
    margin-bottom: 0;
}

#inhaltsbereich > .frame.frame-layout-40:first-child:is(.frame-space-before-none){
    margin-top: -180px !important;
    padding-top: 180px !important;
}

#inhaltsbereich.sub .frame-layout-40{
    font-size: 18px;
}

#inhaltsbereich .frame-layout-40 a{
    color: var(--weiss);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
}


#inhaltsbereich .frame-layout-40 li a{
    color: var(--weiss);
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
}



#inhaltsbereich .frame-layout-40 h1,
#inhaltsbereich .frame-layout-40 h2{
    color: var(--weiss) !important;
    line-height: 1;
}

#inhaltsbereich .frame-layout-40 + .frame-layout-40{
    margin-top: -40px;
}

.frame-kacheln .row .col-50{
    position: relative;
}

.frame-kacheln .row .col-50:nth-child(2){
    margin-top: 80px;
}

.frame-kacheln .row + .row{
    margin-top: -40px;
}

.frame-kacheln .ce-textpic{
    position: relative;
}

.frame-kacheln .ce-bodytext{
    width: calc(80% - 100px);
    padding: 40px 50px;
    background:rgba(50, 53, 53, 0.8);
    text-align: center;
    color: var(--weiss);
    position: relative;
    margin: 0 10% 0;
    font-weight: 400;
    font-size: 20px;
    transition: all 0.3s ease;
}

/*/'kachel auf dunklem hintergrund'/*/
.frame-layout-40.frame-kacheln .ce-bodytext{
    background:rgba(40, 43, 43, 0.8);   
}

.frame-layout-40.frame-kacheln .col-50:hover .ce-bodytext {
    background: rgba(40, 43, 43, 1);
}

.frame-kacheln .col-50:hover .ce-bodytext {
    background: rgba(50, 53, 53, 1);
}

.frame-kacheln a {
    text-decoration: none;;
}

#inhaltsbereich .frame-kacheln .ce-bodytext a:before {
    display:none;
}

.frame-kacheln .ce-bodytext strong{
    font-family: 'Crackerbrusher', arial, sans-serif;
    font-size: 60px;
    line-height: 50px;
    font-weight: 400;
}

.frame-kacheln .ce-gallery{
    margin: 0 0 -70px 0 !important;
}

.frame-kacheln .linkoverlay + .frame .ce-gallery img{
    transform: scale(1);
    transition: var(--standardtransition);
}

.linkoverlay {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,0);
    transition: all 0.3s ease;
}

.frame-kacheln .linkoverlay:hover +.frame .ce-gallery img{
    transform: scale(1.1);
}


#inhaltsbereich > .frame-banner > .rahmen{
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.frame-banner{
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.frame-banner .ce-textpic{
    position: relative;
    overflow: hidden;
}

.frame-banner .ce-textpic::before{
    content: '';
    background: rgba(50, 53, 53, 0.8);
    position: absolute;
    height: 100%;
    width: 500px;
    right: calc(30% - 50px)
}

.frame-banner .ce-bodytext{
    position: absolute;
    color: var(--weiss);
    font-size: 60px;
    width: 400px;
    right: 30%;
    font-weight: 200;
}

.frame-banner .ce-bodytext i{
    font-family: 'Crackerbrusher';
    font-style: normal;
    font-size: 100px;
    line-height: 60px;
    margin-top: 30px;
    float: left;
}

.frame-banner .ce-bodytext a{
    font-size: 20px;
    color: var(--weiss);
    text-transform: uppercase;
    font-weight: 400;
}

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
    .frame-banner{
            background-attachment: inherit !important;
            background-size: cover !important;
            background-repeat: no-repeat !important;
            background-position: center center !important;
            height: auto ;
            margin: 40px 0; 
    }
}

.owl-prev,
.owl-next {
    background: url(/fileadmin/cn_website/images/pfeil.png) center center/contain no-repeat !important;
    filter: brightness(0);
    transform: rotate(90deg);
    display: block;
    text-indent: -9999px;
    overflow: hidden;
    height: 60px;
    width: 60px;
    float: left;
    position: absolute;
    top: calc(50% - 30px);
    left: -60px;
}

.owl-next {
    transform: rotate(-90deg);
    left: unset;
    right: -60px;
}

.frame-slider{
    opacity: 0;
}

#inhaltsbereich > .frame-slider > .rahmen{
    max-width: 830px;
}

.frame-slider .ce-gallery{
    max-width: 50%;
}

.frame-slider .ce-bodytext {
    position: absolute;
    height: 100%;
    width: calc(50% - 100px);
    display: flex;
    align-items: center;
    font-size: 40px;
    padding: 0 70px 0 30px;
    font-weight: 200;
    letter-spacing: 3px;
}

.frame-slider .ce-textpic.ce-left .ce-bodytext{
    right: 0;
    padding: 0 30px 0 70px;
}

.frame-leistungen .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.frame-leistungen .row > div{
    margin: 20px;
}

.frame-leistungen .row > div .ce-textpic{
    max-width: 290px;
    background: var(--hellgrau);
    color: var(--linkfarbe);
    font-size: 16px;
}

.frame-leistungen .row > div .ce-textpic .ce-bodytext{
    padding: 20px 20px 0;
}

#inhaltsbereich .frame-leistungen .row > div .ce-textpic .ce-bodytext a{
    color: var(--linkfarbe);
}

.ce-above .ce-gallery {
    margin: 0 0 50px 0;
}

/*accordion*/
.ui-accordion-header::before {
    content:">";
    margin-left:0px;
    color:var(--grau);
    float: left;
    transition: 0.3s ease all;
}


.ui-accordion-header-active::before {
    content:">";
    rotate: 90deg;
    margin-left:0px;
    color:var(--grau);
    float: left;
}

.frame-layout-40 .ui-accordion-header::before {
    content:">";
    margin-left:0px;
    color:#fff;
    float: left;
    transition: 0.3s ease all;
}


.frame-layout-40 .ui-accordion-header-active::before {
    content:">";
    rotate: 90deg;
    margin-left:0px;
    color:#fff;
    float: left;
}

.ui-accordion-header a:before{    
    content: '';
    width: 0% !important;
    height: 0px;
    background: var(--grau);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: var(--standardtransition); 
}

.ui-accordion-header  {    
    margin:0px !important  ;
}

.ui-accordion-header a {    
    text-decoration: none;
    padding: 0 0 0 20px;
    float:left;
    font-size:20px;

}

.ui-accordion-header a:hover {    
    opacity: 0.6;
}

.ui-accordion-header{
    padding: 10px 0 10px 0;
    border-bottom: 1px solid var(--grau);
    line-height: 1;
}

.frame-layout-40 .ui-accordion-header{
    padding: 10px 0 10px 0;
    border-bottom: 1px solid var(--weiss);
}

.ui-accordion-content {
    padding: 20px 0 40px 0;
}

.ui-accordion {
    padding: 0 0 100px 0;
    float: left;
    display: block;
    width: 100%;
}

hr {
    clear:left;
    width:100%;
    display: block;
    background-color: var(--weiss);
    height:1px;
    border: none;
    margin: 150px 0px 50px 0;
}

.ce-gallery.ce-border .image-embed-item{
    border-radius: 50%;
}
/* Team */
.frame-team .ce-bodytext{
    font-size: 14px;
}
.frame-team .ce-bodytext strong{
    font-size: 18px;
}
/* Team */




/*Startseite Teamslider*/
.page1 .frame-slider .ce-gallery figure img {
    width:300px;
}
/* -- Inhaltsbereich -- */
/* -- Footer -- */
#footer{
    background: var(--linkfarbe);
    color: var(--weiss);
    border-top: 2px solid var(--weiss);
    float: left;
    clear: both;
    width: 100%;
    padding: 40px 0 70px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4em;
}

#footer h2,
#footer a{
    font-size: 12px;
    font-weight: 400;
    color: var(--weiss);
    text-decoration: none;
    margin-top: 0;
}

#footer strong{
    font-weight: 600;
}

#footer .frame-type-menu_subpages ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
/* -- Footer -- */