@charset "utf-8";
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v25-latin-700.eot');
    src: local(''),
        url('../fonts/montserrat-v25-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/montserrat-v25-latin-700.woff2') format('woff2'),
        url('../fonts/montserrat-v25-latin-700.woff') format('woff'),
        url('../fonts/montserrat-v25-latin-700.ttf') format('truetype'),
        url('../fonts/montserrat-v25-latin-700.svg#Montserrat') format('svg');
}
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #05143D;
    font: 400 0.8em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 2px #05143D;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
}
:is(a, span) {
    display: inline-block;
}
p a.ins{
    text-decoration: underline;
    color: #2E5696;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.3;
}
h2 {
    font-size: 1.375em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1rem;
}
li:before {
    content: "►";
    float: left;
    margin: -1px 0 0 -1rem;
}
hr {
    border: 1px solid;
    margin: 0.5rem 0 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #05143D;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(h1, h2, h3, footer p, p.font) {
    font-family: 'Montserrat', Arial, sans-serif;
}
.font{
    font-size: 1.125em;
}

header{
    padding: 2rem 2rem 0;
}
article {
    padding: 0.5rem 2rem 0;
}
article figure {
    margin: 0 -2rem;
}
article figure:first-of-type {
    margin-bottom: 1rem;
}
article img {
    display: block;
}
footer {
    background: #05143D;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0 1rem;
}
footer p {
    font-size: 1.1em;
    line-height: 1.3em;
}
footer :is(p, p a.white) {
    color: #FFF;
}
footer p:first-of-type {
    margin-left: -14rem;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        border-radius: 0;
    }
    header .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin: 1rem 1rem -1rem;
    }
    p {
        text-align: left;
    }
    h1 {
        text-align: center;
        font-size: 1.5em;
    }
    footer p:first-of-type {
        margin: 0;
    }
    .box {
        width: 100%;
    }
    br {
        display: none;
    }
}
@media only screen and (max-width:550px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 1rem;
    }
}