@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: 1rem;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    color: #333;
    font-family: 'Oxygen', Arial, sans-serif;
    font-size: .937rem;
    line-height: 1.5;
    font-weight: 400;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: 1px solid rgb(168, 168, 168);
    background-color: #fff;
    overflow: hidden;
}
p {
    margin: 0 0 1rem;
}
p,
ul {
    hyphens: auto;
}
.nowrap {
    white-space: nowrap;
    font-size: inherit;
    font-weight: inherit;
    color: inherit
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
h1 {
    font-size: 22px;
    font-weight: 400;
    color: #FF6200;
    margin: 10px 0 20px;
}
h1 span {
    font-size: 22px;
    color: #000;
}
h2 {
    font-size: 16px;
    line-height: 1.231em;
    color: #FF6200;
    font-weight: 700;
    margin: 0 0 .125rem;
}
a.link {
    color: #ffffff;
    font-size: .875rem;
    background: #559BD1;
    padding: .5rem .75rem;
    text-decoration: none;
    width: 16.25rem;
    text-align: center;
    font-weight: bold;
}
a.link:hover {
    text-decoration: underline;
}
ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}
ul li {
    padding: 0 0 5px 18px;
}
ul li:before {
    content: "\2022";
    float: left;
    margin-left: -18px;
    font-size: 17px;
    line-height: 1.3;
}
.square {
    list-style: none;
}
.square li {
    padding: 0 0 5px 18px;
}
.square li:before {
    content: "";
    float: left;
    position: relative;
    width: 5px;
    height: 5px;
    background: #333;
    margin-left: -18px;
    top: 8px;
}
article {
    padding: 2rem 2.4rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
}
section {
    width: 50%;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 2rem;
    padding: 0 2.4rem 2rem;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem
    }
    h1 {
        margin: .937rem 0;
    }
    h1 span {
        font-size: 1.25rem
    }
    article {
        padding: 1rem 0;
    }
    footer {
        padding: 0 0 1rem;
    }
    .flex {
        flex-direction: column;
        column-gap: 0;
    }
    section {
        width: 100%;
    }
}
@media only screen and (max-width: 31.25rem) {
    h1 {
        text-align: center;
    }
    footer {
        display: block;
        padding: 0;
    }
    footer img,
    a.link {
        margin: 1rem auto;
        display: block
    }
}