@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 18px;
    line-height: 1.35;
    font-family: 'Open Sans', sans-serif;
    color: #002060;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #777;
    overflow: hidden;
    background: #FFFFFF url('../images/background.jpg') no-repeat 0 0;
    background-size: 100% 954px;
}

:is(strong, h1, h2 h3) {
    font-weight: 700;
}

h1 {
    margin: 20px 0;
    font-size: 25px;
    line-height: 34px;
    text-align: center;
}

h1 span {
    display: block;
    padding: 2px 0;
    font-size: 23px;
    font-weight: 400;
}

h2 {
    font-size: 16px;
    margin: 0 0 3px;
    text-decoration: underline;
}

h3 {
    text-align: center;
    font-size: 20px;
    margin: 9px 0 4px;
    line-height: 23px;
}

header {
    display: flex;
    padding: 30px 0 0;
    justify-content: center;
}

article {
    padding: 0 40px 15px 60px;
}

article p {
    margin-bottom: 1.5rem;
}

.justify {
    text-align: justify;
    hyphens: auto;
}

footer {
    gap: 2rem;
    justify-content: space-between;
    flex-direction: row-reverse;
    display: flex;
    background: #4273AB;
    padding: 25px 40px 19px;
}

footer p {
    font-size: 16px;
    line-height: 19px;
}

footer :is(h3, p) {
    color: #fff;
}

section p {
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 2rem 32px;
    list-style: none;
    font-size: 15px;
    line-height: 20px;
}

ul li:before {
    content: "\25A0";
    color: #002060;
    float: left;
    font-size: 11px;
    text-indent: -30px;
    line-height: 20px;
    margin-top: 1px;
}

img {
    max-width: 100%;
}

@media (max-width:929px) {
    #wrapper {
        margin: 0;
        border: none;
        background-color: #DFEBF9;
        background-size: 100%;
    }

    article {
        padding: 0 1rem;
    }

    :is(header, footer) {
        padding: 1rem;
    }

    :is(p, ul, .justify) {
        text-wrap: pretty;
        text-align: left;
        hyphens: auto;
    }

    br:not(footer div br) {
        display: none;
    }

    section p {
        text-align: center !important;
    }

    p span {
        white-space: nowrap;
    }
}

@media (max-width:667px) {
    footer {
        flex-direction: column;
        gap: 1rem;
    }

    footer div p {
        text-align: center !important;
    }
}