@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #595959;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 4rem;
    padding-left: 1.5rem;
    font-size: 1.25em;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 400;
    background: #fff url('../images/icon_bg.jpg') no-repeat 0 3px;
}
h2 {
    font-size: 2.2em;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 2rem 2rem 0;
}
.flex {
    display: flex;
    gap: 0 3rem;
}
.flex p {
    font-size: 0.9em;
    line-height: 1.3;
}
.logo {
    margin-bottom: 0.5rem;
}
footer {
    position: absolute;
    right: 2rem;
    bottom: 0;
}
footer figure {
    margin: 0 0 0.35rem;
}
footer p {
    color: #71BF44;
    font-size: 0.9em;
    line-height: 1.3;
}
.social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.35rem;
    color: #71BF44;
    font-size: 2.25em;
    line-height: 1;
}
@media only screen and (max-width:849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:790px) {
    h1 {
        margin-bottom: 2rem;
    }
    footer {
        position: static;
        padding: 0 1rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
    }
    footer br{
        display: none;
    }
}
@media only screen and (max-width:610px) {
    h2{
        font-size: 1.8em;
    }
    article{
        padding: 1rem;
    }
    .flex {
        flex-direction: column;
        align-items: center;
    }
    .flex p{
        text-align: center;
    }
}