@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-3-v19-latin-700.eot');
    src: url('../fonts/source-sans-3-v19-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v19-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v19-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v19-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v19-latin-700.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/source-sans-3-v19-latin-900.eot');
    src: url('../fonts/source-sans-3-v19-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v19-latin-900.woff2') format('woff2'), url('../fonts/source-sans-3-v19-latin-900.woff') format('woff'), url('../fonts/source-sans-3-v19-latin-900.ttf') format('truetype'), url('../fonts/source-sans-3-v19-latin-900.svg#SourceSans3') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #FFF;
    font: 700 1em/1.3em 'Source Sans 3', Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') repeat-y;
    background-size: 100% 100%;
    overflow: hidden;
    padding: 0 0 2rem;
}

h2,
strong {
    font-weight: 900;
}

p {
    padding-bottom: 1rem;
}

.pb_2 {
    padding-bottom: 2rem;
}

.pb {
    padding-bottom: 0;
}

h1,
h3 {
    font-size: 2.25em;
    line-height: 1.5;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}

span.color {
    color: #DB0D19;
}

strong.block {
    display: block;
    margin-top: 0.5rem;
}

article {
    padding: 2rem;
}

p.pb_0 {
    padding-bottom: 0.5rem;
}

footer p {
    text-align: center;
    font-size: 1.3em;
    line-height: 1.3em;
}

.flex {
    display: flex;
    justify-content: center;
    gap: 0 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.flex p {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 1rem;
}

p.flex-s {
    display: flex;
    justify-content: start;
    gap: 0 0.5rem;
}

p.flex-s>span:first-of-type {
    width: 5.5rem;
}

.center {
    text-align: center;
}

.logo {
    background: #FFF;
    padding: 2rem 2rem 0;
    margin: 0 0 -1px;
}

@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-size: 100% 100%;
    }

    p :is(a, span) {
        display: inline-block;
    }

    .logo {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .flex {
        padding: 1rem 0;
    }

    .flex p {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
    }

    p.flex-s {
        flex-direction: column;
        align-items: start;
    }

    article {
        padding: 1rem;
    }

    ul li {
        padding-left: 1rem;
    }
}