@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #07655C;
    font: 400 1em/1.5em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 815px;
    margin: 1rem auto;
    border: 1px solid #07655C;
    background: #EAEAEA;
    overflow: hidden;
    padding: 2rem 2rem 1rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.8em;
    line-height: 1.3;
    display: block;
    font-weight: 400;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #07655C;
    height: 4px;
    width: 100px;
    margin: 0 0 1rem;
    border-radius: 2px;
}
.info {
    padding-bottom: 2rem;
}
.bg {
    margin: 0 -2rem 1rem;
    padding: 1rem 2rem 0;
    background: #07655C;
}
.bg :is(p, h2) {
    text-align: center;
    color: #fff;
    hyphens: none;
}
.bg h2 {
    font-size: 1.25em;
}
header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
article>h2 {
    background: #07655C;
    color: #fff;
    width: fit-content;
    border-radius: 24px;
    padding: 0.35rem 1rem;
}
@media only screen and (max-width:814px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        text-align: left;
        hyphens: none;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    h1 {
        font-size: 2em;
        line-height: 1.2;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.7em;
    }
}