* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --green: #37A52C;
    --lightgreen: #6FB868;
    --global: 10px;
    --head: 40px;
    --sub: 22px;
    --copy: 16px;
}
@font-face {
    font-family: Outfit;
    src: url(Outfit-Regular.woff2);
    font-weight: normal;
}
@font-face {
    font-family: Outfit;
    src: url(Outfit-SemiBold.woff2);
    font-weight: bold;
}
/* ### - A - ### */
a {
    color: white;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a.link::before {
    content: '';
    display: inline-block;
    background: url('arrow.svg') no-repeat center;
    width: 0.6em; 
    height: 0.6em; 
    margin-right: 0.5em;
    background-size: contain; 
}
.ansprache {
    grid-column: 1/7;
    display: grid;
    grid-template-columns: 1fr;
}
.ansprache-item {
    padding: 20px;
    display: grid;
    gap: 20px;
}
.ansprache-item div {
    display: grid;
    grid-template-rows: max-content max-content 1fr;
    gap: 20px;
}
.ansprache img {
    width: 100%
}
/* ### - B - ### */
body {
    background-color: var(--green);
    font-family: Outfit, sans-serif;
    color: white;
}
/* ### - C - ### */
.cta {
    font-size: var(--head)!important;
    background-color: white;
    color: var(--green);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.cta a {
    color: var(--green);
}
.cta img {
    height: 30px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-iteration-count: infinite;
}
@keyframes bounce {
   0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
   40% {transform: translateY(-30px);} 
   60% {transform: translateY(-15px);} 
} 
.content p {
    font-size: var(--copy);
    margin-bottom: var(--copy);
}
.content ul {
    font-size: var(--copy);
    margin-left: var(--copy);
}
.content li {
    margin-bottom: 5px;
}
.contact {
    padding: 20px;
}
/* ### - D - ### */
.double-footer-box {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.double-footer-img {
    grid-column: span 2;
}
/* ### - E - ### */
/* ### - F - ### */
footer {
    padding: var(--global);
    background-color: white;
    color: var(--green);
}
footer > * {
    grid-column: 1/7;
}
footer a {
    color: var(--green);
    text-decoration: none;
}
footer ul {
    list-style: none;
}
footer img {
    width: 150px;
}
form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 50px 0;
}
form input,
form textarea {
    width: 100%;
    border: none;
    font-family: Outfit, sans-serif;
    font-size: var(--copy);
    color: var(--green);
    padding: 15px;
}
form textarea {
    min-height: 250px;
}
.field, .field-2 {
    grid-column: span 2;
}
form input[type="submit"] {
    background-color: var(--lightgreen);
    color: white;
    cursor: pointer;
    padding: 0;
    grid-column: 2/3;
    text-align: right;
}
form input[type="submit"]:hover {
    text-decoration: underline;
}
/* ### - G - ### */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
/* ### - H - ### */
header {
    padding: var(--global);
    position: fixed;
    top: 0;
    width: 100%;
    pointer-events: none;
}
.header-pic {
    aspect-ratio: 16/9;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
h1 {
    font-size: var(--head);
}
h2, h3 {
    font-size: var(--sub);
    font-weight: normal;
}
.honeypot {
    position: absolute;
    left: -9999px;
}
/* ### - I - ### */
.logo {pointer-events: auto;}
.intro {
    margin-bottom: 150px;
}
img {
    width: 100%;
    display: block;
}
.inhalte-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-top: 2px solid white;
    padding: 20px 0;
}
.inhalte-item:last-of-type {
    border-bottom: 2px solid white;
}
.inhalte-item > * {
    grid-column: span 2;
}
.inhalte-item h3 {
    font-size: var(--sub);
    font-weight: normal;
}
.inhalte-item p {
    font-size: var(--copy);
}
.img-100 {
    grid-column: 1/7;
}
/* ### - J - ### */
/* ### - K - ### */
/* ### - L - ### */
.lightgreen {
    background-color: var(--lightgreen);
}
.leistungen {
    font-size: var(--sub);  
    border-top: 2px solid white;
}
.leistungen li {
    border-bottom: 2px solid white;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px;
    padding: 5px 0;
}
.leistungen li img {
    height: var(--copy);
    margin-top: 12px;
}
.leistungen a {
    padding: 5px 0;
    display: block;
}
/* ### - M - ### */
.menu {
    grid-column: 6/7;
    height: 30px;
    justify-self: end;
    pointer-events: auto;
}
.menu img {
    height: 100%;
}
main {
    padding: var(--global);
    margin-top: 50px;
    grid-row-gap: 50px!important;
    padding-bottom: 50px;
}
main .intro,
main .cta,
main .full,
main .content,
main .single-footer-img,
main .double-footer-box,
main .leistungen,
main .header-pic {
    grid-column: 1/7;
}
/* ### - N - ### */
nav {
    background-color: white;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content;
    grid-row-gap: 20px;
    transition: 0.3s;
    transform: translateX(100vw);
    z-index: 10;
    pointer-events: auto;
}
nav.open {
    transform: translateX(0);
}
nav ul {
    list-style-type: none;
    font-size: var(--head);
    font-weight: bold;
}
nav ul a {
    color: var(--green);
    text-decoration: none;
}
nav ul a:hover {
    text-decoration: underline;
}
nav .close {
    height: 30px;
    display: inline-block;
    justify-self: end;
}
nav .close img {
    height: 100%;
}
/* ### - O - ### */
/* ### - P - ### */
p {
    font-size: var(--copy);
}
p:last-of-type {
    margin-bottom: 0;
}
/* ### - Q - ### */
/* ### - R - ### */
/* ### - S - ### */
.single-footer-img {
    margin-top: 50px;
}
/* ### - T - ### */
/* ### - U - ### */
/* ### - V - ### */
/* ### - W - ### */
/* ### - X - ### */
/* ### - Y - ### */
/* ### - Z - ### */
.zitat {
    grid-column: 1/7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 750px) {
    :root {
        --global: 20px;
        --head: 60px;
        --sub: 30px;
        --copy: 16px;
    }
    main {
        margin-top: 100px;
    }
    main .outro-img {
        grid-column: span 3;
    }
}

@media (min-width: 1000px) {
    :root {
        --global: 40px;
        --head: 60px;
        --sub: 30px;
        --copy: 20px;
    }
    nav {
        width: 50vw;
        right: 0;
        left: inherit;
    }
    .full {
        aspect-ratio: 16/9;
        overflow: hidden;
        width: 100%;
        object-fit: cover;
    }
    .ansprache, .zitat, .img-100 {
        grid-column: 2/6;
    }
    .ansprache-item {
        padding: 40px;
        gap: 40px;
    }
    .contact {
        padding: 40px;
    }
    main {
        grid-row-gap: 100px!important;
    }
    main .content {
        grid-column: 2/6;
    }
    main .leistungen {
        grid-column: 2/6;
    }
    main .cta {
        grid-column: 2/6;
    }
    main .header-pic {
        grid-column: 2/6;
    }
    main .single-footer-img {
        grid-column: 1/7;
        aspect-ratio: 16/9;
        overflow: hidden;
        object-fit: cover;
    }
    main .double-footer-box {
        grid-column: 2/6;
    }
    .double-footer-img {
        grid-column: span 1;
        aspect-ratio: 16/9;
        overflow: hidden;
        object-fit: cover;
    }
    form {
        gap: 20px;
    }
    .field {
        grid-column: span 1;
    }
    footer {
        font-size: 14px;
    }
    footer ul,
    footer img {
        grid-column: span 1;
    }
    .cta {padding: 40px;}
}

@media (min-width: 1350px) {
    .grid-6 {
        grid-column-gap: 40px;
    }
    .logo {
        width: 60%;
    }
    main {
        margin-top: 0;
    }
    main .intro {
        margin-top: -16px;
    }
    main .intro,
    main .cta {
        grid-column: 2/6;
    }
    .menu, nav .close {
        display: none;
    }
    nav {
        grid-column: 6/7;
        transform: inherit;
        background-color: inherit;
        width: auto;
        height: auto;
        padding: 0;
        position: sticky;
    }
    nav ul {
        font-size: var(--copy);
    }
    nav ul a {
        color: white;
    }
    .inhalte-item {
        gap: 40px;
        padding: 40px 0;
    }
    .inhalte-item > * {
        grid-column: span 1;
    }
    .ansprache-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .ansprache-item p:last-of-type {
        align-self: end;
    }
}

@media (min-width: 1650px) {
    :root {
        --global: 60px;
        --head: 80px;
        --sub: 40px;
        --copy: 26px;
    }
    .cta img {
        height: 50px;
    }
    .leistungen li img {
        margin-top: 18px;
    }
}

@media (min-width: 2000px) {
    :root {
        --global: 80px;
        --head: 100px;
        --sub: 60px;
        --copy: 30px;
    }
}