* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --red: #FF0033;
    --purple: #C9A7CF;
    --beige: #F7EDDF;
    --black: #2B2E34;
    --grey: #ECECEC;

    --global: 20px;
    --title: 48px;
    --large: 36px;
    --medium: 24px;
    --copy: 16px;
}
@font-face {
    font-family: Fraunces;
    src: url(Fraunces.woff);
}
@font-face {
    font-family: Albert;
    src: url(Albert.woff);
}
/* ### - A - ### */
a {
    color: black;
    text-decoration: none;
}
a:hover {
    text-decoration: u;
}
.aktion .shape {
    grid-column: 1/13;
    grid-row: 1/4;
    width: 100%;
    height: 100%;
}
.aktion img {
    grid-column: 4/12;
    grid-row: 2/5;
    margin-top: 50px; 
}
.aktion .content {
    grid-column: 2/12;
}
/* ### - B - ### */
body {
    font-family: Albert, sans-serif;
    display: grid;
    grid-template-rows: 1fr max-content;
    min-height: 100vh;
}
.bg-red {background-color: var(--red);}
.bg-beige {background-color: var(--beige);}
.bg-purple {background-color: var(--purple);}
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.button {
    background-color: var(--purple);
    font-family: Albert, sans-serif;
    color: white;
    padding: 10px 25px;
    font-size: var(--copy);
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.button:hover {
    background-color: var(--red);
}
.button.selected {
    background-color: var(--red);
    color: white !important;
    border-color: var(--red);
}
.button-next {
    background-color: black;
    width: 100%;
    max-width: 200px;
    margin: 2rem auto 0 auto !important;
    display: block !important;
}
.bedeutung .shape {
    grid-column: 1/13;
    grid-row: 1/4;
    width: 100%;
    height: 100%;
}
.bedeutung img {
    grid-column: 2/10;
    grid-row: 2/5;
    margin-top: 50px;
}
.bedeutung .content {
    grid-column: 2/12;
}
/* ### - C - ### */
.ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.content {
    padding: 50px 0;
}
.content .ctas,
.thema-content .ctas {
    justify-content: start;
    align-items: start;
    margin: 50px 0;
}
.content-padding {
    padding: 50px var(--global);
}
/* ### - D - ### */
/* ### - E - ### */
.ehrenamt .shape {
    grid-column: 1/13;
    grid-row: 1/6;
    width: 100%;
    height: 100%;
}
.ehrenamt img {
    grid-column: 4/12;
    grid-row: 2/5;
    margin-top: 50px; 
    padding-bottom: 20px;
}
.ehrenamt .content {
    grid-column: 2/12;
}
/* ### - F - ### */
form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: var(--global);
}
form input[type="text"],
form input[type="email"] {
    border: none;
    padding: 10px;
    width: 100%;
    font-family: Albert, sans-serif;
    font-size: var(--copy);
}
form textarea {
    border: none;
    padding: 10px;
    width: 100%;
    min-height: 100px;
    font-family: Albert, sans-serif;
    font-size: var(--copy);
}
form input[type="submit"] {
    background-color: var(--purple);
    color: white;
    padding: 10px 25px;
    font-family: Albert, sans-serif;
    font-size: var(--copy);
    border-radius: 50px;
    cursor: pointer;
    border: none;
    justify-self: start;    
    transition: 0.2s;
}
form input[type="submit"]:hover {
    background-color: var(--red);
}
footer {
    background-color: var(--grey);
    padding: var(--global);
    display: flex;
    gap: var(--global);
}
footer a {
    color: black;
    font-size: 12px;
    text-decoration: none;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* ### - G - ### */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
/* ### - H - ### */
.honeypot {
    position: absolute;
    left: -9999px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: var(--global);
    background-color: white;
    display: flex;
    justify-content: space-between;
}
h1, h2 {
    font-size: var(--title);
    line-height: var(--title);
    margin-bottom: var(--medium);
    font-family: "Fraunces", serif;
}
h3 {
    font-size: var(--medium);
    margin-bottom: var(--medium);
    font-family: "Fraunces", serif;
}
.h-100 {
    min-height: auto;
}
/* ### - I - ### */
.intro {
    padding: 50px var(--global);
    gap: var(--global);
}
img {
    width: 100%;
    display: block;
}
/* ### - J - ### */
/* ### - K - ### */
/* ### - L - ### */
.logo img {
    height: 30px;
}
/* ### - M - ### */
.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu img {
    height: 20px;
}
/* ### - N - ### */
nav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    transform: translateX(100vw);
    background-color: white;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr;
    gap: var(--global);
    transition: 0.3s;
    z-index: 10;
}
nav .close {
    justify-self: end;
}
nav .close img {
    height: 20px;
}
nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
nav a {
    color: var(--black);
    text-decoration: none;
    font-size: var(--medium);
}
nav a:hover {
    color: var(--red);
}
.nav-button {
    background-color: var(--red);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    display: inline-block;
}
/* ### - O - ### */
/* ### - P - ### */
p {
    font-size: var(--copy);
    margin-bottom: var(--copy);
}
p:last-of-type {
    margin-bottom: 0;
}
/* ### - Q - ### */
/* ### - R - ### */
/* ### - S - ### */
.shadow {
  box-shadow: 1px 1px 5px grey;
}
.span-7,
.span-6,
.span-5 {
    grid-column: span 12;
}
/* ### - T - ### */
.ticker {
    padding: 10px 0;
    position: relative;
    z-index: -1;
}
.ticker-container {
    overflow: hidden;
    width: 100vw;
}
.ticker-row img {
    height: 100px;
    width: inherit;
}
.ticker-row:nth-child(odd) img {
    animation-name: scroll-right;
    animation-duration: 50s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.ticker-row:nth-child(even) img {
    animation-name: scroll-left;
    animation-duration: 50s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.thema {
    grid-template-rows: auto;
}
.thema div {
    grid-row: 2/5;
    grid-column: 1/7
}
.thema img {
    grid-row: 1/4;
    grid-column: 2/6;
}
.thema-content ul {
    margin-bottom: var(--copy);
    margin-left: var(--copy);
    font-size: var(--copy);
}
/* ### - U - ### */
/* ### - V - ### */
/* ### - W - ### */
.wolomat-fragen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wolomat-fragen a {
    color: black;
    text-decoration: none;
}
.wolomat-fragen a:hover {
    text-decoration: u;
}
/* ### - X - ### */
/* ### - Y - ### */
/* ### - Z - ### */

@media (min-width: 750px) {
    .ctas {
        flex-direction: row;
    }
    .bedeutung img {
        grid-column: 2/7;
    }
    .aktion img {
        grid-column: 7/12;
    }
    .h-100 {
        min-height: 100%;
    }
}

@media (min-width: 1000px) {
    :root {
        --global: 30px;
        --title: 64px;
    }
    .menu, .close {display: none;}
    nav {
        position: initial;
        width: initial;
        height: initial;
        z-index: initial;
        top: initial;
        right: initial;
        transform: translateX(0);
        background-color: initial;
        display: block;
        padding: 0;
    }
    nav ul {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    nav a {
        font-size: var(--copy);
    }
    .nav-button {
        padding: 5px 15px;
    }
    .intro {
        padding: 100px var(--global);
    }
    .bedeutung, .ehrenamt, .aktion {
        padding-bottom: 0px;
    }
    .bedeutung .shape {
        grid-column: 1/6;
        grid-row: 1/4;
    }
    .bedeutung .content {
        grid-column: 8/12;
        grid-row: 2/3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .bedeutung img {
        grid-column: 3/7;
        grid-row: 2/3;
        margin-top: 0px;
        align-self: center;
    }
    .ehrenamt .shape {
        grid-column: 8/13;
        grid-row: 1/4;
    }
    .ehrenamt img {
        grid-column: 7/12;
        grid-row: 2/3;
        margin-top: 0px;
        align-self: center;
    }
    .ehrenamt .content {
        grid-column: 2/6;
        grid-row: 2/3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .aktion .shape {
        grid-column: 1/6;
        grid-row: 1/4;
    }
    .aktion .content {
        grid-column: 8/12;
        grid-row: 2/3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .aktion img {
        grid-column: 3/7;
        grid-row: 2/3;
        margin-top: 0px;
        align-self: center;
    }
    .content,
    .thema-content {
        padding: 100px var(--global);
    }
    .thema {
        grid-template-rows: auto;
    }
    .thema-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }
    .content .ctas, 
    .thema-content .ctas {
        margin: 50px 0 0 0;
    }
    .thema div {
        grid-row: 1/4;
        grid-column: 2/7;
    }
    .thema img {
        grid-row: 2/3;
        grid-column: 1/5;
        align-self: center;
    }
    .span-6 {
        grid-column: span 6;
    }
    .span-7 {
        grid-column: span 7;
    }
    .span-5 {
        grid-column: span 5;
    }
}

@media (min-width: 1350px) {
    :root {
    --global: 40px;
    --title: 80px;
    --large: 48px;
    --medium: 36px;
    --copy: 20px;
    }
    .ticker-row img {
        height: 150px;
    }
    .content, .thema-content {
        padding: 150px 50px;
    }
    form textarea {
        min-height: 250px;
    }
    .buttons {
        gap: 20px;
    }
    .button {
        /*font-size: var(--medium);*/
        padding: 20px 50px;
    }
}

@media (min-width: 1650px) {
    .content, .thema-content {
        padding: 200px 100px;
    }
}

@media (min-width: 2000px) {
    :root {
    --global: 50px;
    --title: 100px;
    --large: 48px;
    --medium: 36px;
    --copy: 20px;
    }
}