@charset "utf-8";
@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v16-latin-regular.eot');
    src: local(''), url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'), url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'), url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg');
}
@font-face {
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-v16-latin-700.eot');
    src: local(''), url('../fonts/fira-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v16-latin-700.woff2') format('woff2'), url('../fonts/fira-sans-v16-latin-700.woff') format('woff'), url('../fonts/fira-sans-v16-latin-700.ttf') format('truetype'), url('../fonts/fira-sans-v16-latin-700.svg#FiraSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em 'Fira Sans', Arial, sans-serif;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px) fixed,
        url('../images/bg.jpg') no-repeat top center  fixed;
}
h2, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 740px;
    margin: 1rem auto;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.2);
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #e10e03;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
    color: #e10e03;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "▪";
    float: left;
    color: #e10e03;
    margin: -1px 0 0 -1rem;
}
article {
    padding: 25px 80px 0;
}
footer {
    padding: 0 80px 25px;
}
@media only screen and (max-width:739px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    article {
        padding: 1rem 2rem 0;
    }
    footer {
        padding: 0 2rem 1rem;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 1rem;
    }
}