@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.eot');
    src: url('../fonts/poppins-v20-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v20-latin-300.woff2') format('woff2'), url('../fonts/poppins-v20-latin-300.woff') format('woff'), url('../fonts/poppins-v20-latin-300.ttf') format('truetype'), url('../fonts/poppins-v20-latin-300.svg#Poppins') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 300 1em/1.3em 'Poppins', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') top right no-repeat;
    overflow: hidden;
    padding: 1rem 1rem 0 3rem;
}
#wrapper:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 1.25rem;
    background: #21BDC6;
    border-right: 0.75rem solid #002849;
}
p {
    padding-bottom: 0.75rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.25em;
    line-height: 1.1em;
}
h1 span {
    font-size: 2.375em;
    line-height: 1;
    display: block;
    color: #064996;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h3 {
    font-size: 2em;
    line-height: 1;
}
h3 small {
    display: block;
    font-size: 1.25rem;
    line-height: 1.1;
}
h3 span {
    color: #009E92;
}
h1, h3 {
    text-transform: uppercase;
}
h1, h2, h3 {
    font-weight: 300;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.375rem 0.75rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -0.75rem;
}
header figure {
    position: absolute;
    top: 0;
    right: 0;
}
article :is(h1, h3) {
    text-align: center;
}
.flex {
    display: flex;
    justify-content: space-between;
    gap: 0 1rem;
    align-items: flex-end;
    margin-top: 0.5rem;
}
.flex div {
    width: 50%;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

footer p {
    font-size: 0.9375em;
    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;
    }
    h3 {
        margin: 1rem 0;
    }
    #wrapper:before {
        display: none;
    }
    header {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }
    header figure {
        position: static;
    }
    .flex {
        flex-direction: column;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
    h1 span {
        font-size: 1.375em;
        line-height: 1.3;
    }
}