@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-300.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-300.woff') format('woff'),
        url('../fonts/roboto-v30-latin-300.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-300.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 917px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
#wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 100%;
    background: #61BA46;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #528135;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    color: #528135;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 1.8em;
    line-height: 1.3;
    text-align: center;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font: 300 2.6em/1em 'Roboto', Arial, sans-serif;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    position: absolute;
    left: 28px;
    top: 6.25rem;
    color: #fff;
    font-weight: 300;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "▶";
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.red {
    color: #C00000;
}
.hl {
    color: #528135;
    font-weight: 700;
    display: inline;
}
.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -1rem 3rem 0 0;
}
a.button {
    display: inline-block;
    font-size: 1.5em;
    line-height: 1.1;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    background: #46BA00;
    color: #fff;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left, .right {
    width: 47%;
}
.right h2 {
    margin-left: 1rem;
}
header {
    padding: 2rem 3rem 2rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-flow: row-reverse;
    gap: 1rem;
}
article {
    padding: 0 3rem 1rem 5rem;
}
footer {
    padding: 1rem 3rem 2rem 5rem;
    background: #D9D9D9;
}
figure {
    margin: 0;
}
@media only screen and (max-width:916px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    article br {
        display: none;
    }
    .right h2 {
        margin-left: 0;
    }
}
@media only screen and (max-width:768px) {
    #wrapper:before {
        display: none;
    }
    h3 {
        font-size: 2em;
        padding: 0.5rem;
        position: static;
        writing-mode: horizontal-tb;
        background: #46BA00;
        transform: none;
        text-align: center;
        margin-bottom: 2rem;
    }
    header, article, footer {
        padding: 2rem;
    }
    .info {
        flex-direction: column;
        align-items: flex-start;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    header, article, footer {
        padding: 1rem;
    }
    footer {
        padding-bottom: 0;
    }
    h1 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.7em;
    }
}