/* ----------------------------------------------------------------------------- */
/* general */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    /* colors */
    --me-color: #75900a;
    --me-background: #f8fceo;
    --me-boxes: #ecf5d0;

    /* fonts  */
    --me-font: "Lato", sans-serif;
    --me-fontweigth: 300;
    --me-title: "Lato", sans-serif;
    --me-titleweight: 300;
    --me-fontsize: 1.5em;
    --me-h3size: 2.5em;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--me-color);
}

body, html {
    height: 100%;
    font-family: var(--me-font);
    font-weight: var(--me-fontweigth);
    letter-spacing: 1px;
    color: var(--me-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--me-background);
}
/* end of general */
/* ----------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------- */
/* Cookies */
#cookieDiv {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 10px;
    z-index: 1000;
    text-align: left;
    border-top: 1px solid var(--me-color);
    border-bottom: 1px solid var(--me-color);
    font-family: var(--me-font);
    color: #fff;
}

#cookiewrapper {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    margin: auto;
}

#cookieleft {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#cookieDiv a {
    text-decoration: none;
    color: #fff;
}

@media only screen and (min-width: 880px) {
    #cookieDiv {
        font-size: 1.2em;
        line-height: 1.5em;
    }
}

@media only screen and (min-width: 768px) and (max-width: 879px) {
    #cookiewrapper {
        flex-direction: column;
    }
    
    #cookieDiv, #hinweisbutton {
        font-size: 1em;
        line-height: 1.5em;
    }

    #sign {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 1em;
    }

    #sign div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #cookieleft div {
        text-align: center;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    #cookiewrapper {
        flex-direction: column;
    }
    
    #cookieDiv, #hinweisbutton {
        font-size: 0.9em;
        line-height: 1.5em;
    }

    #sign {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 1em;
    }

    #sign div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #cookieleft div {
        text-align: center;
    }
}

@media only screen and (min-width: 300px) and (max-width: 479px) {
    #cookiewrapper {
        flex-direction: column;
    }
    
    #cookieDiv, #hinweisbutton {
        font-size: 0.8em;
        line-height: 1.5em;
    }

    #sign {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 1em;
    }

    #sign div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #cookieleft div {
        text-align: center;
    }
}

@media only screen and (max-width: 299px) {
    #cookiewrapper {
        flex-direction: column;
    }
    #cookieDiv, #hinweisbutton {
        font-size: 0.7em;
        line-height: 1.5em;
    }

    #sign {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 1em;
    }

    #sign div {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #cookieleft div {
        text-align: center;
    }
}

#hinweisbutton {
    padding: 2px 4px;
    border: 0.5px solid #FFF;
    border-radius: 5px;
    background: var(--me-color);
    cursor: pointer;
    color: #fff;
}

.cookiegesetzt {
    display: none;
}

#cookie_logo {
    max-width: 50px;
    display: block;
    margin: auto;
    border-radius: 25px;
    margin-bottom: 3px;
}
/* Ende Cookies */
/* ----------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------- */
/* wrapper */
#wrapper {
    width: 100vw;
    max-width: 1920px;
    margin: auto;
}

#impwrapper {
    width: 100vw;
    max-width: 1200px;
    margin: auto;
}
/* end of wrapper */
/* ----------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------- */
/* header */

/* desktop navigation */
@media only screen and (min-width: 1080px) {
    #toggle, #sidebar {
        display: none;
    }

    #deskheader {
        width: 100%;
        max-width: 1920px;
        font-size: 1.2em;
        position: fixed;
        top: 0;
        background-color: #fff;
        display: flex;
        flex-direction: row;
        justify-content: center;
        z-index: 2;
        box-shadow: 0px 20px 50px -5px #fff;
    }

    #desknav {
        width: 100%;
    }

    #deskul {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    #deskli {
        padding: 0;
    }

    #logoFadein {
        opacity: 0;
        animation-duration: 1s;
        animation-timing-function: ease-in-out;
        animation-delay: 2.5s;
        animation-name: fadein;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }
    
    #logoFadein img {
        display: block;
    }

    @media only screen and (min-width: 1920px) {
        #deskheader {
            height: 105px;
        }

        #deskli {
            margin: 1.3em 0;
            font-size: var(--me-fontsize);
        }
    
        #logoFadein {
            height: 5em;
            margin-top: 0.2em;
        }
        
        #logoFadein img {
            height: 5em;
        }
    }
    
    @media only screen and (min-width: 1080px) and (max-width: 1919px) {
        #deskheader {
            height: 5.5vw;
        }

        #deskli {
            margin: 1.9vw 0;
            font-size: 1.4vw;
        }
    
        #logoFadein {
            height: 5vw;
            margin-top: 0.2vw;
        }
        
        #logoFadein img {
            height: 5vw;
        }
    }

    @keyframes fadein {
        from {
            opacity: 0;
        }
        
        to {
            opacity: 1;
        }
    }  
}
/* end of desktop navigation */

