@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em 'Roboto', Arial, sans-serif;
    background: url("../images/background.jpg") top center no-repeat;
    background: linear-gradient(to bottom, #ffffff03 300px, #ffffff 700px), url("../images/background.jpg") top center no-repeat;
}
#wrapper {
    position: relative;
    max-width: 833px;
    margin: 1.5rem auto;
    overflow: hidden;
}
strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.under {
    text-decoration: underline;
}
p {
    padding-bottom: 1.5rem;
}
:is(h1, h2) {
    font-weight: 400;
    color: #e2001a;
}
h1 {
    margin: 1rem 0 1.5rem;
    font-size: 1.7em;
    line-height: 1.2;
}
h2 {
    font-size: 1.4em;
    line-height: 1.2;
    margin: 1.5rem 0;
}
ul {
    padding: 0 0 1.5rem 0.75rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.7rem;
    position: absolute;
    left: 0;
    top: 0;
}
ul ul {
    padding-bottom: 0;
}
ul ul li:before {
    content: "\25CB";
    font-size: 0.875em;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.top {
    padding: 1.25rem 1.25rem 0;
}
.slider {
    position: relative;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}
.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}
header {
    background: #fff;
    border: 1px solid #D9DBDE;
    margin-bottom: 1rem;
}
article {
    padding: 1.25rem;
    background: #fff;
}
footer {
    margin: 0 1.25rem;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
footer iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}
@media only screen and (max-width:832px) {
    #wrapper {
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    span {
        display: inline-block;
    }
    header {
        border: none;
    }
    .top {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .top :is(p, h1) {
        text-align: center;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:480px) {
    ul {
        padding-left: 0;
    }
    h2 {
        margin-top: 0;
    }
}