@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.4em/1.3 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 710px;
    margin: 1rem auto;
    border: solid 1px #002D66;
    background-color: #fff;
    overflow: hidden;
}
h1 {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}
h1, h2 {
    margin: 0;
    font-size: 1.26em;
    line-height: 1.2em;
    color: #F36E21;
}
h1:before {
    content: "•";
    float: left;
    margin: 0 0 0 -1.5rem;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3em;
    color: #0166B3;
    margin-top: 5rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: #002D66;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
article {
    padding: 2rem 14.5rem 1.5rem 2.5rem;
}
section {
    position: absolute;
    bottom: 90px;
    right: 1.8rem;
}
.text {
    position: absolute;
    top: 28rem;
    right: 16rem;
}
section figure {
    display: flex;
    justify-content: flex-end;
}
footer {
    padding: 0 2rem 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
@media only screen and (max-width:709px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 630px) {
    body {
        font-size: 1.25em;
    }
    article {
        padding: 0 1rem 1rem;
    }
    h1 {
        margin-bottom: 1rem;
    }
    section>img {
        margin-right: 0;
    }
    h2 {
        margin: 0;
    }
    section, .text {
        position: static;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    footer {
        padding: 0 1rem 1.5rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}