/* mobile navigation */
@media only screen and (max-width: 1079px) {
    #deskheader {
        display: none;
    }

    #toggle {
        position: fixed;
        top: 3vw;
        right: 3vw;
        width: 4em;
        height: 4em;
        cursor: pointer;
        display: flex;
        align-items: center;
        z-index: 2;
        background-color: rgba(255, 255, 255, 1);
        -webkit-box-shadow: 0px 0px 20px 5px rgba(255, 255, 255, 1); 
        box-shadow: 0px 0px 20px 5px rgba(255, 255, 255, 14);
    }

    #toggleline, 
    #toggleline:before, 
    #toggleline:after {
        content: '';
        position: absolute;
        border-radius: 2px;
        background-color: rgb(3, 41, 0);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
    }
    #sidebar {
        position: fixed;
        top: 0;
        height: 100vh;
        background-color: var(--me-color);
        transition: 0.3s;
        z-index: 2;
    }

    @media only screen and (min-width: 768px) and (max-width: 1079px) {
        #sidebar {
            left: -300px;
            width: 300px;
        }

        #toggle {
            width: 4em;
            height: 4em;
        }

        #mobli {
            margin: 0 0 1.5em 1em;
        }

        #toggleline, 
        #toggleline:before, 
        #toggleline:after {
            height: 3px;
            width: 3em;
        }

        #toggleline {
            margin-left: 0.5em;
        }

        #toggleline.active {
            transform: rotate(45deg);
        }
        
        #toggleline.active::before {
            transform: translateY(-15px) rotate(-90deg);
        }
        
        #toggleline.active::after {
            transform: translateY(15px);
        }
    
        #toggleline:before {
            top: 15px;
        }
        
        #toggleline:after {
            bottom: 15px;
        }

        #mobli a {
            font-size: 1.5em;
        }

        #moblogo {
            margin: 3em auto;
            width: 8em;
            height: 8em;
        }
    
        #moblogo img {
            width: 8em;
            height: 8em;
        }
    }

    @media only screen and (max-width: 767px) {
        #sidebar {
            left: -100vw;
            width: 100vw;
        }

        #toggle {
            width: 3.5em;
            height: 3.5em;
        }
        
        #toggleline.active, 
        #toggleline.active::before, 
        #toggleline.active::after {
            background-color: #fff;
        }

        #mobul {
            display: flex;
            flex-direction: column;
            justify-content: start;
            height: 100vh;
        }

        #mobli {
            text-align: center;
            margin-bottom: 2.5em;
        }

        @media only screen and (min-width: 480px) and (max-width: 767px) {
            #toggleline, 
            #toggleline:before, 
            #toggleline:after {
                height: 3px;
                width: 2.5em;
            }

            #toggle {
                width: 3.5em;
                height: 3.5em;
            }

            #toggleline {
                margin-left: 0.5em;
            }

            #toggleline.active {
                transform: rotate(45deg);
            }
            
            #toggleline.active::before {
                transform: translateY(-12px) rotate(-90deg);
            }
            
            #toggleline.active::after {
                transform: translateY(12px);
            }
        
            #toggleline:before {
                top: 12px;
            }
            
            #toggleline:after {
                bottom: 12px;
            }

            #mobli a {
                font-size: 2em;
            }

            #moblogo {
                margin: 2vw auto;
                width: 10em;
                height: 10em;
            }
        
            #moblogo img {
                width: 10em;
                height: 10em;
            }
        }

        @media only screen and (min-width: 375px) and (max-width: 479px) {
            #toggleline, 
            #toggleline:before, 
            #toggleline:after {
                height: 2px;
                width: 2em;
            }

            #toggle {
                width: 2.5em;
                height: 2.5em;
            }

            #toggleline {
                margin-left: 0.25em;
            }

            #toggleline.active {
                transform: rotate(45deg);
            }
            
            #toggleline.active::before {
                transform: translateY(-9px) rotate(-90deg);
            }
            
            #toggleline.active::after {
                transform: translateY(9px);
            }
        
            #toggleline:before {
                top: 9px;
            }
            
            #toggleline:after {
                bottom: 9px;
            }

            #mobli a {
                font-size: 1.5em;
            }

            #moblogo {
                margin: 2vw auto;
                width: 8em;
                height: 8em;
            }
        
            #moblogo img {
                width: 8em;
                height: 8em;
            }
        }

        @media only screen and (max-width: 374px) {
            #toggleline, 
            #toggleline:before, 
            #toggleline:after {
                height: 2px;
                width: 1.7em;
            }

            #toggle {
                width: 2em;
                height: 2em;
            }

            #toggleline {
                margin-left: 0.2em;
            }

            #toggleline.active {
                transform: rotate(45deg);
            }
            
            #toggleline.active::before {
                transform: translateY(-7px) rotate(-90deg);
            }
            
            #toggleline.active::after {
                transform: translateY(7px);
            }
        
            #toggleline:before {
                top: 7px;
            }
            
            #toggleline:after {
                bottom: 7px;
            }

            #mobli a {
                font-size: 1.4em;
            }

            #moblogo {
                margin: 2vw auto;
                width: 6em;
                height: 6em;
            }
        
            #moblogo img {
                width: 6em;
                height: 6em;
            }
        }
    }

    #sidebar.active {
        left: 0px;
    }

    #mobul {
        position: relative;
    }

    #mobli {
        width: 100%;
        display: inline-block;
    }

    #mobli:hover {
        color: #000;
    }

    #mobli a {
        letter-spacing: 2px;
        color: #fff;
    }
}
/* end of mobile navigation */

