@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/open-sans-v34-latin-300.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-300.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-300.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-300.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-300.svg#OpenSans') format('svg');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/open-sans-v34-latin-800.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-800.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-800.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-800.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-800.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-800.svg#OpenSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Shadows Into Light';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/shadows-into-light-v19-latin-regular.eot');
    src: url('../fonts/shadows-into-light-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/shadows-into-light-v19-latin-regular.woff2') format('woff2'),
        url('../fonts/shadows-into-light-v19-latin-regular.woff') format('woff'),
        url('../fonts/shadows-into-light-v19-latin-regular.ttf') format('truetype'),
        url('../fonts/shadows-into-light-v19-latin-regular.svg#ShadowsIntoLight') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #323e4a;
    font: 300 1em/1.5em 'Open Sans', Arial, sans-serif;
    background: #F9F9F9;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #323e4a;
    background: #F9F9F9;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 800;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, .center {
    text-align: center;
}
h1 {
    margin: 0 0 1rem;
    font: 400 3em/1.1em 'Shadows Into Light', Arial, sans-serif;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.35rem 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;
}
.big {
    font-size: 1.5em;
    line-height: 1.3;
}
.logo {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    background: #fff;
}
article {
    padding: 2rem 2rem 1rem;
}
footer {
    padding: 2rem 2rem 1rem;
    background: #fff;
    margin: 0 2rem;
}
figure {
    margin: 0;
}
.flex {
    display: flex;
    justify-content: space-between;
    background: #fff url('../images/bg.jpg') no-repeat top right;
    padding: 2rem 2rem 1rem;
    margin: 2rem 0;
}
.left, .right {
    width: 48%;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:768px) {
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    .flex, article, footer {
        padding-inline: 1rem;
    }
    footer {
        margin: 0 1rem;
    }
    h1 {
        font-size: 2em;
    }
}