@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-regular.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-700.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3a434f;
    font: 400 1em/1.5em 'Open Sans', Arial, sans-serif;
    background: #F7F7F7;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    padding: 0;
}
p img {
    vertical-align: -3px;
}
h1, h2, strong {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1rem 0;
    font-size: 2em;
    line-height: 1.1;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #3a434f;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
article figure {
    margin-bottom: 1rem;
}
.box {
    padding: 1rem 1rem 0;
    margin-bottom: 1rem;
    background: #FEFEFE;
    border: 1px solid #E5E5E5;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex .box {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    width: 48%;
}
.box iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
.button a {
    display: inline-block;
    border-radius: 3px;
    background: #C32A28;
    padding: 0.6rem 1.5rem;
    margin: 1rem auto;
    cursor: pointer;
    border: 0.1rem solid #C32A28;
    transition: all 140ms ease 0s;
    -moz-transition: all 140ms ease 0s;
    -webkit-transition: all 140ms ease 0s;
    color: #fff;
}
.button a:hover {
    text-decoration: none;
}
p :is(a, span) {
    display: inline-block;
}
p span.ml {
    margin-left: 0.5rem;
}
footer p {
    text-align: right;
}
@media only screen and (max-width: 889px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header figure {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    h1, h1+p, .button {
        text-align: center;
    }
    .flex{
        flex-direction: column;
    }
    .flex .box{
        width: 100%;
    }
}