/* jumpmarks */
@media only screen and (min-width: 1920px) {
    .jumps {
        position: relative;
        top: -12em;
    }
}
/* end of header */
/* ----------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------- */
/* Parallax */
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5 {
    position: relative;
    background-attachment: fixed;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-width: 1919px) {
    .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5 {
        background-attachment: scroll;
    }
}

.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5 {
    width: 100%;
    max-width: 1920px;
}

.bgimg-1 {
    background-image: url("../img/bg01.png");
    height: 100vh;
}

.bgimg-2 {
    background-image: url("../img/bg02.png");
    min-height: 500px;
}

.bgimg-3 {
    background-image: url("../img/bg03.png");
    min-height: 500px;
}

.bgimg-4 {
    background-image: url("../img/bg04.png");
    min-height: 500px;
}

.bgimg-5 {
    background-image: url("../img/bg05.png");
    min-height: 500px;
}

.caption {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #000;
}

.caption span.border {
    color: #000;
    letter-spacing: 0.2em;
    display: none;
}
/* end of Parallax */
/* ----------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------- */
/* Content */

/* Title */
.logo {
    position: relative;
    margin: auto;
}

.logoImg {
    background-image: url(../img/Logo02.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
    
@media only screen and (min-width: 1080px) {
    .logo {
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
        animation-delay: 1.5s;
        animation-name: fadeawayX;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }
    
    .logoImg {
        animation-duration: 2s;
        animation-timing-function: ease-in-out;
        animation-delay: 1.5s;
        animation-name: fadeawayY;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }
}

@media only screen and (max-width: 1079px) {
    .logo {
        animation-duration: 1.5s;
        animation-delay: 1.5s;
        animation-name: fadeaway;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }
    
    .logoImg {
        animation-duration: 1.5s;
        animation-delay: 1.5s;
        animation-name: fadeaway;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }
}

#logoFadein {
    opacity: 0;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 2.5s;
    animation-name: fadein;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#logoFadein img {
    display: block;
}

@media only screen and (max-width: 1919px) {
    @media only screen and (min-width: 1080px) {
            .logo {
            top: calc(50vh - 200px);
            width: 20vw;
            height: 20vw;
        }
        
        .logoImg {
            width: 20vw;
            height: 20vw;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 1079px) {
        .logo {
            top: calc(50vh - 150px);
            width: 300px;
            height: 300px;
        }
        
        .logoImg {
            width: 300px;
            height: 300px;
        }
    }

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .logo {
            top: calc(50vh - 150px);
            width: 250px;
            height: 250px;
        }
        
        .logoImg {
            width: 250px;
            height: 250px;
        }
    }

    @media only screen and (max-width: 479px) {
        .logo {
            top: calc(50vh - 150px);
            width: 200px;
            height: 200px;
        }
        
        .logoImg {
            width: 200px;
            height: 200px;
        }
    }
    
    #logoFadein {
        height: 5em;
        margin-top: 0.5em;
    }
    
    #logoFadein img {
        height: 5.5vw;
    }

    .start {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        animation-duration: 2s;
        animation-timing-function: ease-in-out;
        animation-delay: 2.5s;
        animation-name: fadein;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }

    #start1 {
        flex-direction: row;
    }

    #start2 {
        margin-top: 35vh;
        flex-direction: column;
        justify-content: start;
    }

    .start h1, .start h2 {
        font-family: var(--me-title);
        font-weight: var(--me-titleweight);
        color: var(--me-color);
    }

    @media only screen and (min-width: 1400px) and (max-width: 1919px) {
        .start h1 {
            font-size: 6.5em;
            letter-spacing: 0.1em;
        }
    
        .start h2 {
            font-size: 3.5em;
            margin-top: 2vw;
        }
    }

    @media only screen and (min-width: 900px) and (max-width: 1399px) {
        .start h1 {
            font-size: 6.5em;
            letter-spacing: 0.1em;
            margin-left: 5vw;
            margin-right: 5vw;
        }
    
        .start h2 {
            font-size: 3.5em;
            margin-left: 5vw;
            margin-right: 5vw;
            margin-top: 2vw;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 899px) {
        .start h1 {
            font-size: 6em;
            letter-spacing: 3px;
            margin-left: 5vw;
            margin-right: 5vw;
        }
    
        .start h2 {
            font-size: 3em;
            margin-left: 5vw;
            margin-right: 5vw;
            margin-top: 5vw;
        }
    }

    @media only screen and (min-width: 600px) and (max-width: 767px) {
        .start h1 {
            font-size: 5.5em;
            letter-spacing: 3px;
            margin-left: 5vw;
            margin-right: 5vw;
        }
    
        .start h2 {
            font-size: 2.5em;
            margin-left: 5vw;
            margin-right: 5vw;
            margin-top: 5vw;
        }
    }

    @media only screen and (min-width: 480px) and (max-width: 599px) {
        .start h1 {
            font-size: 4.5em;
            letter-spacing: 3px;
            margin-left: 5vw;
            margin-right: 5vw;
        }
    
        .start h2 {
            font-size: 2em;
            margin-left: 5vw;
            margin-right: 5vw;
        }

        @media only screen and (orientation: portrait) {
            .start h2 {
                margin-top: 5vw;
            }
        }
    }

    @media only screen and (min-width: 375px) and (max-width: 479px) {
        #start2 {
            margin-top: 15vh;
        }
        
        .start h1 {
            font-size: 4em;
            letter-spacing: 3px;
            margin-left: 5vw;
            margin-right: 5vw;
        }

        #title1 {
            font-size: 0.5em;
        }
    
        .start h2 {
            font-size: 1.5em;
            margin-left: 5vw;
            margin-right: 5vw;
        }

        @media only screen and (orientation: portrait) {
            .start h2 {
                margin-top: 5vw;
            }
        }
    }

    @media only screen and (max-width: 374px) {
        #start2 {
            margin-top: 15vh;
        }
        
        .start h1 {
            font-size: 3.6em;
            letter-spacing: 3px;
            margin-left: 5vw;
            margin-right: 5vw;
        }

        #title1 {
            font-size: 0.5em;
        }
    
        .start h2 {
            font-size: 1.3em;
            margin-left: 5vw;
            margin-right: 5vw;
        }

        @media only screen and (orientation: portrait) {
            .start h2 {
                margin-top: 5vw;
            }
        }
    }
}

