@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-condensed-v27-latin-900.eot');
    src: url('../fonts/roboto-condensed-v27-latin-900.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-900.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-900.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-900.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-900.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 580px;
    margin: 1rem auto;
    border: 4px solid #87C23E;
    background: #E9F3DC;
    overflow: hidden;
}
.fw700, strong {
    font-weight: 700;
}
h2, h3 {
    font-weight: 900;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
.hl {
    text-decoration: underline;
    font-weight: 700;
    color: #87C23E;
}
h2, h3, strong {
    color: #87C23E;
}
.text-right{
    text-align: right;
}
h1 {
    margin: 0 0 3.5rem auto;
    padding: 0.25rem 0.5rem;
    font-size: 1.313em;
    line-height: 1.3;
    background: #87C23E;
    font-weight: 400;
    color: #fff;
    width: fit-content;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.5em;
    line-height: 1.2;
}
h3 {
    font-size: 2em;
    line-height: 1;
    text-align: center;
}
h3 span {
    display: block;
    font-size: 0.7em;
    line-height: 1.2;
    margin: 0.35rem 0 0.5rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #87C23E;
    height: 3px;
    margin: 0 -0.75rem 0.5rem;
}
header {
    padding: 0.5rem;
    background: #87C23E;
    display: flex;
    justify-content: center;
}
article {
    padding: 0 0.75rem;
}
.big{
    font-size: 1.313em;
    line-height: 1.3;
    margin-left: 10rem;
}
.bg {
    background: #E9F3DC url('../images/bg.jpg') no-repeat;
    background-size: cover;
    margin: 0 -0.75rem;
    padding: 0.5rem 0.75rem 0;
}
article figure{
    margin-left: 2rem;
}
footer {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    position: absolute;
    right: 0.75rem;
    bottom: 0.5rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:579px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .bg{
        background: #E7E8E2;
    }
    .big{
        margin-left: 0;
    }
    h1{
        margin: 0.5rem auto 1rem;
    }
    footer{
        position: static;
        justify-content: center;
        align-items: center;
        padding: 0 1rem 1rem;
    }
}
