@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-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-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 22px;
    font-size: 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 860px;
    margin: 1rem auto;
    border: 2px solid #0c785d;
    overflow: hidden;
    background-color: #fff;
    padding: 2rem;
}

header {
    position: relative;
    padding: 0 256px 0 0;
}

.logo {
    position: absolute;
    top: -30px;
    right: 26px;
}

header p {
    text-align: center;
}

article {
    margin: 0;
}

footer {
    margin: 0;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 4rem 0 1rem;
    font-size: 60px;
    line-height: 1.3;
    text-align: center;
}

h1 span {
    background: #0c785d;
    padding: 10px 1rem;
    color: #FFF;
    display: block;
}

h1 small {
    font-weight: normal;
    display: block;
    font-size: 26px;
    color: #0c785d;
    margin: 1.5rem 0;
}

h2 {
    font-size: 35px;
    margin: 1rem 0;
    line-height: 1.1;
    color: #0c785d;
    text-align: center;
    letter-spacing: 1px;
}

h2 small {
    font-weight: normal;
    font-size: 1rem;
    color: #000;
    display: block;
    letter-spacing: 0;
    margin: 6px 0;
}

h3 {
    font-size: 26px;
    margin: 2rem 0;
    line-height: 1.1;
    color: #0c785d;
}

p {
    margin: 0 0 1.25rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0c785d;
    font-weight: bold;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1.25rem;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
    margin: 0 0 10px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.5rem;
    color: #0c785d;
}

.color {
    color: #0c785d;
    font-weight: bold;
}

@media all and (max-width:859px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        padding: 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media all and (max-width:767px) {
    .logo {
        position: static;
        display: flex;
        justify-content: center;
    }

    p span {
        white-space: nowrap;
    }

    header {
        padding: 0;
    }

    h1 {
        margin: 1rem 0;
    }
}

@media all and (max-width:480px) {
    h1 {
        font-size: 34px;
    }
}

@media all and (max-width:420px) {
    .link {
        white-space: normal !important;
    }
}