@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 6rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1.25rem;
    font-size: 2em;
    line-height: 1.1em;
    color: #0E426B;
}
h1 span {
    display: inline-block;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 1rem;
}
h3 {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.438em;
    line-height: 1.3;
    font-weight: 400;
    padding: 1rem 2rem;
    background-color: #9DBF17;
    color: #fff;
    border-radius: 0 0 40px 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.underline {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 3rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.5rem;
}
header {
    padding: 0 0 4rem;
}
hr {
    border: none;
    border-bottom: 2px solid #9DBF17;
    padding-bottom: 2px;
    margin: 1rem 0 3rem;
    width: 175px;
    position: relative;
}
hr::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #9DBF17;
    position: absolute;
    left: 0;
    bottom: 1px;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p span {
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-bottom: 2rem;
    }
    h3 {
        position: static;
        border-radius: 0;
        padding: 0.75rem 2rem;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1.5rem;
    }
}