@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-300.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-300.woff') format('woff'),
        url('../fonts/roboto-v30-latin-300.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-300.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v30-latin-500.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-500.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-500.woff') format('woff'),
        url('../fonts/roboto-v30-latin-500.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.4em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 830px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.jpg') repeat-y;
    overflow: hidden;
    padding: 3rem 2.5rem;
}
:is(h1, strong) {
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
.center, h1 {
    text-align: center;
}
h1 {
    margin: 0;
    font-size: 1em;
    line-height: 1.4;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 300;
}
ul {
    padding: 0 0 1rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header p {
    text-align: center;
    color: #7E7E7E;
    font-size: 0.75em;
    line-height: 1.5;
    position: absolute;
    right: 9.4rem;
    top: 7.25rem;
    z-index: 1;
}
header figure {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
@media only screen and (max-width:829px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    br:not(.block, header br) {
        display: none;
    }
    header p{
        position: static;
    }
     header br {
        display: none;
    }

}
@media only screen and (max-width:768px) {
    #wrapper {
        padding: 2rem;
    }
}
@media only screen and (max-width:650px) {
    #wrapper {
        background-image: none;
    }
   
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
}