@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 2px #009EE1;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 1rem 0 1.5rem;
    font-size: 1.4375em;
    line-height: 1.1em;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h2, .big, a.color {
    color: #009EE1;
}
h2 span {
    font-size: 1.25em;
}
h3 {
    font-size: 1.75em;
    line-height: 1.3em;
    margin-top: 1rem;
}
h4 {
    font-size: 1.4em;
    line-height: 1.3em;
}
h4, h4 + p {
    color: #fff;
}
h4, h4 + p, h1, h3, .center {
    text-align: center;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.5rem;
}
header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    padding: 0.5rem 1rem 1rem;
}
.big {
    font-size: 1.25em;
    line-height: 1;
    font-weight: bold;
}
.small {
    font-size: 0.875em;
    line-height: 1.3;
    text-align: justify;
    padding-bottom: 0.5rem;
}
hr {
    border: 1px solid #009EE1;
    margin: 0 -0.75rem 0.5rem;
}
article {
    padding: 0 1.5rem;
}
figure {
    position: absolute;
    bottom: 13rem;
    right: 3rem;
}
.abs {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: #009EE1;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 30.5rem;
    right: 0.5rem;
    transform: rotate(13deg);
    line-height: 1.8;
}
footer {
    padding: 0.5rem 1rem 0;
    background: #009EE1;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    .small {
        text-align: left;
    }
    header {
        flex-direction: column;
        gap: 0;
    }
    article {
        padding: 0 1rem;
    }
    figure, .abs {
        position: static;
        margin-bottom: 1rem;
    }
    .abs {
        transform: none;
    }
    figure {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
}