@charset "utf-8";
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot');
    src: local(''), url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), url('../fonts/barlow-v12-latin-regular.woff') format('woff'), url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/barlow-v12-latin-700.eot');
    src: local(''), url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), url('../fonts/barlow-v12-latin-700.woff') format('woff'), url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em 'Barlow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 2px #27BBC2;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0.75rem 15rem;
}
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: 0 0 1rem;
    font-size: 1.425em;
    line-height: 1.3;
    text-align: center;
    color: #27BBC2;
}
h1 span {
    font-size: 2.2em;
    line-height: 1;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    width: 260px;
    padding: 0.125rem 0.625rem;
    background: #27BBC2;
    color: #fff;
    margin: 0 0 0.25rem;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 0.625rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -0.625rem;
}
header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    position: absolute;
    top: 0;
    left: 0;
}
.center {
    text-align: center;
}
footer {
    margin-top: 3rem;
}
.logo {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}
footer p {
    padding: 0;
    font-size: 0.9em;
    line-height: 1.3;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 span {
        font-size: 1.75em;
    }
    header {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1rem;
    }
    header img {
        max-width: calc(50% - 0.75rem);
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
    }
    footer {
        margin: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
}