body {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    color: #2E2E2E;
    margin: 0;
}

a {
    text-decoration: none;
}

header {
    height: auto;
}

header, footer {
    background-color: #f6f6f6;
}

#logos {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 30px 120px;
}

#content {
    display: flex;
    align-items: center;
}

#banner {
    width: 100%;
    height: 75vh;
    position: relative;
    background-image: url("images/normec-uppencamp-bg-img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right, white 0%, transparent 40%);
    z-index: 0;
}

#schrift {
    z-index: 6;
    flex-direction: column;
    display: flex;
    color: #2E2E2E;
    padding: 40px 0 40px 120px;
    width: 50%;
}

h1 {
    font-size: 36px;
    margin: 0;
    text-transform: uppercase;
    padding-bottom: 1rem;
}

#ueberschrift, #text {
    display: flex;
    justify-content: left;
}

p {
    margin-bottom: 60px;
}

#button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.button p {
    margin: 0;
}

.button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid #64b144;
    background: #64b144;
    color: #2E2E2E;
    cursor: pointer;
    width: 250px;
    gap: 10px;
    transition: all 0.3s ease-in;
}

.button:hover {
    background: none;
    color: #2E2E2E;
    border: 2px solid #64b144;
}

.icon {
    width: 32px;
    height: 32px;
    fill: #2E2E2E;
}

.icon-footer {
    width: 25px;
    height: 25px;
}

footer, footer a {
    height: auto;
    color: #333;
}

footer a {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer a:hover {
    color: #64b144;
}

#row {
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
    text-align: left;
    padding: 30px 120px;
}

.viertel {
    flex-basis: 30%;
}

.viertel p {
    margin: 10px;
}

.halb {
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    flex-basis: 45%;
}

.halb p {
    align-self: flex-end;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    #content {
        flex-direction: column;
        padding-top: 60px;
    }
    #logos {
        justify-content: center;
    }
    #banner {
        height: 50vh;
    }
    #banner::before {
        background-image: none;
    }
    #row {
        flex-direction: column;
    }
    .viertel {
        text-align: center;
    }
    footer a {
        justify-content: center;
    }
    #banner {
        justify-content: center;
    }
    #schrift {
        padding-left: 0;
        align-items: center;
    }
    h1 {
        text-align: center;
    }
    #schrift {
        width: 80%;
        text-align: center;
    }
}