@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v36-latin-700.eot');
    src: url('../fonts/open-sans-v36-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v36-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v36-latin-700.woff') format('woff'), url('../fonts/open-sans-v36-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v36-latin-700.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/red-hat-display-v19-latin-700.eot');
    src: url('../fonts/red-hat-display-v19-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/red-hat-display-v19-latin-700.woff2') format('woff2'), url('../fonts/red-hat-display-v19-latin-700.woff') format('woff'), url('../fonts/red-hat-display-v19-latin-700.ttf') format('truetype'), url('../fonts/red-hat-display-v19-latin-700.svg#RedHatDisplay') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/red-hat-display-v19-latin-800.eot');
    src: url('../fonts/red-hat-display-v19-latin-800.eot?#iefix') format('embedded-opentype'), url('../fonts/red-hat-display-v19-latin-800.woff2') format('woff2'), url('../fonts/red-hat-display-v19-latin-800.woff') format('woff'), url('../fonts/red-hat-display-v19-latin-800.ttf') format('truetype'), url('../fonts/red-hat-display-v19-latin-800.svg#RedHatDisplay') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid .062rem #000;
    padding: 3.125rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #008C66;
    font-weight: 700;
}

span {
    white-space: nowrap;
}

h1 {
    text-align: center;
    font-size: 31px;
    line-height: 1.3;
    margin: 0 0 10px;
    font-family: 'Red Hat Display', Arial, sans-serif;
    font-weight: 800;
    padding: 10px 0;
}

.section {
    border-top: solid .25rem #ffcd46;
    border-bottom: solid .25rem #ffcd46;
    margin-bottom: 2.5rem;
}

h2 {
    font-weight: 700;
    font-family: 'Red Hat Display', Arial, sans-serif;
    font-size: 1.062rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-weight: normal;
    margin: 1.25rem 0 0;
    font-size: .937rem;
}

p {
    margin: 0 0 1.25rem;
}

.no-margin {
    margin: 0;
}

ul {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
}

ul li ul {
    margin: 0;
}

ul li {
    padding-left: 2rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.875rem;
    line-height: 0.7;
    color: #008C66;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    column-gap: .375rem;
    padding-bottom: .625rem;
}

footer p:last-of-type {
    margin-bottom: 0;
}

@media only screen and (max-width: 49.98rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        margin-bottom: .5rem;
    }

    .section {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 680px) {
    header {
        flex-direction: column;
    }

    .logo {
        margin: 0 auto 1rem;
    }

    header>img {
        margin: 0 auto;
    }

    ul li {
        padding-left: 1.25rem;
    }

    footer {
        text-align: center;
    }
}