@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    font-size: 16px;
}

body {
    color: #1d1d1b;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
}

#wrapper {
    max-width: 620px;
    margin: 16px auto;
    border: 2px solid #1d1d1b;
    background: #fff;
    position: relative;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.title {
    flex: 1 1 0;
    padding: 9px 29px 0 26px;
}

article {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box {
    width: 35%;
}

.box:first-of-type {
    width: 62%;
}

footer {
    padding: 10px;
    margin: -144px 36% 0 0;
}

footer p {
    margin: 0;
}

p {
    margin: 0 0 10px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 20px 0 0 -26px;
    padding: 8px 16px 8px 26px;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    background: #0074bb;
    color: #fff;
}

h1 span {
    white-space: nowrap;
}

h2 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    position: relative;
}

h2:before {
    content: '';
    color: #0074bb;
    background: #0074bb;
    position: absolute;
    top: 6px;
    left: -26px;
    width: 14px;
    height: 24px;
}

h3 {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #0069b4;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 16px;
    margin: 0 0 2px;
}

li:before {
    content: '\2022';
    color: #d50f16;
    float: left;
    font-size: 26px;
    text-indent: -16px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #1d1d1b;
    text-decoration: none;
}

@media all and (max-width: 619px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    .title {
        padding: 16px 16px 0;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 0 16px 16px;
        margin: -106px 36% 0 0;
    }

    h1 {
        margin: 0 0 0 -16px;
        padding: 8px 16px;
    }

    h2:before {
        left: -16px;
        width: 10px;
        height: 18px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width: 568px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    article {
        flex-direction: column;
        gap: 16px;
    }

    .box {
        width: 100% !important;
    }

    footer {
        margin: 0;
    }
}