@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v19-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/inter-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/inter-v19-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/inter-v19-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/inter-v19-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/inter-v19-latin-regular.svg#Inter') format('svg');
    /* Legacy iOS */
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v19-latin-600.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/inter-v19-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/inter-v19-latin-600.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/inter-v19-latin-600.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/inter-v19-latin-600.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/inter-v19-latin-600.svg#Inter') format('svg');
    /* Legacy iOS */
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v19-latin-700.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/inter-v19-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/inter-v19-latin-700.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/inter-v19-latin-700.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/inter-v19-latin-700.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/inter-v19-latin-700.svg#Inter') format('svg');
    /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0D2A58;
    font: 400 1.125em/1.3em 'Inter', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 670px;
    margin: 1rem auto;
    border: solid 1px #0D2A58;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem 0.75rem;
    font-size: 1.063em;
    line-height: 1.3em;
    font-weight: 400;
}
h1 span {
    font-size: 0.7em;
    display: inline-block;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
}
h4 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 0.125rem;
}
h2, h4, strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 0.875rem;
    list-style: none;
}
li {
    padding-left: 0.875rem;
}
ul li:before, h1::before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.875rem;
}
main {
    padding: 0 1.75rem 1.25rem;
    background: url('../images/bg.jpg') no-repeat bottom center;
}
.bg {
    font-weight: 600;
    background-color: #E5E8EF;
    padding: 0.5rem 1.75rem;
    margin: 0 -1.75rem 1rem;
    text-align: justify;
    hyphens: auto;
    font-size: 1.1em;
    line-height: 1.2;
}
h2, h4, ul li::before, h1::before {
    color: #F28226;
}
article {
    position: relative;
}
article figure {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer div {
    width: 82%;
    border-top: 2px solid #F28226;
    border-bottom: 2px solid #F28226;
    padding: 0.33rem 0;
}
footer :is(h4, p) {
    text-align: center;
}
footer p {
    font-size: 1.28em;
    line-height: 1.3;
    padding: 0;
}
@media only screen and (max-width: 669px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .bg {
        text-align: left;
    }
    h3 {
        position: static;
        margin: 0 auto 1.5rem;
    }
    h1 {
        margin-bottom: 1.5rem;
    }
    main {
        background-image: none;
    }
    article figure {
        justify-content: center;
        margin-bottom: 1rem;
    }
    footer {
        flex-direction: column;
        gap: 1.25rem;
    }
    footer div {
        width: 100%;
    }
    li br {
        display: none;
    }
}
@media only screen and (max-width: 669px) {
    body {
        font-size: 1em;
    }
    main {
        padding: 0 1rem 1rem;
    }
}