html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family:  Tahoma, Geneva, Verdana, sans-serif;

}

a {
    text-decoration: none;
    /*  grrr.... */
    color: inherit;
}

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

/* 
    GRID KRAM!!
*/
.TextBaseElement {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    width: 80%;
    margin-left: 10%;

    border: 0 !important;

}

.GridZweispaltig {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}


@media screen and (max-width: 991px) {
    .GridZweispaltig {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (min-width:1200px) {
    .GridZweispaltig {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ######   */

.GridBackGroundImageWithTextOverlay {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}


@media screen and (max-width: 991px) {
    .GridBackGroundImageWithTextOverlay {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (min-width:1200px) {
    .GridBackGroundImageWithTextOverlay {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}


.Gridfooter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}   

@media screen and (max-width: 991px) {
    .Gridfooter {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
}       


/* ######   */


.BackgroundImageWithTextOverlay-background {

    margin-top: 50px;
    margin-bottom: 50px;    
    margin-left: 10%;
    margin-right: 10%;   

}


.BackgroundImageWithTextOverlay-background.oben {

    position: relative;
    top: 0;
    max-width: 30%;
    height: fit-content;
}

@media screen and (max-width: 991px) {    
    .BackgroundImageWithTextOverlay-background.oben {
        max-width: 90%;
    }
}


.BackgroundImageWithTextOverlay-background.unten {

    position: relative;
    top: 50%;
    max-width: 40%;
    height: fit-content;

}

@media screen and (max-width: 991px) {   
    .BackgroundImageWithTextOverlay-background.unten {

        position: relative;
        top: 0;
        max-width: 90%;
        height: fit-content;

    }
}    


.startseite .BackgroundImageWithTextOverlay-background.oben {

    position: relative;
    top: -5%;
    max-width: 30%;
}

.startseite .BackgroundImageWithTextOverlay-background.unten {

    top: 5%;
    max-width: 65%;
}

.startseite .BackgroundImageWithTextOverlay-background.unten p {

    font-size: 16px;
}

@media screen and (max-width: 991px) {  
    .startseite .BackgroundImageWithTextOverlay-background.oben {

        position: relative;
        top: -25%;
        max-width: 90%;
    }

    .startseite .BackgroundImageWithTextOverlay-background.unten {

        top: -10%;
        max-width: 90%;
    }

    .startseite .BackgroundImageWithTextOverlay-background.unten p {

        font-size: 16px;
    }
}


.BackgroundImageWithTextOverlay { 
    width: 100%;
    height: 100vh;
    
    background-position: center center;
    
    background-repeat: no-repeat;
    background-size: cover; 

    padding-top: 50px;

    color: #FFFFFF;
  
}

@media screen and (max-width: 991px) {  
    .BackgroundImageWithTextOverlay {
        height: auto;
    }

    .startoben .BackgroundImageWithTextOverlay-background.unten {
        margin-left: 5%;
        margin-right: 5% !important;
    }

}


.overlay {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 90px;
    padding-right: 90px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
    margin-right: 50px;
    
    background-color: rgb(100,200,100,0.7);

    font-size: 18px;
    font-weight: 400;
}


@media screen and (max-width: 991px) {    
    .overlay {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 50px;
        margin-bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
        
    
        font-size: 18px;
        font-weight: 400;
    }

    .image.left {
        width: 100% !important;
        height: 100% !important;
    }
    
    .BackgroundImageWithTextOverlay-background.unten.Hell {
        background-color: rgba(246, 244, 244, 1.0);
    }

}

@media screen and (min-width: 991px) and (max-width: 1200px) {
    .startoben .BackgroundImageWithTextOverlay-background.unten.Hell {
        background-color: rgba(246, 244, 244, 1.0);
        max-width: 80%;
    }

    .startoben .BackgroundImageWithTextOverlay-background.oben {

        position: relative;
        top: 1%;
        max-width: 45%;
    }

    .startseite .BackgroundImageWithTextOverlay-background.oben {

        position: relative;
        top: -25%;
        max-width: 90%;
    }

    .startseite .BackgroundImageWithTextOverlay-background.unten {

        top: -10%;
        max-width: 90%;
    }

    .image.left {
        width: 100% !important;
        height: 100% !important;
    }

}


@media screen and (min-width: 991px) and (max-width: 1200px) {
    .GridZweispaltig {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}



.Hell  { 
    color: #000000;
}

.Dunkel {
    color: #FFFFFF;
}


.overlay.Hell {
    background-color: rgba(246, 244, 244, 1.0);
    color: #000000;
}

.overlay.Dunkel {
    background-color: rgb(50,50,50,1.0);
    color: #FFFFFF;
}

/*
 ### menue
*/


* {
    margin: 0;
}



.header {
    border-bottom: 1px solid #eee;
    height: 4rem;
}

.burger-wrapper {
  cursor: pointer;
}

#federflieger-menue {
    background: #EEE;
    width: 50rem;
    height: 100vh;
    position: fixed;
    right: 0;
    transition-timing-function: cubic-bezier(10,2,3,1);
    transform: translateX(50rem);
    top: 0;
    z-index: 10;
    transition: 0.5s;
    
    overflow: auto;
}

@media screen and (max-width: 991px) {
    #federflieger-menue {
        width:auto; 
    }
}

#federflieger-menueAvPaa {
    display: none;
}

#federflieger-menueAvPaa:checked ~ #federflieger-menue {
    transform: translateX(0rem);
}

#burger {
    /*
    position: absolute;
    */
    position: fixed;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    right: 2rem;
    top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 6px;
    background-color: white;
    z-index: 50;
}

#burger > div {
    height: 2px;
    background-color: #000;
    transition: 0.5s;
    z-index: 999;
}

#federflieger-menueAvPaa:checked ~ #burger > div {
    /*
    background-color: #fff;
    */
}

#federflieger-menueAvPaa:checked ~ #burger > div:nth-child(1) {
    transform: translateY(25px) rotate(45deg);
}
#federflieger-menueAvPaa:checked ~ #burger > div:nth-child(2) {
    opacity: 0;
}
#federflieger-menueAvPaa:checked ~ #burger > div:nth-child(3) {
    transform: translateY(-20px) rotate(-45deg);
}


