@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-3-v19-latin-regular.eot');
    src: url('../fonts/source-sans-3-v19-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v19-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v19-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v19-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v19-latin-regular.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-sans-3-v19-latin-600.eot');
    src: url('../fonts/source-sans-3-v19-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v19-latin-600.woff2') format('woff2'), url('../fonts/source-sans-3-v19-latin-600.woff') format('woff'), url('../fonts/source-sans-3-v19-latin-600.ttf') format('truetype'), url('../fonts/source-sans-3-v19-latin-600.svg#SourceSans3') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Source Sans 3', "Arial", sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    background-color: #F5F5F5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 57.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 48px 40px 38px;
    border-radius: 40px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

strong {
    font-weight: 600;
}

p:not(:last-child) {
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: normal;
    margin-bottom: 1.875rem;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: normal;
    margin-bottom: 1.313rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 15px .75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #CCCCCC;
    width: 100%;
    text-align: center;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 3px;
}

ul {
    padding: 0 0 0 1.25rem;
}

ul li:not(:first-child) {
    margin-top: .75rem;
}

header>a img {
    border-radius: 30px 30px 0 0;
}

header .flex {
    background-color: #F5F5F5;
    border-top: 1px solid #e8e8e8;
    border-radius: 0 0 20px 20px;
    border: 1px solid #CCCCCC;
    padding: 19px 30px 17px;
    font-size: 1.125rem;
    margin-bottom: 50px;
}

header i {
    margin-right: .625rem;
    color: #656565;
}

header p:not(:last-child) {
    margin-bottom: .3rem;
}

.section {
    padding: 22px 30px;
    border-radius: 30px;
    margin: 50px 0;
}

.onlinebewerbung {
    background-color: #E52328;
    color: #fff;
    margin: 50px 0 0;
}

.onlinebewerbung .flex {
    gap: 1rem 5.75rem;
}

.button {
    margin: 1rem 0;
}

.button a {
    padding: 11px 24px;
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    font-size: 1.125rem;
    border-radius: 50px;
    display: inline-block;
    transition: .2s;
}

.button a:hover {
    background-color: transparent;
    color: #fff;
}

.btn_red a {
    background-color: #E52328;
    color: #fff;
    border: none;
}

.btn_red a:hover {
    background-color: #d5191e;
}

.flex {
    display: flex;
    gap: 1.5rem;
}

.flex>div {
    flex: 50%;
}

.gray {
    background-color: #F5F5F5;
    margin: 30px 0;
}

.gray h2 {
    margin-bottom: 1rem;
}

.benefits {
    border: 1px solid #CCCCCC;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.benefit img {
    width: 140px;
    height: 140px;
    filter: brightness(0) saturate(100%) invert(21%) sepia(91%) saturate(6275%) hue-rotate(349deg) brightness(96%) contrast(93%);
}

.white>a {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.white>a img {
    border-radius: 30px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact>img {
    border-radius: 30px;
}

@media only screen and (max-width: 57.688rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1.5rem;
        border-radius: 0;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    body {
        font-size: 1rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    header .flex {
        margin-bottom: 1.5rem;
    }

    .onlinebewerbung .flex {
        flex-direction: column;
    }
}

@media only screen and (max-width: 38rem) {
    #wrapper {
        padding: 1rem;
    }

    header .flex {
        flex-direction: column;
        gap: .3rem;
        padding: 1rem;
    }

    .section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .benefit {
        margin-bottom: 1rem;
    }

    .benefits .flex {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: .5rem;
    }

    h3 {
        font-size: 1.1rem;
        padding-top: 0;
        margin-bottom: .75rem;
    }

    .contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .button {
        display: flex;
        justify-content: center;
    }
}