@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 870px;
    margin: 1rem auto;
    border: solid 2px #0D4B26;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1.5rem;
}
: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.7em;
    line-height: 1.1em;
}
h1 span {
    font-size: 1.5em;
    line-height: 1;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3em;
    margin-bottom: 0;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 1rem;
    background: #0D4B26;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.text, article {
    width: 65%;
}
header p {
    padding: 0;
    color: #fff;
}
header p:first-of-type {
    padding-bottom: 0.375rem;
}
article figure {
    position: absolute;
    bottom: 1.7rem;
    left: 3rem;
}
main {
    padding: 1rem 1rem 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 1rem;
}
footer p {
    position: relative;
    z-index: 999;
    margin-top: -1rem;
}
@media only screen and (max-width:869px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    h1 span{
        font-size: 1.3em;
    }
    article figure{
        position: static;
    }
}
@media only screen and (max-width:780px) {
    main, header {
        flex-direction: column;
        align-items: center;
    }
    .text, article {
        width: 100%;
    }
    footer p {
        text-align: center;
    }
}