﻿ @font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #58585a;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    padding: 0 2.0625rem 0.625rem;
    max-width: 650px;
    background: #fff url(../images/background.jpg) no-repeat left bottom;
    overflow: hidden;
    border: solid thin #818285;
}

header {
    margin: 0 -2.0625rem;
}

header img {
    display: block;
}

.info {
    background: #e2e3e4;
    margin: 0 -2.0625rem 1rem;
    padding: 0.8125rem 2.0625rem;
}

.info p {
    margin-bottom: 0 !important;
    color: #231f20;
}

.info sup {
    font-size: 10px;
    display: inline-block;
    vertical-align: top;
    margin-top: -4px;
}

.center :is(h2, p){
    text-align: center;
}

.center p:nth-of-type(1) {
    margin-bottom: 0;
    color: #231f20;
}

footer {
    margin: 1rem 0 0;
}

footer p {
    text-align: center;
    color: #008c4f;
    margin-bottom: 0;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

h1 {
    margin: 0 0 0.625rem;
    font-size: 1.3125rem;
    text-align: center;
    line-height: 1.6875rem;
    color: #231f20;
}

h2 {
    font-size: 1rem;
    line-height: 1.375rem;
    margin: 10px 0 0;
    text-align: left;
    color: #231f20;
    position: relative;
}

h2:before {
    content: "";
    display: inline-block;
    background: #e2e3e4;
    width: 28px;
    height: 14px;
    position: absolute;
    left: -33px;
    top: 4px;
}

p {
    margin: 0 0 10px;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #58585a;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 10px 38px;
}

ul li {
    list-style: none;
    text-indent: -20px;
}

ul li:before {
    font-size: 20px;
    margin-right: 20px;
    position: relative;
    top: 1px;
    float: left;
    content: "\2022";
}

@media screen and (max-width: 649px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 0 1rem 1rem;
        background: #fff;
    }

    header {
        margin: 0 -1rem;
    }

    :is(h1, h2){
        hyphens: auto;
    }

    h2:nth-of-type(2){
        margin-top: 1rem;
    }

    p{
        text-align: left;
    }

    :is(p a, p span) {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    ul{
        margin-left: 20px;
    }
}