@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: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 68.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

h1 {
    font-size: 1.1875rem;
    line-height: 1.3;
    margin: 1rem 0;
    color: #005B8C;
    text-align: center;
}

h2 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
    color: #005B8C;
}

.margin_bottom {
    margin: 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.web {
    color: #0000FF;
}

.color {
    color: #365F91;
}

p strong {
    color: #005B8C;
}

p {
    margin: 0 0 0.625rem;
}

.center {
    text-align: center;
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

ul li {
    padding-left: 1.7rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.7rem;
    font-size: 1.375rem;
    line-height: 1;
}

article {
    padding: 1rem 3.5rem;
}

.button {
    padding: 1rem 1.625rem;
    margin: 1.875rem auto 0.625rem;
    width: 13.125rem;
    background-color: #004f8c;
    color: #fff;
    text-align: center;
}

footer {
    padding: 0 3.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 68.6875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    article {
        padding: 1rem 1rem;
    }

    footer {
        padding: 0.0625rem 1rem 0;
    }
}

@media only screen and (max-width: 30rem) {
    ul li {
        padding-left: 1rem
    }

    ul li:before {
        margin-left: -1rem;
    }

    article {
        padding: 1rem 0 0;
    }

    footer {
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer p {
        text-align: center;
    }
}