* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: "Barlow", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

#wrapper {
    max-width: 864px;
    margin: 16px auto;
    border: 2px solid #6983A1;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

ul ul {
    margin: 0;
}

.width {
    flex: 1 1 0;
}

.button a {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    background: #6983A1;
    padding: 10px 20px;
    color: #fff !important;
    font-size: 19px;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

.button a:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.button {
    margin: 20px 0 30px;
}

.abstand {
    margin-bottom: 25px;
}

.logo {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 29px;
    gap: 27px;
}

header {
    padding: 30px 40px;
    background: #6983A1;
}

article {
    padding: 40px 40px 10px;
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    align-items: flex-start;
}

header p {
    color: #fff;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content p strong {
    color: #D2D932;
}

.content p {
    margin-bottom: 3px;
    font-weight: 700;
}

.content {
    width: 49%;
}

.text {
    flex: 1 1 0;
}

.contact {
    border: 2px solid #6983A1;
    padding: 16px 26px 16px 16px;
    width: 250px;
}

p {
    margin-bottom: 18px;
}

strong {
    font-weight: 700;
}

h1 {
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}

h2 {
    line-height: 1.2;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

.mb0 {
    margin-bottom: 0;
}

ul {
    margin-bottom: 25px;
    list-style: none;
}

ul li {
    padding-left: 24px;
    position: relative;
}

ul li:before {
    content: url(drv-bund-arrow.jpg);
    position: absolute;
    top: 1px;
    left: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.nobr {
    white-space: nowrap;
}

@media (max-width: 863px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header,
    article {
        padding: 16px;
    }

    .br br {
        display: inline;
    }

    br {
        display: none;
    }
}

@media all and (max-width: 599px) {
    h1 {
        font-size: 30px;
    }

    article,
    .logo {
        flex-direction: column;
        align-items: center;
    }

    .content {
        width: 100%;
    }
}