﻿@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

.link {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.link:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #231F20;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: .875rem;
    line-height: 1.4;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: solid thin #000;
    padding: 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

p {
    text-align: justify;
    margin: 0 0 1.5625rem;
}

.text_nobr {
    white-space: nowrap;
}

h1 {
    text-align: center;
    font-size: 2.187rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 600;
}

h1 + p {
    color: #231F20;
    font-weight: 400;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0 0 .312rem;
    color: #01558C;
    font-weight: 600;
}

h3 {
    color: #850047;
    font-size: 1.25rem;
    background: #D9E0FC;
    text-align: center;
    padding: .062rem 0 .187rem;
    margin: 0 -0.625rem .312rem;
    font-weight: 400;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
    text-align: left;
}

ul li {
    padding-left: .812rem
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .25rem;
    height: .25rem;
    border-radius: 50%;
    background: #871E60;
    margin-left: -.812rem;
    top: .5rem;
}

header {
    margin: 0;
    position: relative;
}

.logo {
    position: absolute;
    width: 21%;
    height: 21%;
    right: 4%;
    top: 6%;
}

.section_transparent_blue {
    margin: 0;
    padding: 1.25rem;
    background: rgba(5, 84, 139, 0.9);
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

article {
    position: relative;
    padding: 1.25rem 2.5rem 0.625rem;
}

.section_title {
    background: #F4F3F5;
    width: 42%;
    padding: 1rem 1.25rem 3.125rem;
    color: #05548B;
    position: absolute;
    bottom: 0;
    left: 2.5rem;
}

.section_title p {
    text-align: center;
    font-size: .875rem;
    line-height: 1.6;
    margin: 0 0 0.625rem;
}

.section_title p:first-of-type {
    font-weight: 600;
}

.section_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section_column1 {
    width: 49%;
}

.section_column2 {
    width: 49%;
    margin: 1.875rem 0 0;
}

.section_column2 > p:last-of-type {
    margin: 0;
}

.section_bewerbung {
    background: #F4F3F5;
    padding: .625rem 1.25rem .312rem;
}

.section_bewerbung > p:first-of-type {
    color: #05548B;
}

.section_bewerbung > p:last-of-type {
    width: 90%;
}

.paragraph_margin_big {
    margin: 0 0 2.5rem;
}

.paragraph_margin_small {
    margin: 0 0 0.625rem
}

.text_letterspacing {
    letter-spacing: 0.0313rem;
}

.text_changecolor {
    color: #05548B;
    font-weight: 600;
}

.text_weight_change {
    font-weight: 600;
}

.link_blue {
    color: #05548B;
    font-weight: 700;
    white-space: normal;
    text-align: left;
    font-size: 1rem;
    text-decoration: none;
}

.link_blue:hover {
    text-decoration: underline;
}

.section_bewerbung p {
    margin-bottom: .625rem;
}

.section_bewerbung p:nth-of-type(3) {
    margin: 0 0 .125rem 0;
}

.section_bewerbung h3 {
    text-align: left;
    padding: 0 0 0 .125rem;
    margin: 0 0 0 .062rem;
    width: 68%;
    font-size: 1.125rem;
}

footer {
    background-color: #F4F3F5;
    color: #05548B;
    margin: 0 2.5rem 2.5rem;
    padding: .625rem 1.25rem;
    border-top: .5rem solid #871E60;
    border-bottom: .062rem solid #871E60;
}

footer p {
    font-size: 1rem;
    margin: 0 0 0.3125rem;
}

footer p:last-of-type {
    margin-bottom: 0;
}

.link_footer {
    color: #05548B;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}

.link_footer:hover {
    text-decoration: underline;
}

@media only screen and (max-width:49.9375rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }

    p {
        text-align: left;
    }

    p,
    ul {
        margin: 0 0 1.25rem;
    }

    li > br,
    h1 > br {
        display: none;
    }

    h2 {
        font-size: 1rem;
    }

    header {
        margin: 0;
        position: relative;
    }

    .logo {
        position: static;
        width: auto;
        height: auto;
        margin: 1rem;
        display: inline-block;
    }

    .section_transparent_blue {
        padding: 0.625rem;
        position: static;
    }

    article {
        padding: 0;
    }

    .section_title {
        width: auto;
        padding: 0.625rem 1rem;
        position: static;
    }

    .section_flex {
        display: block;
        padding: 1rem;
    }

    .section_column1 {
        width: auto;
    }

    .section_column2 {
        width: auto;
        margin: 0;
    }

    .section_bewerbung {
        padding: 0.625rem;
        margin: 0 0 1.25rem;
    }

    .section_bewerbung > p:last-of-type {
        width: auto;
    }

    .paragraph_margin_big {
        margin: 0 0 1.25rem;
    }

    .text_letterspacing {
        letter-spacing: normal;
    }

    .section_bewerbung h3 {
        text-align: left;
        padding: 0.125rem;
        width: auto;
        display: inline-block;
        font-size: 1rem;
    }

    footer {
        background-color: #F4F3F5;
        color: #05548B;
        margin: 0 1rem 1rem;
        padding: 0.625rem 1rem;
    }

    footer p {
        font-size: 0.875rem;
    }

    .link_footer {
        font-size: 1rem;
    }
}

@media only screen and (max-width:29.937rem) {
    h1 {
        font-size: 1.5em;
    }
}