@charset "utf-8";

:root {
    --main-text-color: #45454d;
    --positionstitel: #9c1e3a;
    --textlink: #45454d;
    --subheadlines: #9c1e3a;
    --button-background: #fff;
    --button-font-color: #9c1e3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--main-text-color);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    background: #DDDDDD;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 0.5rem;
}

#wrapper {
    position: relative;
    max-width: 51.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
    padding: 0 1.25rem;
}

p {
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

.subtitle {
    margin: 1.25rem 0;
}

header {
    padding: 2rem;
    display: flex;
    background-color: #fff;
}

article {
    margin-top: 0.5rem;
}

article section {
    background: #fff;
    padding: 1.5rem 2rem;
    margin: 0 0 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0.125rem 0.5rem;
}

article p {
    margin: 1rem 0;
}

article h1 {
    color: #9c1e3a;
    font-size: 1.5rem;
    text-align: center;
    margin: 0 0 1.25rem;
}

article h4 {
    font-size: 1.2rem;
    color: var(--positionstitel);
}

article ul {
    margin: 0.5rem 0 0 1.1rem;
    list-style: none;
}

article ul li:before {
    content: "\2022";
    color: #9c1e3a;
    float: left;
    margin: 0 0 0 -0.9375rem;
}

article section.orange {
    background: #fff;
}

article section.orange .fa-solid {
    color: var(--positionstitel);
}

article section.orange p {
    color: #000;
}

article .flex {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

article .btn {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 4.5rem);
}

article .btn a.apply {
    background: var(--positionstitel);
    color: #fff;
    text-align: center;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
}

article figure {
    margin: 0;
    width: 3.125rem;
    display: flex;
    justify-content: center;
}

article figure .fa-solid {
    font-size: 2.2rem;
    color: var(--positionstitel);
}

article .col-2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}

article .col-2 .col-2-inner {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

article .col-2 .col-2-inner .details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

article .col-2 .col-2-inner .details p {
    margin: 0;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: var(--textlink);
    text-decoration: none;
    white-space: nowrap;
}

footer {
    background: #fff;
    margin-top: 0.5rem;
    padding: 1.5rem 1rem;
}

footer p {
    color: #000;
    text-align: center;
    margin: 0;
}

footer .social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0 0;
}

footer .social .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social .item .fa-brands {
    color: #000;
    font-size: 2rem;
}

@media only screen and (max-width: 51.188rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }

    header {
        justify-content: center;
        padding: 1rem;
    }

    article :is(.flex, .col-2) {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    article .col-2 .col-2-inner {
        width: 100%;
        align-items: center;
        flex-direction: column;
    }

    article .col-2 .col-2-inner .details :is(h4, p) {
        text-align: center;
    }

    article .btn {
        flex-direction: column;
        width: auto;
    }
}

@media only screen and (max-width: 30rem) {
    article section {
        padding: 1rem;
    }

    article .btn {
        width: 100%;
    }

    article .btn a.apply {
        font-size: 1rem;
        width: 100%;
        padding: 0.5rem;
    }
}

@media only screen and (max-width: 23.375rem) {
    :is(a:link, a:visited, a:hover, a:active) {
        white-space: normal;
    }

    article .btn a.apply {
        white-space: normal;
    }
}