@charset "utf-8";
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v23-latin-regular.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-regular.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-regular.woff') format('woff'),
        url('../fonts/lato-v23-latin-regular.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-700.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-700.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-700.woff') format('woff'),
        url('../fonts/lato-v23-latin-700.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Lato', Arial, sans-serif;
    letter-spacing: 0.2px;
}
#wrapper {
    position: relative;
    max-width: 870px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
h1, h2, h3, strong {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.1em;
    line-height: 1.1;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3+p {
    font-size: 1.2em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "o";
    font-size: 0.8em;
    float: left;
    margin: 0 0 0 -1rem;
}
header figure {
    margin: 2rem -2rem;
}
.logo {
    display: flex;
    justify-content: flex-end;
}
.flex p {
    display: flex;
    justify-content: start;
    padding-bottom: 0.2rem;
}
.flex p >span:first-of-type {
    width: 200px;
}
footer p {
    text-align: center;
    padding: 1rem 0;
}
@media only screen and (max-width: 869px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .flex p {
        flex-direction: column;
        text-align: center;
    }
    .flex p >span:first-of-type {
        width: 100%;
    }
    .hide_m{
        display: none;
    }
}