@charset "utf-8";
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-pro-v21-latin-700.eot'); 
  src: local(''),
       url('../fonts/source-sans-pro-v21-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/source-sans-pro-v21-latin-700.woff2') format('woff2'), 
       url('../fonts/source-sans-pro-v21-latin-700.woff') format('woff'), 
       url('../fonts/source-sans-pro-v21-latin-700.ttf') format('truetype'), 
       url('../fonts/source-sans-pro-v21-latin-700.svg#SourceSansPro') format('svg'); 
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/source-sans-pro-v21-latin-900.eot'); 
  src: local(''),
       url('../fonts/source-sans-pro-v21-latin-900.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/source-sans-pro-v21-latin-900.woff2') format('woff2'), 
       url('../fonts/source-sans-pro-v21-latin-900.woff') format('woff'), 
       url('../fonts/source-sans-pro-v21-latin-900.ttf') format('truetype'), 
       url('../fonts/source-sans-pro-v21-latin-900.svg#SourceSansPro') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 700 1em/1.3em 'Source Sans Pro', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') repeat-y;
     background-size: 100% 100%;
    overflow: hidden;
    padding: 0 0 2rem;
}
h1,h2, strong{
    font-weight: 900;
}
p {
    padding-bottom: 1rem;
}
p.pb_2{
    padding-bottom: 2rem;
}
.pb{
    padding-bottom: 0 !important;
}
h1, h3 {
    margin: 0 0 1rem;
    font-size: 1.9692em;
    line-height: 1.1;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    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;
}
span.color{
    color: #DB0D19;
}
strong.block{
    display: block;
    margin-top: 0.5rem;
}
article{
    padding: 2rem;
}
p.pb_0{
    padding-bottom: 0.5rem;
}
footer p {
    text-align: center;
    font-size: 1.3em;
    line-height: 1.3em;
}
.flex{
    display: flex;
    justify-content: center;
    gap: 0 2rem;
    flex-wrap: wrap;
}
.flex p{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 1rem;
}
p.flex-s{
    display: flex;
    justify-content: start;
    gap: 0 0.5rem;
}
p.flex-s span:first-of-type{
    width: 5rem;
}
.center{
    text-align: center;
}
.logo{
    background: #FFF;
     padding: 2rem 2rem 0;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-size: 100% 100%;
    }
    p :is(a,span){
        display: inline-block;
    }
    .logo{
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    p.flex-s{
        flex-direction: column;
    }
    article{
        padding: 1rem;
    }
    ul li{
        padding-left: 1rem;
    }
}