@media only screen and (min-width: 1920px) {
    .logo {
        top: calc(50vh - 250px);
        width: 500px;
        height: 500px;
    }
    
    .logoImg {
        width: 500px;
        height: 500px;
    }
    
    #logoFadein {
        height: 5em;
        margin-top: 0.5em;
    }
    
    #logoFadein img {
        height: 5em;
    }

    .start {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        animation-duration: 2s;
        animation-timing-function: ease-in-out;
        animation-delay: 2.5s;
        animation-name: fadein;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }

    #start1 {
        flex-direction: row;
    }

    #start2 {
        margin-top: 35vh;
        flex-direction: column;
        justify-content: start;
    }

    .start h1, .start h2 {
        font-family: var(--me-title);
        font-weight: var(--me-titleweight);
        color: var(--me-color);
    }

    .start h1 {
        font-size: 6.5em;
        letter-spacing: 0.1em;
    }

    .start h2 {
        font-size: 3.5em;
        margin-top: 1em;
    }
}

@media only screen and (max-width: 1079px) {
    @keyframes fadeaway {
        from {
            opacity: 1;
        }
        
        to {
            opacity: 0;
            width: 0px;
            height: 0px;
        }
    }
}

@media only screen and (min-width: 1080px) and (max-width: 1919px) {
    @keyframes fadeawayX {
        from {
            opacity: 1;
            width: 20vw;
            height: 20vw;
        }
        
        to {
            opacity: 0;
            width: 1px;
            height: 1px;
            transform: translateX(-50vw);
        }
    }
    
    @keyframes fadeawayY {
        from {
            opacity: 1;
            width: 20vw;
            height: 20vw;
        }
        
        to {
            opacity: 0;
            width: 1px;
            height: 1px;
            transform: translateY(-50vh);
        }
    }
}

