@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.938em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1020px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
p :is(a,span), li span{
    display: inline-block;
}
 li a.no_ins{
    text-decoration: none;
}
:is(h1, h2, .blue) {
    color: #223276;
}
h1 {
    margin: 0 0 0.3rem;
    font-size: 1.5em;
    line-height: 1.2;
}
h1+p {
    line-height: 1.4;
    font-size: 1.063em;
    padding-bottom: 0.7rem;
}
h2 {
    font-size: 1.145em;
}
h2 {
    text-decoration: underline;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #1F487C;
    text-decoration: none;
}
a.link {
    text-decoration: underline;
    color: #0000FF;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.5rem;
}
article div {
    display: flex;
    justify-content: space-between;
}
article {
    padding: 1rem 3rem 0;
}
footer {
    background: #38AEA4;
    padding: 3rem 2rem 1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}
footer p a.white {
    color: #FFF;
    text-transform: uppercase;
}
footer p {
    font-size: 1.313em;
    line-height: 1.3em;
    padding: 0;
}
footer div:first-of-type {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
}
@media only screen and (max-width:1019px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, ul {
        hyphens: auto;
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article div {
        width: 100%;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    article {
        padding: 1rem 2rem 0;
    }
    article div {
        flex-direction: column;
    }
    article div ul:first-of-type {
        padding-bottom: 0;
    }
    footer {
        margin: 0;
    }
}
@media only screen and (max-width:720px) {
    footer {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    footer div:first-of-type, footer div:last-of-type {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0.5rem;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}