@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1.1875em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 6rem 5.25rem 2rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.125em;
    line-height: 1.1em;
    text-align: center;
}
h1 span{
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    font-weight: normal;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.5rem;
}
header {
    margin: 0 0 2rem;
    display: flex;
    justify-content: center;
}
#wrapper:after {
    content: "";
    width: 18.5rem;
    border-top: 1px solid #5A9321;
    position: absolute;
    left: 0;
    top: 11.875rem;
}
.pdl {
    display: inline-block;
    padding-left: 3rem;
}
footer {
    margin: 2rem 0 0 0;
    position: relative;
}
footer:after {
    content: "";
    width: 2rem;
    border-top: 1px solid #5A9321;
    position: absolute;
    left: -2.5rem;
    top: 0.75rem;
}
footer p {
    color: #5B4E46;
    font-size: 0.875rem;
    line-height: 1.3;
    padding-bottom: 0.75rem;
}
.flex {
    display: flex;
    gap: 0 1.5rem;
    flex-wrap: wrap;
}
.color {
    color: #5A9321;
}
.lett {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    word-spacing: 1px;
}
figure {
    position: absolute;
    bottom: 2.5rem;
    right: 0.5rem;
}
.jus{
    text-align: justify;
    hyphens: auto;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    .jus{
        text-align: left;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer {
        margin: 1rem 0 0;
    }
    footer:after, #wrapper:after {
        display: none;
    }
    figure {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    .lett {
        letter-spacing: 0;
        word-spacing: 0;
    }
    .pdl {
        padding-left: 0;
    }
}