@charset "utf-8";
@font-face {
  font-display: swap; 
  font-family: 'Fira Sans Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fira-sans-condensed-v11-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/fira-sans-condensed-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/fira-sans-condensed-v11-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/fira-sans-condensed-v11-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/fira-sans-condensed-v11-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/fira-sans-condensed-v11-latin-regular.svg#FiraSansCondensed') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Fira Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/fira-sans-condensed-v11-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/fira-sans-condensed-v11-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/fira-sans-condensed-v11-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/fira-sans-condensed-v11-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/fira-sans-condensed-v11-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/fira-sans-condensed-v11-latin-700.svg#FiraSansCondensed') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Fira Sans Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 812px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0;
    font-size: 3em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.67em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
    color: #19446A;
}
h3 {
    font-size: 2em;
    line-height: 1.3;
}
h3 span {
    font-weight: 400;
    font-size: 0.74em;
}
h1, h2, h3 {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 0.75rem;
    line-height: 1.5;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.75rem;
}
.logo {
    display: flex;
    justify-content: center;
    padding: 2.25rem 1rem 1.5rem;
}
header img {
    display: block;
}
article {
    padding: 0 3rem;
}
article p:first-of-type {
    padding-bottom: 0.5rem;
}
.title {
    margin: 0 -3rem 1rem;
    padding: 1.25rem 3rem 1rem;
    background-color: #19446A;
}
h1, h3 {
    color: #fff;
}
footer {
    padding: 1.25rem 3rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0 7rem;
    background-color: #19446A;
}
footer p {
    color: #fff;
    font-size: 1.17em;
    line-height: 1.35;
}
@media only screen and (max-width: 811px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    span {
        display: inline-block;
    }
    li br {
        display: none;
    }
}
@media only screen and (max-width: 780px) {
    article {
        padding: 0 2rem;
    }
    h1 {
        font-size: 2.5em;
    }
    h3 {
        font-size: 1.625em;
    }
    footer {
        padding: 1rem 2rem;
    }
}
@media only screen and (max-width: 630px) {
    footer {
        gap: 0 3rem;
    }
}
@media only screen and (max-width: 570px) {
    h1 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.5em;
    }
    footer {
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    .logo {
        padding: 1rem;
    }
    article {
        padding: 0 1rem;
    }
    footer {
        padding: 1rem 1rem 0;
    }
}