@charset "utf-8";

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/open-sans-v34-latin-300.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-300.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-300.woff') format('woff'), url('../fonts/open-sans-v34-latin-300.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-300.svg#OpenSans') format('svg');
}

@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 300 1rem/1.5em 'Open Sans', Arial, sans-serif;
    background: url('../images/background.jpg') top center no-repeat;
    background-size: cover;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 58.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 8px solid rgba(255, 255, 255, 0.35);
    border-radius: 3px;
    background-clip: padding-box;
}

header {
    padding: 2rem 2rem 0;
}

article {
    padding: 1rem 2rem;
}

article p:not(section p) {
    margin: 1rem 0 1.5rem;
    text-align: justify;
}

article :is(h1, h2) {
    color: #004e93;
    line-height: 120%;
    font-weight: 400;
}

article h1 {
    margin: 1.5rem 0;
    font-size: 1.7rem;
}

article h2 {
    font-size: 1.3rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #004e93;
}

article ul {
    margin: .5rem 0 2rem 1rem;
    list-style: none;
    text-align: justify;
}

article ul li {
    margin-bottom: .5rem;
}

article ul li:before {
    content: "\2022";
    font-size: 17px;
    float: left;
    margin: 0 0 0 -15px;
}

article section {
    padding: 1.5rem 2rem;
    background-color: #eee;
    border-radius: 4px;
}

footer {
    padding: 1rem 2rem 3rem;
}

footer a.btn {
    font-size: 1.25rem;
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    background: #004e93;
    text-align: center;
    border-radius: 4px;
    width: 100%;
    display: block;
}

@media only screen and (max-width: 58.688rem) {

    body {
        background: none;
    }

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article :is(p, ul) {
        hyphens: auto;
        text-align: inherit;
    }

    article p:not(section p) {
        text-align: inherit;
    }
}

@media only screen and (max-width: 30rem) {
    article h1 {
        font-size: 1.5rem;
    }

    header {
        padding: 1rem 1rem 0;
    }

    article {
        padding: 0 1rem 1rem;
    }

    article section p {
        text-align: center;
    }

    footer {
        padding: 1rem 1rem 2rem;
    }
}