@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/oxygen-v15-latin-regular.eot');
    src: url('../fonts/oxygen-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/oxygen-v15-latin-regular.woff2') format('woff2'),
        url('../fonts/oxygen-v15-latin-regular.woff') format('woff'),
        url('../fonts/oxygen-v15-latin-regular.ttf') format('truetype'),
        url('../fonts/oxygen-v15-latin-regular.svg#Oxygen') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/oxygen-v15-latin-700.eot');
    src: url('../fonts/oxygen-v15-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/oxygen-v15-latin-700.woff2') format('woff2'),
        url('../fonts/oxygen-v15-latin-700.woff') format('woff'),
        url('../fonts/oxygen-v15-latin-700.ttf') format('truetype'),
        url('../fonts/oxygen-v15-latin-700.svg#Oxygen') format('svg');
}
:root {
    font-size: 14px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333333;
    font: 400 1em/1.4 'Oxygen', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid rgb(168, 168, 168);
    background-color: #fff;
    overflow: hidden;
}
article p {
    padding-bottom: 20px;
}
:is(h1, h2) {
    color: #ff6200;
}
h1 {
    margin: 1rem 0 0;
    font-size: 1.571em;
    line-height: 1.4;
}
h1 span {
    color: #000;
    display: block;
}
h2 {
    font-size: 1.143em;
    line-height: 1.4;
    margin-bottom: 0;
}
h3 {
    font-size: 1.6em;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 400;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0px 0 10px;
    list-style: none;
}
li {
    padding: 0 0 5px 18px;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
    font-family: Arial, serif;
}
article {
    padding: 40px 40px 0;
}
.row {
    display: flex;
    justify-content: space-between;
}
section {
    width: 48%;
}
.button a {
    color: #fff;
    border-radius: 7px;
    color: #ffffff;
    background: #559BD1;
    padding: 8px 12px 8px 12px;
    text-align: center;
    display: inline-block;
    font-weight: 700;
}
.button a:hover {
    text-decoration: underline;
}
footer {
    padding: 0 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
}
@media only screen and (max-width:780px) {
    .row {
        display: block;
    }
    section {
        width: 100%;
    }
    article {
        padding: 20px 5% 0;
    }
    footer {
        padding: 0 5% 20px;
    }
}
@media only screen and (max-width:480px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
}