@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #303030;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p a.color{
    color: #000099;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1, h3 {
    font-size: 1.1em;
    line-height: 1.3;
}
h1 {
    margin: 0 0 1rem;
}
h3 {
    margin-bottom: 2rem;
}
h2 {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
ul ul {
    padding: 0.5rem 0 0;
}
ul ul   li{
    padding-bottom: 0.5rem;
}
ul ul   li:before {
    content: "◦";
    font-size: 1.5em;
    float: left;
    margin: -1px 0 0 -1rem;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header figure {
    background: url('../images/bg.jpg') no-repeat top right, linear-gradient(180deg, #010068, #00319D);
    margin-bottom: 0.25rem;
}
article {
    padding: 1rem 4.5rem 0;
}
article figure {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
footer {
    padding: 0 4.5rem 2rem;
}
footer p {
    text-align: right;
}
footer p a {
    color: #fff !important;
    display: inline-block;
    background-color: #000099;
    padding: 0.625rem 1.25rem;
}
span{
        display: inline-block;
    }
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    header figure {
        background-image: linear-gradient(180deg, #010068, #00319D);
        display: flex;
        justify-content: center;
    }
    ul {
        hyphens: auto;
    }
}
@media only screen and (max-width:780px) {
    article {
        padding: 1rem 2rem 0;
    }
    footer {
        padding: 0 2rem 2rem;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 1rem;
    }
}