@charset "utf-8";
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/mulish-v18-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/mulish-v18-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/mulish-v18-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/mulish-v18-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/mulish-v18-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/mulish-v18-latin-regular.svg#Mulish') format('svg');
    /* Legacy iOS */
}
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/mulish-v18-latin-800.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/mulish-v18-latin-800.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/mulish-v18-latin-800.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/mulish-v18-latin-800.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/mulish-v18-latin-800.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/mulish-v18-latin-800.svg#Mulish') format('svg');
    /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em 'Mulish', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto;
    border: none;
    background: #00152d;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 0 20px #808080;
}
:is(h1, h2, strong) {
    font-weight: 800;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0.25rem 0 1.25rem;
    font-size: 2em;
    line-height: 1.1;
    font-style: italic;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    text-transform: uppercase;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "➘";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.pb {
    padding-bottom: 2rem;
}
.flex {
    border-block: 2px solid #fff;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.flex:before {
    content: '';
    position: absolute;
    top: 0.75rem;
    left: 50%;
    width: 1px;
    height: calc(100% - 1.5rem);
    background: #fff;
}
.left, .right {
    width: 48%;
}
a.button {
    background: #CD2220;
    width: fit-content;
    padding: 0.5rem;
    position: relative;
    font-size: 0.9em;
}
a.button:after {
    content: "";
    position: absolute;
    top: 0;
    right: -34px;
    margin-right: 0;
    border-width: 17px;
    border-style: solid;
    border-color: transparent transparent #CD2220 transparent;
    transform: rotate(90deg);
}
header {
    padding-left: 5rem;
}
article {
    padding: 0 3em 0 5em;
}
footer {
    padding: 0.25rem 3em 2em 5em;
}
@media only screen and (max-width:999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        white-space: nowrap;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:768px) {
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .flex:before {
        display: none;
    }
    header {
        padding-left: 2rem;
    }
    article, footer {
        padding-inline: 2em;
    }
}
@media only screen and (max-width:480px) {
    header {
        padding-left: 1rem;
    }
    article, footer {
        padding-inline: 1em;
    }
    h1{
        font-size: 1.7em;
    }
}