@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 908px;
    margin: 16px auto;
    border: 2px solid #005f9d;
    padding: 30px 64px 22px;
    background-color: #fff;
}

header {
    margin: 0 -32px 20px;
    display: flex;
    justify-content: flex-end;
}

.banner {
    position: relative;
    margin: 0 -32px 30px;
}

.title {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 999;
    background: rgba(0, 95, 157, 0.8);
    padding: 12px 32px;
}

.title :is(p, h1) {
    color: #fff;
}

footer {
    display: flex;
    justify-content: flex-end;
}

article>p {
    margin: 0 0 16px;
    text-align: justify;
}

.margin {
    margin-top: 62px;
}

span {
    white-space: nowrap;
}

h1 {
    margin: 3px 0;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.1;
}

h1 span {
    font-size: 22px;
}

h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #005f9d;
}

h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 27px;
    color: #005f9d;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 12px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: '\2212';
    float: left;
    font-size: 25px;
    text-indent: -20px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 906px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        padding: 16px;
    }

    :is(header, .banner) {
        margin: 0 0 20px;
    }

    .title {
        padding: 16px;
    }

    .margin {
        margin-top: 28px;
    }

    :is(header, footer) {
        justify-content: center;
    }

    :is(p, ul) {
        text-align: left !important;
        hyphens: auto;
        text-wrap: pretty;
    }

    h3 {
        text-align: center;
    }

    article br {
        display: none;
    }
}

@media all and (max-width: 600px) {
    .title {
        position: static;
    }

    h1 {
        font-size: 34px;
        margin: 6px 0;
        line-height: 1.2;
    }
}