@media only screen and (min-width: 1920px) {
    @keyframes fadeawayX {
        from {
            opacity: 1;
            width: 500px;
            height: 500px;
        }
        
        to {
            opacity: 0;
            width: 1px;
            height: 1px;
            transform: translateX(-900px);
        }
    }
    
    @keyframes fadeawayY {
        from {
            opacity: 1;
            width: 500px;
            height: 500px;
        }
        
        to {
            opacity: 0;
            width: 1px;
            height: 1px;
            transform: translateY(-50vh);
        }
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}
/* end of title */

/* text */
.txt {
    margin: 6em auto;
    color: var(--me-color);
    width: 100%;
    max-width: 1600px;
}

.justify {
    text-align: justify;
    text-align-last: none;
}

#approach {
    background-color: var(--me-boxes);
    z-index: 2;
}

.middle {
    width: 100vw;
    max-width: 1920px;
}

.txt h4 {
    letter-spacing: 2px;
    font-size: 1.4em;
    text-align: center;
    font-weight: 300;
    margin-bottom: 2em;
    font-family: 'Nothing You Could Do';
}

.txt h3 {
    letter-spacing: 2px;
    font-size: 2.5em;
    text-align: center;
    font-weight: 300;
    font-family: 'Nothing You Could Do';
}

.txt p, .centered {
    font-size: var(--me-fontsize);
    line-height: 1.7em;
}

@media only screen and (min-width: 1700px) {
    .txt p {
        margin: 2em 0 0 0;
    }
}

