@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.eot');
    src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-700.woff') format('woff'), url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6f6f6f;
    font-family: 'Open Sans', "Arial", sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    background-color: #F0F4F8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 53.125rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
}

:is(a:link, a:visited, a:active) {
    color: #5a82b8;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

a.link {
    color: inherit;
    border-bottom: 1px solid #bbb;
}

a.link:hover {
    color: #5a82b8;
    border-bottom: none;
    text-decoration: none;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    text-align: center;
    color: #2fa132;
    font-family: "Arial", sans-serif;
    padding: 1.25rem;
    margin: .75rem;
}

h2 {
    font-size: 1.125rem;
    line-height: 1.3;
    padding-bottom: .75rem;
    color: #2fa132;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 6px 1rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1rem;
    color: #ccc;
    font-size: .8em;
    line-height: 1.6;
}

.box {
    padding: 1.25rem;
    background-color: rgba(42, 83, 139, 0.1);
    margin-top: 0.75rem;
}

.box>:last-child {
    padding-bottom: 0;
}

.small {
    font-size: 10.0pt;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

.button {
    display: flex;
    justify-content: center;
    padding-top: .75rem;
}

.button a {
    padding: 10px 25px;
    border: 1px solid #5a82b8;
    background-color: #2fa132;
    color: #fff;
    border-radius: 100px;
    transition: .3s;
}

.button a:hover {
    background-color: #5a82b8;
    text-decoration: none;
}

@media only screen and (max-width: 53.063rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .justify {
        text-align: left;
    }
}

@media only screen and (max-width: 30rem) {

    h1,
    .box {
        padding: 1rem;
    }

    h2 {
        font-size: 1rem;
    }
}