@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #002E6E;
    font: 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 955px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') no-repeat bottom center;
    overflow: hidden;
    padding: 3rem 2.625rem 5rem 8.25rem;
}
p {
    padding-bottom: 1rem;
}
.pb {
    padding-bottom: 0.5rem;
}
.pb1 {
    padding-bottom: 2rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 2.25em;
    line-height: 1.2;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.375rem;
}
h2 span {
    font-weight: 400;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 3.625rem;
}
ul li:before {
    content: "";
    width: 5px;
    height: 3px;
    background-color: #002E6E;
    float: left;
    margin: 10px 0 0 -1.75rem;
}
header {
    margin: 0 -0.625rem 3rem;
    display: flex;
    justify-content: flex-end;
}
article p img {
    vertical-align: -2px;
}
article::before {
    content: "";
    width: 64px;
    height: 94px;
    background-color: #4F8FCD;
    position: absolute;
    left: 0;
    top: 170px;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer p {
    padding-bottom: 1.25rem;
}
@media only screen and (max-width: 954px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-size: contain;
        padding-left: 2.625rem;
    }
    header {
        margin: 0 0 1.5rem;
        justify-content: center;
    }
    article br {
        display: none;
    }
    article::before {
        width: 1rem;
        top: 155px;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem 2rem 3rem;
    }
    li {
        padding-left: 2.5rem;
    }
    article::before {
        top: 140px;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem 1rem 3rem;
    }
    h1 {
        font-size: 1.75em;
    }
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
    article::before {
        display: none;
    }
}
@media only screen and (max-width: 440px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}