@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 {
    font: 700 1em/1.3em 'Roboto', Arial, sans-serif;
    color: #fff;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 930px;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') no-repeat top;
}
p {
    padding-bottom: 0.3rem;
}
ul {
    padding: 0 0 0 0;
    list-style: none;
    line-height: 1.4;
}
li {
    padding: 0 0 0 13px;
}
ul li:before {
    content: "•";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -13px;
}
ul small {
    display: block;
    margin: 0 0 0 -1rem;
    font-size: 0.75em;
}
header {
    position: relative;
}
header p {
    position: absolute;
    left: 2rem;
    top: 15rem;
}
article {
    padding: 1rem 2.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
article div{
    width: 30%;
}
article :is(ul,p){
    color: #0D6A6A;
}
article :is(ul li small,p){
     font-weight: 400;
}
footer {
    padding: 0.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #975D8E;
}
footer figure{
    position: absolute;
    bottom: 0.5rem;
    right: 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
.right ul{
    line-height: 1.53em;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #458F90;
    }
    p a {
        display: inline-block;
    }
    article {
        background: #fff;
        padding: 1rem;
        border-radius: 10px;
        margin: 0.5rem;
    }
    header p {
        position: static;
        padding: 1rem;
    }
    br {
        display: none;
    }
    footer{
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
    footer p{
        text-align: center;
    }
}
@media only screen and (max-width: 480px){
    article{
        flex-direction: column;
    }
    article div{
        width: 100%;
    }
    footer figure{
        position: static;
    }
}