@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v23-latin-regular.eot');
    src: url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-regular.woff2') format('woff2'), url('../fonts/lato-v23-latin-regular.woff') format('woff'), url('../fonts/lato-v23-latin-regular.ttf') format('truetype'), url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-700.eot');
    src: url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/lato-v23-latin-700.woff2') format('woff2'), url('../fonts/lato-v23-latin-700.woff') format('woff'), url('../fonts/lato-v23-latin-700.ttf') format('truetype'), url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 520px;
    margin: 1rem auto;
    border: 2px solid #1f688d;
    border-left: 126px solid #1f688d;
    background-color: #fff;
}

header {
    padding: 20px 44px 15px 20px;
}

.logo {
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 10px 16px 10px 148px;
    background: #e2e8f0;
    margin-left: -124px;
    position: relative;
}

figure {
    position: absolute;
    top: 25%;
    left: 8px;
}

footer {
    padding: 20px;
}

footer p {
    color: #1f688d
}

p:not(:first-of-type) {
    margin-top: 20px;
}

h1 {
    font-size: 16px;
    line-height: 24px;
    margin: 20px 0 0;
    padding-left: 19px;
}

h1:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 17px;
    text-indent: -19px;
}

h2 {
    font-size: 27px;
    line-height: 1.1;
    font-weight: 400;
    margin-top: 20px;
    color: #1f688d;
}

:is(h1, h2) {
    font-weight: 400
}

img {
    max-width: 100%;
    display: block;
}

strong {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #1f688d;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:520px) {
    #wrapper {
        border: none;
        margin: 0;
        border-left: 50px solid #1f688d;
    }

    article {
        margin-left: -50px;
        padding: 16px 16px 16px 69px;
    }

    :is(header, footer) {
        padding: 16px
    }

    p {
        hyphens: auto;
        text-wrap: pretty
    }

    p span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }

    figure {
        width: 13%;
        top: 40%;
    }

    .link {
        white-space: normal !important;
        word-break: break-all;
    }
}