@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.4 'Fira Sans', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto;
    border: none;
    background: #fff;
    overflow: hidden;
    padding: 2rem 3rem;
    text-align: left;
    box-shadow: 3px 3px 11px 2px #939095;
}
a {
    color: #0070c0;
    text-decoration: none;
}
span a {
    color: #000;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 0 0 1.25rem;
    font-size: 1.7em;
    line-height: 1.5;
    color: #004994;
}
h2 {
    font-size: 1.2em;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0070c0;
}
strong, h1, h2 {
    font-weight: 500;
}
ul {
    padding: 0 0 1.25rem;
    list-style: none;
}
li {
    padding: 0 0 0.35rem 1rem;
}
li:before {
    content: "\2022";
    display: block;
    font-size: 1.7em;
    line-height: 1;
    position: relative;
    float: left;
    margin: -3px 0 0 -1rem;
    font-family: Arial, sans-serif;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0 0 1.5rem;
    display: flex;
    justify-content: flex-end;
}
article>p:first-of-type {
    color: #004994;
    font-size: 1.275em;
    line-height: 1.5;
}
article figure {
    margin: 0 0 1.5rem;
    max-width: 740px;
}
article figure img {
    width: 100%;
}
article section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
article section h2 {
    color: #004994;
}
article section aside {
    width: 48%;
}
article section aside:first-of-type {
    background: #C6D9F1;
    padding: 1rem 3rem 1rem 1rem;
}
footer {
    padding: 1rem 0 0;
    text-align: center;
}
footer a {
    background: #004994;
    color: #fff;
    padding: 0.625rem 1.5rem;
}
footer a:hover {
    text-decoration: none;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.8rem;
    }
    article section aside:first-of-type {
        padding: 1rem;
    }
}
@media only screen and (max-width:699px) {
    article section {
        display: block;
        margin-bottom: 0;
    }
    article section aside {
        width: 100%;
    }
    article section aside:first-of-type {
        margin-bottom: 1.5rem;
    }
}
