@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #585F66;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
#wrapper:after{
  content: "";
  position:absolute;
  width: 100%;
  height: 1rem;
  background: #585F66;
  right: 0;
  bottom: 0;
}
h2+p{
     text-align: justify;
    hyphens: auto;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 -2rem 1rem;
    font-size: 1.3em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #FFF;
    background: #585F66;
    padding: 1rem 2rem;
}
h1 span{
    text-transform: none;
    font-size: 0.8em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h2.mb_0{
    margin-bottom: 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #585F66;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 3rem;
    list-style: none;
}
ul li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "•";
    float: left;
    margin: 0 0 0 -1rem;
}
ul.pb_1{
    padding-bottom: 1.5rem;
}
.flex{
    display: flex;
    justify-content: space-between;
}
.flex div{
    width: 48%;
}
article, footer{
    padding: 0 2rem;
}
footer{
    display: flex;
    justify-content: start;
    gap: 0 5rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    align-items: center;
}
@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    h1{
        text-align: center;
    }
    h2+p{
        text-align: left;
    }
    footer{
        position: static;
        gap: 0 1rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 2rem 2rem;
    }
}
@media only screen and (max-width: 780px) {
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    article{
        padding: 0 1rem;
    }
    ul li{
        padding-left: 1rem;
    }
    ul{
        padding-bottom: 1rem !important;
    }
    footer{
        align-items: center;
    }
    footer p{
        text-align: center;
    }
    footer figure{
        display: flex;
        justify-content: center;
    }
}