body
{
    min-height: 100vh;
    margin: 0;
    padding: 0;

    color: var(--color-font);
}

figure
{
    margin: 0;
}

address
{
    font-style: normal;

    display: flex;

    width: 100%;
    max-width: 46rem;
    margin: 0 auto;

    gap: 1rem;
    justify-content: space-between;
    align-items: flex-end;
}

p
{
    font-family: 'DM Sans';
    font-size: 18px;
    line-height: 1.5em;

    margin: 1em 0;
}



.text figure
{
    margin: 1em 0;
}

.text ul
{
    margin: 0;
    padding: 0 0 0 1em;
}

.text ul li
{
    font-family: 'DM Sans';
    font-size: 18px;
    line-height: 1.5em;

    margin: .5em 0;
}

a
{
    color: var(--color-font);
}

a:hover
{
    text-decoration: none;
}

a strong
{
    font-family: 'DM Sans';
    font-size: .85em;
    font-weight: normal;
    line-height: 1em;

    position: relative;

    display: inline-block;

    padding: .75em 1.5em .75em 1.5em;

    letter-spacing: .25em;
    text-transform: uppercase;

    color: var(--color-white);
    border-radius: 1.5em;
    background-color: var(--color-green);
}

.bg-primary a strong,
.bg-dark a strong
{
    color: var(--color-primary);
    background-color: var(--color-white);
}

a strong:after
{
    display: inline-block;

    content: '→';
    transition: transform 333ms;
    transform: translateX(20%);
}

a:hover strong:after
{
    transform: translateX(50%);
}

strong
{
    font-weight: bold;

    color: color: var(--color-green);
}


h2
{
    font-family: 'Quando';
    font-size: 2rem;
    font-weight: normal;
    font-style: normal;

    margin: 0  0 1em 0;

    hyphens: auto;

    color: var(--color-black);
}

h2:last-child
{
    margin-bottom: 0;
}

h3
{
    font-family: 'DM Sans';
    font-size: 20px;

    margin: 0  0 1em 0;

    hyphens: auto;

    color: var(--color-green);
}

h3:last-child
{
    margin-bottom: 0;
}

h4
{
    font-family: 'Quando';
    font-size: 20px;

    margin: 0  0 1em 0;

    hyphens: auto;

    color: var(--color-green);
}

h4:last-child
{
    margin-bottom: 0;
}

h5
{
    font-family: 'Quando';
    font-size: 18px;

    margin: 0  0 1em 0;

    hyphens: auto;

    color: var(--color-green);
}

h5:last-child
{
    margin-bottom: 0;
}


.header
{
    z-index: 1;

    display: flex;

    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem;

    border-bottom: #fff 1px solid;

    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 50rem)
{
    .header
    {
        position: relative;
    }
}


.header:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 8rem;

    content: '';
    pointer-events: none;

    background: linear-gradient(to bottom, rgba(0,0,0,.5) 0, rgba(0,0,0,.2) 50%,  rgba(0,0,0,0) 100%);
}

.intro
{
    position: relative;
    z-index: -2;

    display: flex;

    height: calc(100vh - 14rem);

    align-items: center;
}

.intro .intro-imagewrap
{
    position: fixed;
    top: 0;

    display: block;

    width: 100%;
    height: 100%;
}

