@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #1B2B59;
    background-color: #fff;
    overflow: hidden;
}
p, ul {
    padding: 0 0 1rem;
    font-size: 0.75em;
    line-height: 1.4em;
}
.pb {
    padding-bottom: 1.5rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 2.8em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.9em;
}
h2 {
    font-size: 0.95em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}
h1, h2 {
    color: #00589C;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1rem;
}
main {
    padding: 2rem 2.5rem;
}
p {
    text-align: justify;
    hyphens: auto;
}
footer {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 2.5rem;
    bottom: 2rem;
    gap: 1.25rem;
}
figure {
    margin-left: -2.375rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    .hide_m {
        display: none;
    }
    h1 {
        font-size: 2.25em;
    }
    footer {
        flex-direction: row;
        align-items: center;
        gap: 1rem 2rem;
        flex-wrap: wrap;
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
    figure {
        margin: 0;
    }
}
@media only screen and (max-width: 780px) {
    h1 {
        font-size: 1.75em;
    }
    main {
        padding: 2rem;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }
    main {
        padding: 1rem;
    }
}