/* content */


.content {
    width: calc(100% - 0rem);
    height: calc(100% - 4.375rem);
    min-height: calc(100vh - 4.375rem);
    margin: 4.375rem auto 0;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}


/* default: error, privacy, terms, cookies */
.content_container_default {
    width: calc(100% - 0rem);
    max-width: calc(100% - 0rem);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.default_section {
    width: calc(100% - 6.25rem);
    max-width: calc(75rem - 6.25rem);
    margin: 0 auto;
    padding: 3.125rem;
    display: flex;
    flex-direction: column;
}

.default_section_headline,
.default_section_headline_2 {
    width: calc(100% - 0rem);
    margin: 0 auto;
    color: var(--text-headline);
    font-size: 3.125em;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.default_section_headline_2 {
    text-align: start;
}

.default_section_subheading,
.default_section_subheading_2 {
    max-width: calc(37.5rem - 0rem);
    margin: 1.25rem auto 0;
    color: var(--text-subheading);
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.default_section_subheading_2 {
    max-width: calc(100% - 0rem);
    margin: 1.25rem 0 0;
    text-align: start;
}

.default_section_body {
    width: calc(100% - 6.25rem);
    max-width: calc(75rem - 6.25rem);
    margin: 0 auto;
    padding: 0 3.125rem  6.25rem;
    display: flex;
    flex-direction: column;
}

.default_section_body p {
    padding: 0 0 1.25rem;
    color: var(--text);
    font-size: 0.875em;
    text-align: justify;
}

.default_section_body p:last-child {
    padding: 0;
}

.default_section_body p b {
    color: var(--black);
    font-size: 1em;
    font-weight: bold;
}

.default_section_body p a {
    color: var(--text);
    font-size: 1em;
    text-decoration: none;
}

.default_section_body p a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.default_section_body p a img {
    height: calc(2.5rem - 0rem);
}


/* home: hero */
.content_container_hero {
    width: calc(100% - 0rem);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background-image: url("/images/img_bg_hero.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.content_container_hero_section {
    width: calc(100% - 6.25rem);
    max-width: calc(75rem - 6.25rem);
    margin: 6.25rem auto;
    padding: 0 3.125rem;
    display: flex;
    flex-direction: column;
}

.hero_section_alpha {
    width: calc(100% - 0rem);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero_section_alpha_headline {
    width: calc(100% - 0rem);
    color: var(--text-headline);
    font-size: 3.125em;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.hero_section_alpha_headline_2 {
    width: calc(100% - 0rem);
    color: var(--text-headline);
    font-size: 3.125em;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.hero_section_alpha_headline span,
.hero_section_alpha_headline_2 span {
    color: var(--color-primary);
    font-size: 1em;
    font-weight: 700;
    line-height: 1.5;
}

.hero_section_alpha_subheading {
    max-width: calc(37.5rem - 0rem);
    margin: 1.25rem auto 0;
    color: var(--text-subheading);
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.hero_section_alpha_subheading span {
    font-size: 1em;
    font-weight: 700;
    line-height: 2;
} 

.hero_section_alpha a {
    width: fit-content;
    height: calc(3rem - 1.25rem);
    margin: 2.5rem auto 0;
    padding: 0.7rem 1.25rem 0.55rem;
    background-color: var(--bg-button);
    border: none;
    border-radius: var(--radius-default);
    color: var(--white);
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.hero_section_alpha a:hover {
    background-color: var(--bg-button-hover);
    text-decoration: none;
}


@media only screen and (max-width: 1024px) {


    /* default | error, privacy, terms, cookies */
    .default_section {
        width: calc(100% - 5rem);
        max-width: calc(100% - 5rem);
        padding: 2.5rem;
    }

    .default_section_headline,
    .default_section_headline_2 {
        font-size: 2.5em;
    }

    .default_section_body {
        width: calc(100% - 5rem);
        max-width: calc(100% - 5rem);
        padding: 0 2.5rem 5rem;
    }


    /* home: hero */
    .content_container_hero_section {
        width: calc(100% - 4rem);
        max-width: calc(100% - 4rem);
        padding: 0 2rem;
    }

    .hero_section_alpha_headline {
        font-size: 3.75em;
    }

    .hero_section_alpha_subheading {
        max-width: calc(70% - 0rem);
        font-size: 1.25em;
    }


}


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


    /* default | error, privacy, terms, cookies */
    .default_section {
        width: calc(100% - 2.5rem);
        max-width: calc(100% - 2.5rem);
        padding: 1.25rem;
    }

    .default_section_headline,
    .default_section_headline_2 {
        font-size: 1.875em;
    }

    .default_section_body {
        width: calc(100% - 2.5rem);
        max-width: calc(100% - 2.5rem);
        padding: 0 1.25rem 2.5rem;
    }


    /* home: hero */
    .content_container_hero_section {
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        padding: 0 1rem;
    }

    .hero_section_alpha_headline {
        font-size: 2.5em;
    }

    .hero_section_alpha_subheading {
        max-width: calc(100% - 0rem);
        font-size: 1em;
    }


}


/* content */