@media only screen and (min-width: 1080px) and (max-width: 1699px) {
    .txt p {
        margin: 2em 6vw 0 6vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1079px) {
    .txt p {
        font-size: 1.4em;
        margin: 2em 5vw 0 5vw;
    }

    .txt h3 {
        letter-spacing: 1.5px;
        font-size: 2.4em;
    }

    .txt h4 {
        letter-spacing: 1.3px;
        font-size: var(--me-fontsize);
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .txt p {
        font-size: 1.4em;
        margin: 2em 4.5vw 0 4.5vw;
    }

    .txt h3 {
        letter-spacing: 1px;
        font-size: 2.3em;
        margin-left: 4.5vw;
        margin-right: 4.5vw;
    }

    .txt h4 {
        letter-spacing: 1px;
        font-size: 1.3em;
    }
}

@media only screen and (min-width: 375px) and (max-width: 479px) {
    .txt p {
        font-size: 1.3em;
        margin: 2em 4vw 0 4vw;
    }

    .txt h3 {
        letter-spacing: 1px;
        font-size: 2.2em;
        margin-left: 4vw;
        margin-right: 4vw;
    }

    .txt h4 {
        letter-spacing: 1px;
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 374px) {
    .txt p {
        font-size: 1.2em;
        margin: 2em 4vw 0 4vw;
    }

    .txt h3 {
        letter-spacing: 1px;
        font-size: 2em;
        margin-left: 4vw;
        margin-right: 4vw;
    }

    .txt h4 {
        letter-spacing: 1px;
        font-size: 1.1em;
    }
}

.centered {
    text-align: center;
    max-width: 1200px;
    margin: 2em auto;
}

#priceLogo {
    width: 12em;
    height: 12em;
    margin: 2em auto 0 auto;

}

#priceLogo img {
    width: 12em;
    height: 12em;
    opacity: 0.75;
}

/* offers */
.clear {
    clear: both;
}

@media only screen and (min-width: 1700px) {
    #offers {
        width: 1600px;
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 350px;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(350px - 4px);
        width: calc(640px - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(350px - 4px);
        width: calc(640px - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(350px - 4px);
        width: 960px;
    }

    .offerHeadline {
        font-size: 1.8em;
        font-weight: 400;
        margin: 2em 50px 0 50px;
    }

    .textDist {
        margin: 1.5em 50px 0 50px;
        font-size: 1.4em;
        letter-spacing: 1px;
        line-height: 1.7em;
    }

    .rightText {
        float: left;
    }

    .leftText {
        float: right;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1699px) {
    #offers {
        width: calc(1600px - 12vw);
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 350px;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(350px - 4px);
        width: calc(635px - 6vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(350px - 4px);
        width: calc(635px - 6vw - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(350px - 4px);
        width: calc(960px - 6vw);
    }

    .offerHeadline {
        font-size: 1.8em;
        font-weight: 400;
        margin: 2em 45px 0 45px;
    }

    .textDist {
        margin: 1.5em 45px 0 45px;
        font-size: 1.4em;
        letter-spacing: 1px;
        line-height: 1.7em;
    }

    .rightText {
        float: left;
    }

    .leftText {
        float: right;
    }
}

@media only screen and (min-width: 1450px) and (max-width: 1599px) {
    #offers {
        width: calc(100vw - 12vw);
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 23vw;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(23vw - 4px);
        width: 55vw;
    }

    .offerHeadline {
        font-size: 1.7em;
        font-weight: 400;
        margin: 1.4em 40px 0 40px;
    }

    .textDist {
        margin: 1.4em 40px 0 40px;
        font-size: 1.4em;
        letter-spacing: 1px;
        line-height: 1.7em;
    }

    .rightText {
        float: left;
    }

    .leftText {
        float: right;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1449px) {
    #offers {
        width: calc(100vw - 12vw);
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 23vw;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(23vw - 4px);
        width: 55vw;
    }

    .offerHeadline {
        font-size: 1.5em;
        font-weight: 400;
        margin: 1.5em 35px 0 35px;
    }

    .textDist {
        margin: 1.3em 35px 0 35px;
        font-size: 1.3em;
        letter-spacing: 1px;
        line-height: 1.7em;
    }

    .rightText {
        float: left;
    }

    .leftText {
        float: right;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1279px) {
    #offers {
        width: calc(100vw - 12vw);
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 23vw;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(23vw - 4px);
        width: 55vw;
    }

    .offerHeadline {
        font-size: 1.5em;
        font-weight: 400;
        margin: 0.6em 30px 0 30px;
    }

    .textDist {
        margin: 1em 30px 0 30px;
        font-size: 1.3em;
        letter-spacing: 1px;
        line-height: 1.6em;
    }

    .rightText {
        float: left;
    }

    .leftText {
        float: right;
    }
}

@media only screen and (min-width: 1080px) and (max-width: 1199px) {
    #offers {
        width: calc(100vw - 12vw);
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 23vw;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(23vw - 4px);
        width: 55vw;
    }

    .offerHeadline {
        font-size: 1.5em;
        font-weight: 400;
        margin: 0.5em 20px 0 20px;
    }

    .textDist {
        margin: 0.8em 20px 0 20px;
        font-size: 1.2em;
        letter-spacing: 1px;
        line-height: 1.6em;
    }

    .rightText {
        float: left;
    }

    .leftText {
        float: right;
    }
}

@media only screen and (min-width: 900px) and (max-width: 1079px) {
    #offers {
        width: calc(100vw - 10vw);
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 66vw;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(33vw - 4px);
        width: calc(100vw - 10vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(33vw - 4px);
        width: calc(100vw - 10vw - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(33vw - 4px);
        width: calc(100vw - 10vw - 4px);
        margin-top: 25px;
    }

    .offerHeadline {
        font-size: 1.8em;
        font-weight: 400;
        margin: 1.5em 40px 0 40px;
    }

    .textDist {
        margin: 1.4em 40px 0 40px;
        font-size: 1.4em;
        letter-spacing: 1px;
        line-height: 1.6em;
    }
}

@media only screen and (min-width: 768px) and (max-width: 899px) {
    #offers {
        width: calc(100vw - 10vw);
        margin: auto;
        margin-top: -2em;
    }

    .offer {
        width: 100%;
        height: 66vw;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
    }

    .offerImg, .offerImg img {
        height: calc(33vw - 4px);
        width: calc(100vw - 10vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
        display: block;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(23vw - 4px);
        width: calc(33vw - 4px);
        z-index: 100;
    }

    .offerText {
        height: calc(33vw - 4px);
        width: calc(100vw - 10vw - 4px);
        margin-top: 25px;
    }

    .offerHeadline {
        font-size: 1.7em;
        font-weight: 400;
        margin: 1.2em 35px 0 35px;
    }

    .textDist {
        margin: 1em 35px 0 35px;
        font-size: 1.25em;
        letter-spacing: 1px;
        line-height: 1.6em;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    #offers {
        width: calc(100vw - 9vw);
        margin: auto;
        margin-top: -3em;
    }

    .offer {
        width: 100%;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .offerImg, .offerImg img {
        height: calc(40vw - 4px);
        width: calc(100vw - 9vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(40vw - 4px);
        width: calc(100vw - 9vw - 4px);
        z-index: 100;
    }

    .offerText {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: calc(100vw - 9vw - 4px);
        margin-top: 25px;
    }

    .offerHeadline {
        font-size: 1.6em;
        font-weight: 400;
        margin: 1.2em 30px 0 30px;
    }

    .textDist {
        margin: 1em 30px 30px 30px;
        font-size: 1.25em;
        letter-spacing: 1px;
        line-height: 1.6em;
        height: auto;
    }
}

@media only screen and (min-width: 375px) and (max-width: 479px) {
    #offers {
        width: calc(100vw - 8vw);
        margin: auto;
        margin-top: -4em;
    }

    .offer {
        width: 100%;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .offerImg, .offerImg img {
        height: calc(40vw - 4px);
        width: calc(100vw - 8vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(40vw - 4px);
        width: calc(100vw - 8vw - 4px);
        z-index: 100;
    }

    .offerText {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: calc(100vw - 8vw - 4px);
        margin-top: 25px;
    }

    .offerHeadline {
        font-size: 1.6em;
        font-weight: 400;
        margin: 1.2em 30px 0 30px;
    }

    .textDist {
        margin: 1em 30px 30px 30px;
        font-size: 1.25em;
        letter-spacing: 1px;
        line-height: 1.6em;
        height: auto;
    }
}

@media only screen and (max-width: 374px) {
    #offers {
        width: calc(100vw - 8vw);
        margin: auto;
        margin-top: -4em;
    }

    .offer {
        width: 100%;
        margin: 3.5em 0;
        border: 2px solid rgb(175, 187, 66);
        background-color: var(--me-boxes);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .offerImg, .offerImg img {
        height: calc(40vw - 4px);
        width: calc(100vw - 8vw - 4px);
    }

    .offerImg img {
        object-fit: cover;
    }

    .offerImg {
        position: relative;
    }

    #fake {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(40vw - 4px);
        width: calc(100vw - 8vw - 4px);
        z-index: 100;
    }

    .offerText {
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: calc(100vw - 8vw - 4px);
        margin-top: 25px;
    }

    .offerHeadline {
        font-size: 1.5em;
        font-weight: 400;
        margin: 1.2em 30px 0 30px;
    }

    .textDist {
        margin: 1em 30px 30px 30px;
        font-size: 1.1em;
        letter-spacing: 1px;
        line-height: 1.6em;
        height: auto;
    }
}
/* end of Content */
/* ----------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------- */
/* contact */


/* end of contact */
/* ----------------------------------------------------------------------------- */
@media only screen and (min-width: 800px) {
    #kontaktform {
        width: 100%;
        max-width: 750px;
    }
    
    .formdist {
        line-height: 1.2em;
        font-size: var(--me-fontsize);
        margin-top: 0.8em;
        display: block;
    }
}

@media only screen and (min-width: 560px) and (max-width: 799px) {
    #kontaktform {
        width: 90vw;
    }
    
    .formdist {
        line-height: 3.4vw;
        font-size: 3.4vw;
        padding-top: 2.5vw;
        display: block;
    }
    
    #centerbutton {
        font-size: 3.2vw;
    }
    
    #centerbuttonLeft {
        font-size: 2.8vw;
    }
}

@media only screen and (max-width: 559px) {
    #kontaktform {
        width: 95vw;
    }
    
    .formdist {
        line-height: 5.4vw;
        font-size: 5.4vw;
        padding-top: 1.8vw;
        display: block;
    }
    
    #centerbutton {
        font-size: 3.5vw;
        text-align: center;
    }
    
    #centerbuttonLeft {
        font-size: 3vw;
    }
}

