@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #32775D;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 610px;
    margin: 1rem auto;
    border: solid 1px #32775D;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
       margin: 0 0 1rem;
    font-size: 2.192em;
    line-height: 1;
}
h1 span{
    font-weight: normal;
    font-size: 0.57em;
    text-transform: none;
}
.ml{
    margin-left: 2rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 2.6em;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}
h1,h2,h3{
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #32775D;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "-";
    font-size: 1.3em;
    float: left;
    margin: -3px 0 0 -1rem;
}
header{
    position: relative;
}
header figure{
    margin: 0 -1rem 1rem;
}
.logo{
    display: flex;
    justify-content: flex-end;
}
.flex{
    display: flex;
    justify-content: space-between;
}
.flex div{
    width: 48%;
}
footer p{
    text-align: center;
}
.small{
    font-size: 0.94em;
    line-height: 1.3em;
}
@media only screen and (max-width: 609px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a,span){
        display: inline-block;
    }
    .logo{
        display: flex;
        justify-content: center;
    }
    ul{
        padding-bottom: 1rem;
    }
    h1 span{
        display: block;
        margin: 0 !important;
    }
    h1, h3{
        text-align: center;
    }
    h1{
        font-size: 1.5em;
        line-height: 1.3;
    }
    h1 span{
        font-size: 0.7em;
    }
    h3{
        position: static;
        margin: 1rem 0;
        font-size: 1.7em;
    }
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100%;
    }
    .hide_m{
        display: none;
    }
}