@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Source Sans 3', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 852px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #84C2C5;
    background-color: #fff;
    overflow: hidden;
    padding: 0 0 1rem;
}
h1, h2, strong {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -0.7rem 0 1.5rem;
    font-size: 3em;
    line-height: 1.1;
    color: #84C2C5;
}
h1 small {
    font-size: 0.8em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin: 0 -0.8rem 0.2rem;
    padding: 0.1rem 0.8rem;
    text-transform: uppercase;
}
a {
    color: #FFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
    font-size: 0.9em;
    line-height: 1.3em;
}
li {
    padding: 0 0 0 20px;
}
ul li:before {
    content: "●";
    font-size: 0.5em;
    margin: 2px 0 0 -20px;
    float: left;
}
.center {
    text-align: center;
    padding-bottom: 0.3rem;
}
.logo {
    position: absolute;
    right: 6rem;
    top: 23.7rem;
}
header {
    position: relative;
}
header p {
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 7.5rem;
    left: 0;
    padding: 1rem;
    font-size: 1.07em;
    line-height: 1.3em;
    text-align: justify;
}
article, footer {
    padding: 0.5rem 1rem 0;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.flex div {
    width: 49%;
}
footer p {
    font-size: 0.878em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
.bg {
    text-align: center;
    font-size: 1.825em;
    line-height: 1.3em;
    color: #FFF;
    background: #63ABAF;
    margin: 0 -1rem 1rem;
    padding: 1rem;
}
p.small {
    font-size: 0.7em;
}
p.tr {
    text-align: right;
}
footer {
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width:851px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    header p, .logo {
        position: static;
    }
    header p {
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1{
        font-size: 2em;
    }
    footer{
        flex-direction: column;
    }
    footer p{
        text-align: center !important;
    }
    .bg{
        font-size: 1.3em;
    }
}
@media only screen and (max-width: 780px) {
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100%;
    }
}