* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v16-latin-regular.eot');
    src: local(''), url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'), url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'), url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg');
}

@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-v16-latin-700.eot');
    src: local(''), url('../fonts/fira-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v16-latin-700.woff2') format('woff2'), url('../fonts/fira-sans-v16-latin-700.woff') format('woff'), url('../fonts/fira-sans-v16-latin-700.ttf') format('truetype'), url('../fonts/fira-sans-v16-latin-700.svg#FiraSans') format('svg');
}

body {
    color: #344a53;
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}

#wrapper {
    max-width: 950px;
    margin: 16px auto;
    border: 1px solid #000;
    background: url('../images/background.jpg') bottom right no-repeat;
    overflow: hidden;
}

header {
    padding: 20px 28px 0 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 76px;
    justify-content: space-between;
}

article {
    padding: 20px 28px 0;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
}

section {
    width: 48.25%;
}

.flexbox section:nth-of-type(1) p {
    padding-bottom: 3px;
}

.flexbox p {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.flexbox p span:nth-of-type(1) {
    min-width: 48px;
    display: flex;
    justify-content: center;
}

.flexbox section:nth-of-type(2) p:nth-of-type(1) span:nth-of-type(1) {
    display: flex;
    justify-content: center;
}

footer {
    padding: 0 28px 10px;
}

footer p {
    font-size: 16px;
    line-height: 22px;
}

p {
    margin: 0 0 16px;
    text-align: justify;
    hyphens: auto;
}

strong {
    font-weight: 700;
}

h1 {
    padding: 8px 20px 6px 28px;
    font-weight: 700;
    font-size: 26px;
    line-height: 38px;
    background: #136577 url('../images/background-titel.jpg') no-repeat center right;
    color: #fff;
    height: 125px;
    width: calc(100% - 223px);
}

h1 span {
    display: block;
    font-weight: 400;
    font-size: 24px;
}

h2 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 700;
    line-height: 23px;
    text-decoration: underline;
    color: #eab400;
}

h3 {
    margin: 10px 0 20px;
    font-weight: 700;
    font-size: 19px;
    line-height: 24px;
    color: #eab400;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #eab400;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 15px;
    margin: 0 0 8px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 25px;
    text-indent: -15px;
}

img {
    max-width: 100%;
    border: none;
}

@media all and (max-width:948px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;
    }

    article {
        padding: 16px 16px 0;
    }

    footer {
        padding: 0 16px 10px;
    }

    h1 {
        font-size: 32px;
        padding: 8px 16px 6px;
        height: auto;
    }

    p {
        text-align: left;
        line-height: 19px;
    }

    br {
        display: none;
    }
}

@media all and (max-width:767px) {
    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 16px 16px 0;
        gap: 20px;
    }

    .flexbox {
        display: block;
        margin: 0 0 32px;
    }

    section {
        width: auto;
    }

    .flexbox p {
        gap: 15px;
        line-height: 22px;
    }

    .flexbox p span:nth-of-type(1) {
        display: flex;
        justify-content: center;
    }

    h1 {
        width: 100%;
    }
}