@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;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #05143D;
    font: 400 0.875em/1.3 '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;
}

article 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;
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

: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;
}

.logo {
    float: right;
    margin: 0 0 1rem 1rem;
}

header {
    padding: 2rem 2rem 0;
}

article {
    padding: 0 2rem;
}

article figure {
    margin: 0 -2rem;
}

article figure:first-of-type {
    margin-bottom: 1rem;
}

footer {
    background: #05143D;
    padding: 1rem 2rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem 1.5rem;
}

footer p {
    font-size: 1rem;
}

footer :is(p, p a.white) {
    color: #FFF;
}

footer>p:last-of-type {
    margin-left: auto;
}

@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        border-radius: 0;
    }

    article p {
        text-align: left;
    }

    h1 {
        text-align: center;
        font-size: 1.8em;
    }

    .box {
        width: 100%;
    }
}

@media only screen and (max-width:800px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer>p:last-of-type {
        margin-left: 0;
    }

    br {
        display: none;
    }
}

@media only screen and (max-width:550px) {
    .logo {
        float: none;
        margin: 0 auto 1rem;
    }

    header {
        padding: 1rem 1rem 0;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
    }

}