@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v47-latin-regular.eot');
    src: url('../fonts/roboto-v47-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v47-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v47-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v47-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v47-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v47-latin-700.eot');
    src: url('../fonts/roboto-v47-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v47-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v47-latin-700.woff') format('woff'),
        url('../fonts/roboto-v47-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v47-latin-700.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 0.8rem/1.3em 'Roboto', Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 930px;
    border: solid 1px #000;
    background: #fff url('../images/bg.png') no-repeat;
    padding: 0 11rem;
    height: 1400px
}
.white, h2, .link {
    color: #fff;
}
.link {
    padding: 0 0 0 7rem;
    font-weight: 700;
    text-decoration: underline;
}
p {
    padding-bottom: 0.75rem;
    text-align: justify;
}
h1 {
    margin: 1.25rem 0 1.5rem;
    font-size: 1.892em;
    line-height: 1.1em;
    color: #002B59;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0.2rem 16px;
}
ul li:before {
    content: "\2010";
    font-size: 1.5em;
    float: left;
    margin: 0 0 0 -16px;
    color: #fff;
    font-weight: 700;
}
header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
article {
    padding: 36px 0 0;
}
footer p {
    text-align: center;
    font-weight: 700;
    padding: 4rem 1.5rem;
    background: #002B59;
    color: #fff;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    right: 120px;
    bottom: 8rem;
    font-size: 1.7em;
    line-height: 1.3;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:929px) {
    body {
        font-size: 0.938em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background: #00B5EC;
        height: auto;
    }
    p {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        background: #fff;
        padding: 1rem;
    }
    .link {
        padding: 0 0 1rem;
        text-align: center;
    }
    .logo {
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    footer p {
        position: static;
        margin: 1rem auto;
        border-radius: 0px;
        padding: 1rem 1.5rem;
        width: fit-content;
        height: auto;
        font-size: 1.25rem;
    }

    footer a br {
        display: none;
    }
}