@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 475px;
    border: solid 1px #000;
    background: #fff;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: -8px 0 0.7rem 1.5rem;
    font-size: 1.313em;
    line-height: 1.3em;
    position: relative;
    color: #19375A;
}
h1:before {
    background: #19375A;
    content: "";
    height: 100%;
    width: 10px;
    position: absolute;
    left: -23px;
    top: 0;
}
h1 small {
    font-size: 0.8em;
    line-height: 1.3;
    display: block;
}
.nopd{
    padding: 0;
}
article {
    padding: 1.5rem 1rem 0;
}
footer {
    padding: 3.7rem 1rem 0;
    background: #19375A url('../images/bg.jpg') no-repeat top;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer p {
    font-weight: 700;
    text-align: right;
    line-height: 1.3;
    color: #fff;
}
figure{
    margin: 5px 0 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:474px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span) {
        display: inline-block;
    }
    footer p{
        text-align: center;
    }
    footer{
        justify-content: center;
    }
    br{
        display: none;
    }
}