@charset "utf-8";
@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: #fff;
    font: 700 1em/1.3em 'Jost', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 650px;
    margin: 1rem auto;
    border: solid 2px #4C4D4F;
    background: #4D4D4F;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 1.5rem 0 1.25rem;
    font-size: 2.7em;
    line-height: 1.2em;
}
h2 {
    font-size: 2.375em;
    line-height: 1.3em;
}
ul {
    padding: 0 0 4rem;
    font-size: 2.35em;
    line-height: 1.3;
    list-style: none;
}
li {
    padding-left: 1.75rem;
}
li:before {
    content: "■";
    float: left;
    margin: -2px 0 0 -1.75rem;
}
h1, h2, p {
    text-align: center;
}
.bg {
    background: #1B3A80;
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
}
.bg p{
    font-size: 1.5em;
    line-height: 1.3;
}
header {
    margin: 0 0 0.5rem -1rem;
}
.flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 1rem;
    margin-left: 2rem;
}
hr {
    border: 1px solid #fff;
    margin:2rem 0 0.5rem;
}
@media only screen and (max-width:649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1, ul {
        font-size: 1.75em;
    }
    ul{
        padding-bottom: 1rem;
    }
    h2 {
        font-size: 1.25em;
    }
    br {
        display: none;
    }
    .flex {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
}