* {
    font-family: Helvetica, Arial, sans-serif;
    color: #3c3c3b;
    box-sizing: border-box;
}


/* Layout */
html, body {
    height: 100%;
}
.wrapper {
    display: flex;
    height: 100%;
}
.sidebar {
    flex: 0 0 80px;
    background-color: #ea9200;
    position:relative;
}
.sidebar img {
    position: absolute;
    width: 145px;
    height: auto;
    top: 0;
    left: -30px;
}
.main {
    padding: 150px 20px 50px 30px;
    overflow-wrap: break-word;
    overflow-x: hidden;
}
p.mail {
    border-bottom: 2px solid #ea9200;
    padding-bottom: 3px;
    display: inline-block;
}
footer {
    margin-top: 150px;
    display: flex;
    justify-content: space-between;
    align-items:center;
}
footer .logo {
    width: 130px;
    height: auto;
}


/* Text */

h1 {
    font-size: 1rem;
    color: #ea9200;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}
h2 {
    font-weight: bold;
    font-size: 1.1rem;
    overflow-wrap: break-word;
    margin-top: 6px;
}
h3 {
    font-weight: bold;
    font-size: 1rem;
}
.address,
.mail {
    font-size: .8rem;
}
.mail a {
    text-decoration: none;
}
footer a {
    font-size: .6rem;
}
.subtitle {
    font-weight: bold;
}
.imprint {
    font-size: .9rem;
}
.imprint h2 {
    font-size: 1rem;
    color: #ea9200;
    font-weight: bold;
    text-transform: uppercase;
    margin: 50px 0 20px;
}

/* Ansicht für Tablets und Desktop */

@media screen and (min-width:768px) {

    .main {
        flex: 5;
        padding: 350px 60px 60px 60px;
    }
    .sidebar {
        flex: 3;
    }
    .sidebar img {
        width: 328px;
        left: auto;
        right: -100px;
    }
    footer .logo {
        width: 230px;
        height: auto;
    }
    footer a {
        font-size: .9rem;
    }


    h1 {
        font-size: 1.4rem;
        color: #ea9200;
        text-transform: uppercase;
    }
    h2 {
        font-size: 1.4rem;
    }
    .imprint h2 {
        font-size: 1.4rem;
    }
    .address,
    .mail {
        font-size: 1.2rem;
    }

}

