@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-condensed-v31-latin-900.eot');
    src: url('../fonts/roboto-condensed-v31-latin-900.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v31-latin-900.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v31-latin-900.woff') format('woff'),
        url('../fonts/roboto-condensed-v31-latin-900.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v31-latin-900.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jost-v14-latin-regular.eot');
    src: local(''),
        url('../fonts/jost-v14-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/jost-v14-latin-regular.woff2') format('woff2'),
        url('../fonts/jost-v14-latin-regular.woff') format('woff'),
        url('../fonts/jost-v14-latin-regular.ttf') format('truetype'),
        url('../fonts/jost-v14-latin-regular.svg#Jost') format('svg');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/jost-v14-latin-700.eot');
    src: local(''),
        url('../fonts/jost-v14-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/jost-v14-latin-700.woff2') format('woff2'),
        url('../fonts/jost-v14-latin-700.woff') format('woff'),
        url('../fonts/jost-v14-latin-700.ttf') format('truetype'),
        url('../fonts/jost-v14-latin-700.svg#Jost') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Jost', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1040px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h2 {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 900;
}
p.justify {
    text-align: justify;
    hyphens: auto;
}
p {
    padding-bottom: 1rem;
}
strong {
    font-weight: 700;
}
h1, h2 {
    font-style: italic;
    text-transform: uppercase;
}
h1 span {
    font-size: 0.7em;
    text-transform: none;
    font-style: normal;
}
h1 {
    margin: -1.7rem 0 2rem;
    font-size: 2.292em;
    line-height: 1.1;
    text-align: center;
    position: relative;
    z-index: 99;
}
h2 {
    font-size: 1.1em;
    line-height: 1.3;
    display: inline-block;
    color: #FFF;
    padding: 0.3rem;
    background: #DC002C;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "▪";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    position: relative;
}
.psa {
    position: absolute;
    top: 4rem;
    right: 6rem;
}
article {
    padding: 1rem 1.5rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 49%;
}
footer {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    align-items: flex-end;
    position: absolute;
    bottom: 3rem;
    right: 5rem;
}
footer p {
    padding-bottom: 0;
}
.mb {
    margin-bottom: 3rem;
}
@media only screen and (max-width: 1039px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .psa {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    p.justify {
        text-align: left;
    }
    footer {
        padding: 1rem;
        position: static;
        display: flex;
        justify-content: center;
    }
    h1{
        margin: 0 0 1rem;
    }
}
@media only screen and (max-width: 780px) {
    .flex {
        flex-direction: column;
    }
    .flex div {
        width: 100%;
    }
    h1 {
        font-size: 1.6em;
    }
    .mt{
        margin-top: -1rem;
    }
}
@media only screen and (max-width: 630px) {
    .psa img {
        width: 20px;
    }
}
@media only screen and (max-width: 480px) {
    .psa {
        position: static;
        display: flex;
        justify-content: center;
    }
    .psa img {
        width: auto;
    }
}