#kontaktform {
    margin: Auto;
    display: block;
}

@media only screen and (min-width: 1200px) {
}

input[type=text], #feld {
    border: 1px solid var(--me-color);
    border-radius: 5px;
    width: -webkit-calc(100% - 2px);
    width:    -moz-calc(100% - 2px);
    width:         calc(100% - 2px);
    max-width: 750px;
    padding: 0.2em 0.8em;
    font-size: 1em;
    margin-top: 0.3em;
    box-shadow: none;
}

#anrede {
    border: 1px solid #000;
    border-radius: 5px;
    width: 100%;
    max-width: 200px;
    padding: 0.2em 0.8em;
    font-size: 1em;
    margin-top: 0.3em;
}

#feld {
    height: 200px;
}

input[type=text]:focus, #feld:focus, #anrede:focus {
    background-color: var(--me-boxes);
    border: 1px solid #000;
    outline: none;
}

#centerbutton {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
}

#centerbuttonLeft {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    padding-left: 0.5em;
}

input[type=checkbox] {
    border: 1px solid #000;
    border-radius: 5px;
    -ms-transform: scale(1.8); /* IE */
    -moz-transform: scale(1.8); /* FF */
    -webkit-transform: scale(1.8); /* Safari and Chrome */
    -o-transform: scale(1.8); /* Opera */
    transform: scale(1.8);
    box-shadow: none;
}

