@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Calibri, sans-serif;
    color: #000;
    text-align: center;
    font-weight: 700;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 700px;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') no-repeat;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1.3rem 0rem;
    font-size: 1.375em;
    line-height: 1.1em;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}
header {
   display: none;
}
figure{
    display: flex;
    justify-content: center;
}
article {
    padding: 0.5rem 1rem;
    width: 220px;
}
article p:last-of-type{
    padding-bottom: 0.5rem;
    font-size: 1.125em;
    line-height: 1.3;
}
footer {
   
font-family: Arial, sans-serif;
  background: #0E3F82;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 471px;
  position: absolute;
  bottom: 0;
  right: 0;
}
section{
    background: #0E3F82;
    padding: 0.2rem 1rem;
}
footer img{
    display: block;
}
footer p{
    font-size: 0.875em;
    line-height: 1.3;
    color: #fff;
    text-align: left;
}
footer p:last-of-type{
    padding-bottom: 0.4rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
  
    p :is(span, a) {
        display: inline-block;
    }
    header{
        display: block;
    }
    article{
        padding: 1rem;
        width: 100%;
    }
    article p:last-of-type{
        padding-bottom: 1rem;
    }
    article br{
        display: none;
    }
    footer{
        padding: 0.5rem 1rem;
        width: 100%;
        display: block;
        position: static;
    }
    .logo{
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    section p{
        text-align: center;
    }

}