@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v19-latin-regular.eot');
    src: url('../fonts/inter-v19-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v19-latin-regular.woff2') format('woff2'), url('../fonts/inter-v19-latin-regular.woff') format('woff'), url('../fonts/inter-v19-latin-regular.ttf') format('truetype'), url('../fonts/inter-v19-latin-regular.svg#Inter') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v19-latin-500.eot');
    src: url('../fonts/inter-v19-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v19-latin-500.woff2') format('woff2'), url('../fonts/inter-v19-latin-500.woff') format('woff'), url('../fonts/inter-v19-latin-500.ttf') format('truetype'), url('../fonts/inter-v19-latin-500.svg#Inter') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v19-latin-600.eot');
    src: url('../fonts/inter-v19-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v19-latin-600.woff2') format('woff2'), url('../fonts/inter-v19-latin-600.woff') format('woff'), url('../fonts/inter-v19-latin-600.ttf') format('truetype'), url('../fonts/inter-v19-latin-600.svg#Inter') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v19-latin-700.eot');
    src: url('../fonts/inter-v19-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v19-latin-700.woff2') format('woff2'), url('../fonts/inter-v19-latin-700.woff') format('woff'), url('../fonts/inter-v19-latin-700.ttf') format('truetype'), url('../fonts/inter-v19-latin-700.svg#Inter') format('svg');
}

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #0a4478;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 58.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0.1875rem #999;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

.text_bigger {
    font-size: 1.25rem;
    margin: 0 0 1.875rem;
}

ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

ul li {
    margin: 0 0 0.625rem;
}

h1 {
    font-size: 1.875rem;
    margin: 1.25rem 0 0;
}

h2 {
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
}

h3 {
    font-size: 1.375rem;
    margin: 0 0 0.625rem;
}

h4 {
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0 0 0.625rem;
}

h5 {
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0 0 0.3125rem;
}

header {
    padding: 2.9375rem;
}

.logo_header {
    display: flex;
    justify-content: flex-end;
}

.content {
    padding: 2.9375rem 2.9375rem 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    padding: 0 2.9375rem 1.875rem;
}

.column {
    width: 48%;
}

.grey_bg {
    background-color: #E7E7EF;
    padding: 2.9375rem;
    position: relative;
}

.infos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.infos p {
    position: relative;
    margin: 0 0 1.25rem 1.875rem;
    width: 40%;
}

.infos p::before {
    content: '';
    background: url("../images/pfeil_blau.png") no-repeat center center;
    background-size: contain;
    width: 1.25rem;
    height: 0.6875rem;
    position: absolute;
    top: 0.3125rem;
    left: -1.875rem;
}

.motiv {
    position: absolute;
    bottom: -5rem;
    right: 2.9375rem;
}

.contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
    padding: 1.875rem 0;
    margin: 7.5rem 2.9375rem 1.25rem;
    border-top: 0.0625rem solid #0a4478;
    border-bottom: 0.0625rem solid #0a4478;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a.btn {
    width: 14rem;
    height: 2.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    border: 0.0625rem solid #0a4478;
    border-radius: 0.9375rem;
    transition: all 0.3s ease-in-out;
}

a.btn .hover {
    display: none;
}

a.btn:hover {
    background-color: #0a4478;
    color: #fff;
}

a.btn:hover .normal {
    display: none;
}

a.btn:hover .hover {
    display: inline-block;
}

footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.875rem 2.9375rem;
}

@media only screen and (max-width: 59.3125rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        margin: 1.25rem 0 0.625rem;
    }

    header {
        padding: 1rem;
    }

    .content {
        padding: 1rem;
    }

    .flex {
        padding: 0 1rem 1rem;
    }

    .grey_bg {
        padding: 1rem;
    }

    .contact {
        padding: 1rem;
        margin: 1.25rem 0;
    }

    .contact_image {
        width: 21.125rem;
    }

    .motiv {
        display: none;
    }

    .text {
        width: calc(100% - 21.125rem);
    }

    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 50rem) {
    .remove_margin_bottom {
        margin-bottom: 0;
    }

    h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    h3 {
        margin: 0 0 0.3125rem;
    }

    h5 {
        text-align: center;
    }

    .logo_header {
        justify-content: center;
    }

    .logo_header img {
        max-width: 12.5rem;
        height: auto;
    }

    .image {
        margin: 0 0 1.25rem;
    }

    .content {
        padding: 0 1rem;
    }

    .flex {
        flex-direction: column;
        padding: 0 1rem;
    }

    .column {
        width: 100%;
    }

    .infos {
        flex-direction: column;
    }

    .infos p {
        position: relative;
        margin: 0 0 1.25rem 1.875rem;
        width: 90%;
    }

    .contact {
        flex-direction: column;
        gap: 1.25rem;
        margin: 2.5rem 0 1.25rem;
        border-top: 0.0625rem solid #0a4478;
        border-bottom: 0.0625rem solid #0a4478;
    }

    .contact_image {
        width: auto;
    }

    .text {
        text-align: center;
        align-items: center;
        width: 100%;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    footer p {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 25rem) {
    h1 {
        font-size: 1.5rem;
    }

    .text_bigger {
        font-size: 1.125rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    h4,
    h5 {
        font-size: 1.25rem;
    }
}