input[type=button], input[type=submit], input[type=reset] {
    background-color: grey;
    border: 1px solid #000;
    border-radius: 5px;
    color: white;
    padding: 0.2em 0.8em;
    text-decoration: none;
    cursor: pointer;
    font-size: 1em;
}

span.pflichtfeld {
    font-size: 12px;
    color: Red;
}

span.hilfetext {
    font-size: 10px;
    font-style: Oblique;
}

#kontaktkontakt {
    display: none;
}

#anker {
    text-align: center;
}
/* ----------------------------------------------------------------------------- */
/* footer */
.footer {
    background-color: var(--me-color);
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    width: 100%;
}

#footwrapper1 {
    margin: auto;
}

.footer h2 {
    margin: 1.4em 0 1em 0;
    font-weight: 300;
}

.footerlogo {
    margin: 0 auto 1.4em auto;
    background-image: url(../img/Logo03.png);
    background-size: cover;
}

@media only screen and (min-width: 1080px) {
    .footerlogo {
        width: 14em;
        height: 14em;
    }

    .footer h2 span{
        font-size: 2.5em;
    }

    .reach {
        font-size: 1.4em;
    }
}

@media only screen and (min-width: 768px) and (min-width: 1079px) {
    .footerlogo {
        width: 13em;
        height: 13em;
    }

    .footer h2 span{
        font-size: 2.4em;
    }

    .reach {
        font-size: 1.2em;
    }
}

@media only screen and (min-width: 480px) and (min-width: 767px) {
    .footerlogo {
        width: 12em;
        height: 12em;
    }

    .footer h2 span{
        font-size: 2.2em;
    }

    .reach {
        font-size: 1.1em;
    }
}

@media only screen and (max-width: 479px) {
    .footerlogo {
        width: 10em;
        height: 10em;
    }

    .footer h2 span{
        font-size: 2em;
    }

    .reach {
        font-size: 1em;
    }
}

#reach {
    margin: 0.5em auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer a {
    text-decoration: none;
    color: #fff;
    letter-spacing: 4px;
    margin: 0 2em;
}

#impdat {
    margin: 3em 0;
}

.mirror {
    unicode-bidi: bidi-override;
    direction: rtl;
}

.redundant {
    display: none;
}
/* end of footer */
/* ----------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------- */
/* impressum and data protection */
#impwrapper h1 {
    margin-top: 2em;
}

.imp {
    margin: 1.5em 0 0.5em 0;
}

.implink {
    text-decoration: none;
    color: var(--me-color);
}

#impwrapper p {
    font-size: 1.2em;
    line-height: 1.4em;
}

@media only screen and (max-device-width: 1315px) {
    #impwrapper {
        width: 90vw;
    }
}

@media only screen and (max-width: 390px) {
    #impdat {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    #impdat span {
        display: none;
    }

    #impdat a {
        margin-bottom: 1em;
    }
}
/* end of impressum and data protection */
/* ----------------------------------------------------------------------------- */