#federflieger-menueAvPaa:checked ~ #burger {
    background-color: #EEEEEE;
}




#federflieger-menue ul li {
    list-style: none;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    text-align: left;

    font-size: 24px;
    font-weight: 400;

}

#federflieger-menue ul li a {
    text-decoration: none;
    color: #000;
}

#federflieger-menue ul li.current a  {
    color: #f00;
}

#federflieger-menue ul li a:hover {
    color: #f00;
}


/* 
    ZweispaltigTextBaseElement 
*/
.ZweispaltigTextBaseElement {
    display: block;
    width: 80%;
    overflow: hidden;
    margin-left: 10%;
    padding-bottom: 60px;
}

@media screen and (max-width: 991px) {  
    .ZweispaltigTextBaseElement {
        margin-top: 10%;
        margin-left: 5%;
    }
}

.ZweispaltigTextBaseElement-linkeSpalte {
    float: left;
    width: 45%;
    padding: 20px;
}

.ZweispaltigTextBaseElement-rechteSpalte {
    float: right;
    width: 45%;
    padding: 20px;
}

@media screen and (max-width: 991px) {  
    .ZweispaltigTextBaseElement-linkeSpalte {
        width: 90%;
        padding: 20px;
    }

    .ZweispaltigTextBaseElement-rechteSpalte {
        float: left;
        width: 90%;
        padding: 20px;
    }
}


/* ########### */
/* h1 bis h6 */

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
}

.cmsText-6xl {
    font-size: 2.0em ; 
    font-weight: 700 ;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    margin-left: 0;
    margin-right: 0;
}

.cmsText-5xl {
    font-size: 1.7 em;
    font-weight: 700;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    margin-left: 0;
    margin-right: 0;
}

.cmsText-4xl {
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    margin-left: 0;
    margin-right: 0;
}

.cmsText-3xl {
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    margin-left: 0;
    margin-right: 0;
}

.cmsText-2xl {
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    margin-left: 0;
    margin-right: 0;
}

.cmsText-xl {
    font-size: 1.0em;
    font-weight: 700;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    margin-left: 0;
    margin-right: 0;
}




/* 
footermenue
*/
.site-footer {

    background: #333;
    color: #FFFFFF;
    padding-top: 40px;

}

.site-footer-centered {
    width: 80%;
    margin-left: 10%;
}


.footer-menue {
    /* nicht nebeneinander 
    display: flex;
    */
    justify-content: space-between;
    padding: 1rem;
    background: #333;
    color: #fff;
}

.footer-menue p {
    margin: 0;
    padding-bottom: 9px;
}

.footer-menue p a {

    color: #fff;
}


.footer-content-left {
    float: left;
}


.footer-content-right {
    float: right;
}

.footer-bottom {
    clear: both;
}