@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.813em/1.2em '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.jpg') no-repeat;
    padding: 0.5rem 11rem;
    height: 1277px;
}
.white, h2, .link {
    color: #fff;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.892em;
    line-height: 1.1em;
    color: #002B59;
    text-transform: uppercase;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
}
a.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #fff;
    background: #002B59;
    vertical-align: bottom;
    margin-right: 2rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
    position: relative;
}
ul li:before {
    content: "\2010";
    font-size: 1.5em;
    line-height: 1;
    position: absolute;
    top: -4px;
    left: 0;
    color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
article {
    padding: 20px 0 0;
}
.logo {
    margin-bottom: 1rem;
}
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: 141px;
    bottom: 10.25rem;
    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;
    }
    ul li:before {
        top: -3px;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        background: #fff;
        padding: 1rem;
    }
    .logo {
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    footer p {
        position: static;
        margin: 1rem auto;
        font-size: 1.5em;
    }
}