@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0C425B;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 2px solid #0C425B;
    background: #fff;
    overflow: hidden;
    padding-right: 1rem;
}
#wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 30%;
    background: #0C425B;
}
#wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 70%;
    background: #F47924;
}
:is(h1, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    font-size: 1.8rem;
    line-height: 0.9;
    color: #F47924;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 2.6em;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.top {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    align-items: flex-end;
}
.banner {
    position: relative;
}
.banner a {
    position: absolute;
    top: 4%;
    right: 2%;
    width: 16%;
    height: 30%;
}
article {
    padding: 1rem 1rem 0;
}
footer {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
footer p {
    font-size: 0.75em;
    line-height: 1.3;
}
.left {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
.right {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    h1, h2 {
        font-size: 2em;
    }
    .top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    footer p {
        font-size: 0.875em;
    }
}