.intro .intro-imagewrap img
{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.intro h1
{
    font-family: 'Quando';
    font-size: 4rem;
    font-weight: normal;
    font-style: normal;

    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 1rem 35% 1rem 1rem;

    hyphens: auto;

    color: var(--color-white);
}

@media (max-width: 48rem)
{
    .intro h1
    {
        font-size: 3rem;

        padding: 1rem 1rem 1rem 1rem;
    }
}

@media (max-width: 36rem)
{
    .intro h1
    {
        font-size: 2.5rem;
    }
}



.footer
{
    display: block;

    width: 100%;

    background-color: var(--color-green-dark);
}

.footer-inner
{
    display: flex;

    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem;

    color: white;

    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}


@media (max-width: 48rem)
{
    .footer-inner
    {
        flex-direction: column;
    }
}


.logo
{
    display: block;

    width: 16rem;
    height: 3rem;
    margin: 0;

    text-indent: -99999px;

    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}





.hamburger
{
    z-index: 1001;

    display: none;
    flex-direction: column;

    width: 30px;
    height: 25px;

    cursor: pointer;

    justify-content: space-between;
}

@media (max-width: 50rem)
{
    .hamburger
    {
        display: flex;
    }
}

.hamburger span
{
    height: 3px;

    transition: all .3s ease;

    border-radius: 2px;
    background: #fff;
}


/* Animation to X */
.hamburger.active span:nth-child(1)
{
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2)
{
    opacity: 0;
}

.hamburger.active span:nth-child(3)
{
    transform: rotate(-45deg) translate(6px, -6px);
}



#navMenu
{
    display: flex;

    justify-content: center;
}

@media (max-width: 50rem)
{
    #navMenu
    {
        display: none;
    }

    #navMenu.active
    {
        position: fixed;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: column;

        width: 100%;
        min-height: 100vh;
        padding: 2rem 2rem 4rem 2rem;

        background-color: rgba(0,0,0,.5);

        backdrop-filter: blur(4px);
    }
}


.menu
{
    display: flex;

    flex: 1;
    justify-content: center;
    align-items: center;
}


@media (max-width: 50rem)
{
    .menu
    {
        flex-direction: column;

        gap: 1rem;
    }
}




.footer-menu
{
    display: flex;

    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 46rem)
{
    .footer-menu
    {
        flex-direction: column;

        align-items: start;
    }

    .menu a,
    .footer-menu a
    {
        padding: .5rem 0;
    }
}


.menu a,
.footer-menu a
{
    font-family: 'DM Sans';
    line-height: 1.2em;

    position: relative;

    display: block;

    margin: 0;
    padding: .5rem 1rem;

    text-decoration: none;

    color: var(--color-white);
}

.menu a.active:after,
.footer-menu a.active:after
{
    position: absolute;
    right: .5em;
    bottom: -3px;
    left: .5em;

    height: 1px;

    content: '';
    transform: translateY(50%);

    background-color: var(--color-white);
}


.menu a.active:before,
.footer-menu a.active:before
{
    position: absolute;
    bottom: -3px;
    left: 25%;

    width: 5px;
    height: 5px;

    content: '';
    transform: translateY(50%);

    border-radius: 50%;
    background-color: var(--color-white);
}



.social
{
    display: flex;

    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 50rem)
{
    .social
    {
        flex-direction: column;

        padding-top: 2rem;

        gap: 1rem;
    }
}


.social a
{
    font-family: 'DM Sans';
    line-height: 1.2em;

    display: block;

    margin: 0;
    padding: .5rem 1rem;

    text-decoration: none;

    color: var(--color-white);
}

.social a svg
{
    width: 1.2rem;
    height: auto;
    margin-right: .5rem;

    vertical-align: middle;

    fill: currentColor;
}

.bg-white
{
    background-color: var(--color-white);
}

.bg-lighter
{
    background-color: var(--color-green-lighter);
}

.bg-light
{
    background-color: var(--color-green-light);
}

.bg-primary
{
    color: var(--color-white);
    background-color: var(--color-green);
}

.bg-dark
{
    color: var(--color-white);
    background-color: var(--color-green-dark);
}

.bg-primary h2,
.bg-dark h2,
.bg-primary h3,
.bg-dark h3,
.bg-primary h4,
.bg-dark h4
{
    color: var(--color-white);
}

.grid
{
    display: block;

    width: 100%;
}

.grid .gridwrap
{
    display: flex;

    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 4rem 1rem;

    gap: 2rem;
}

@media (max-width: 48rem)
{
    .grid .gridwrap
    {
        flex-direction: column;
    }
}


.grid.bg-white + .grid.bg-white .gridwrap,
.grid.bg-lighter + .grid.bg-lighter .gridwrap,
.grid.bg-light + .grid.bg-light .gridwrap,
.grid.bg-primary + .grid.bg-primary .gridwrap,
.grid.bg-dark + .grid.bg-dark .gridwrap
{
    margin-top: -2rem;
    padding-top: 0;
}


.grid .gridwrap .column
{
    display: flex;

    margin: 0 auto;

    flex: 1;
}

@media (max-width: 36rem)
{
    .grid .gridwrap .column
    {
        flex-direction: column;
    }
}


.grid .gridwrap .column img
{
    width: 100%;
    height: auto;
}






.folge-teaser
{
    position: relative;

    display: block;

    width: 100%;
    padding: 1.5rem;

    background-color: var(--color-white);
}

.folge-teaser h5
{
    font-family: 'DM Sans';
    font-size: 20px;

    display: flex;

    align-items: flex-start;
}

.folge-teaser h5 svg
{
    min-width: 2rem;
    max-width: 2rem;
    height: auto;
    margin: .25em 0 0 0;
}

.folge-teaser h5 span
{
    display: inline-block;

    margin: .25em 0 0 .5em;
}


.folge-teaser p
{
    color: var(--color-font) !important;
}


.podcast-folgen
{
    flex-direction: column;
}


.podcast-folge
{
    display: block;

    width: 100%;
    margin: 1rem 0;
    padding: 1.5rem;

    box-shadow: 0 0 2rem rgba(0,0,0,.2);

    gap: 1rem;
}

.podcast-folge-player
{
    min-width: 35%;
}


.podcast-links
{
    display: flex;

    flex-wrap: wrap;
    gap: 1rem;
}



.podcast-link
{
    font-family: 'DM Sans';
    font-size: 14px;

    display: flex;

    text-decoration: none;

    gap: .5rem;
    align-content: center;
    align-items: center;
}

.podcast-link svg
{
    width: 1.5rem;
    height: auto;
}

.podcast-link span
{
    letter-spacing: .1em;
    text-transform: uppercase;
}



.podcast-player
{
    position: relative;

    display: block;

    width: 100%;
    height: 0;
    padding-top: 100%;

    background-color: var(--color-green-light);
}

.podcast-player svg
{
    position: absolute;
    top: 50%;

    width: 100%;
    height: auto;

    transform: translateY(-50%);
}

.custom-audio-player
{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
}

.play-button
{
    font-size: 1.5rem;

    position: absolute;
    right: 1rem;
    bottom: 1rem;

    display: flex;

    width: 4rem;
    height: 4rem;

    cursor: pointer;

    opacity: .85;
    color: white;
    border: none;
    border-radius: 50%;
    background: var(--color-green);

    align-items: center;
    justify-content: center;
}



.grid.slider  .gridwrap
{
    position: relative;

    display: block;
}

.grid.slider  .gridwrap .column
{
    position: relative;

    display: block;
}

.grid.slider  .gridwrap .column .text
{
    position: relative;

    display: block;

    margin: -2rem;
}

.grid.slider .gridwrap .column .text blockquote
{
    font-family: 'DM Sans';
    font-size: 16px;
    line-height: 1.5em;

    position: relative;

    display: block;

    margin: 2rem;
    padding: 2rem;

    color: var(--color-font);
    background-color: #fff;
    box-shadow: 0 0 2rem rgba(0,0,0,.2);
}

.grid.slider  .gridwrap .column .text blockquote footer
{
    font-family: 'DM Sans';

    margin-top: 1rem;
}





.gallery ul
{
    display: flex;

    list-style: none;

    gap: 1rem;
}

.gallery ul li
{
    flex: 1;
}
