@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: .937rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 53.125rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 .062rem .312rem .062rem rgba(0, 0, 0, .25);
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #1C4690;
}

a.color:hover {
    text-decoration: underline
}

p {
    margin: 0 0 .625rem;
}

p span {
    white-space: nowrap
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 5px;
    height: 5px;
    background: #000;
    margin-left: -1.25rem;
    top: .375rem;
}

a.button {
    background: #fff;
    color: #1C4690;
    padding: .625rem 1.25rem;
    display: inline-block;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid #1C4690;
    text-align: center;
}

a.button:hover {
    background-color: #1C4690;
    color: #FFF;
    text-decoration: none;
    border: .062rem solid #1C4690;
}

.nowrap {
    white-space: nowrap;
    font-size: inherit;
    font-weight: inherit
}

hr {
    border-bottom: .062rem solid #1C4690;
    margin: 1rem auto;
}

.blau {
    color: #1C4690;
}

.margin_bottom {
    margin-bottom: 1.875rem;
}

h1 {
    margin: 0 0 .937rem;
    color: #1C4690;
}

h1 span {
    font-weight: normal;
}

h2 {
    color: #1C4690;
    font-size: 1.125rem;
    margin: 0 0 .625rem;
}

h3 {
    font-size: 1.312rem;
    color: #1C4690;
    font-weight: normal;
    margin: 1.875rem 0 0;
}

.kununu {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem
}

article {
    padding: 1.25rem 1.875rem;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.column_left,
.column_right {
    width: 49%;
}

.flex2 {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;
}

.column {
    width: 32%;
    display: flex;
    align-items: center;
    margin: 0 0 .937rem;
    column-gap: .625rem;
}

.column p {
    width: 73%;
    margin: 0;
}

footer {
    padding: 0 1.875rem 1.875rem;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    .kununu {
        top: 32px;
        left: 32px;
        width: 11%
    }

    article,
    footer {
        padding: 0;
    }

    h1,
    .blau {
        text-align: center;
        margin: .625rem 0;
    }

    .flex {
        flex-direction: column;
    }

    .column {
        width: 18.75rem;
    }

    .flex2 {
        justify-content: space-evenly;
    }

    .column_left,
    .column_right {
        width: auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 40.625rem) {
    .column {
        flex-direction: column;
        width: 15.625rem;
    }

    .column p {
        text-align: center;
        width: auto;
        margin: .625rem 0;
    }

    .kununu {
        left: 22px;
        top: 26px
    }
}

@media only screen and (max-width: 530px) {

    h2:nth-of-type(2),
    footer p,
    footer h3 {
        text-align: center
    }

}

@media only screen and (max-width: 376px) {
    .kununu {
        position: static;
        margin: 1rem auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto
    }
}