@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot');
    src: local(''), url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v25-latin-700.eot');
    src: local(''), url('../fonts/montserrat-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-700.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-700.woff') format('woff'), url('../fonts/montserrat-v25-latin-700.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-700.svg#Montserrat') format('svg');
}

body {
    display: flex;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
}

#wrapper {
    width: 800px;
    border: 1px solid black;
}

header img {
    width: 100%;
    display: block;
}

article {
    margin: 15px 30px 30px;
    position: relative;
}

article .info {
    display: inline-block;
}

article .info p {
    margin: 0 5px 5px 0;
    font-size: 11px;
    font-weight: 700;
    float: left;
    text-transform: uppercase;
}

article .info p::after {
    content: "»";
    color: #0082B4;
    margin-left: 5px;
}

article .info p:last-of-type::after {
    display: none;
}

article .intro {
    margin-top: 20px;
    font-size: 12px;
}

article .intro .titel {
    font-size: 26px;
    text-decoration: underline;
    font-weight: 400;
}

strong{
    font-weight: 700;
}

article .flex {
    display: flex;
    justify-content: center;
    gap: 40px;
}

:is(.flex .right, .flex .left) {
    width: calc(49% - 20px);
}

.block h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 22px 0 10px;
}

.block ul {
    padding-left: 0px;
}

.block ul li {
    list-style: none;
    position: relative;
    margin: 5px 0 0 10px;
    font-size: 12px;
}

.block ul li::before {
    content: '»';
    color: #0082B4;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    left: -10px;
    top: -1px;
}

.block p {
    font-size: 12px;
}

.contact p {
    font-size: 12px;
}

.line {
    position: absolute;
    mix-blend-mode: color-burn;
    left: -30px;
    bottom: -80px;
}

.text p::after {
    margin: 0px 3px;
}

.titel {
    text-transform: uppercase;
}

:is(.block p, .block ul) {
    margin-top: 10px;
}

.block li>ul {
    margin-top: 0;
}

footer .textFlex {
    font-size: 10px;
}

footer .textFlex p {
    margin-bottom: 5px;
}

footer {
    margin: 110px 30px 30px;
}

footer .flex {
    display: flex;
    justify-content: space-between;
}

footer .text {
    display: flex;
    justify-content: start;
    font-size: 10px;
}

footer .text p::after {
    content: "|";
}

footer .text p:last-of-type::after {
    display: none;
}

footer img {
    height: 30px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    .line {
        width: 100%;
        position: static;
    }

    :is(h1, h2, h3, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, p span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }

    footer {
        margin-top: 20px;
    }
}

@media screen and (max-width: 634px) {
    article {
        margin: 15px;
    }

    .right img {
        width: 100% !important;
    }

    article .flex {
        display: block;
    }

    :is(.left, .right) {
        width: 100% !important;
    }

    h1 {
        font-size: 18px !important;
    }

    footer {
        margin: 15px;
    }

    .textFlex {
        text-align: center;
    }

    .flex {
        flex-direction: column;
        align-items: center;
    }
}