@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat bottom right;
    overflow: hidden;
    padding: 0;
}
 .cuttom {
    width: 110px;
    height: 110px;
    padding: 1.5rem 1rem 0;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    background: #2796A5;
    border-radius: 50%;
    transform: rotate(-10deg);
    position: absolute;
    top: 1rem;
    left: 3rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1, h2, h3 {
    text-transform: uppercase;
}
h1 {
    margin: 0 0 2rem 3rem;
    font-size: 1.892em;
    line-height: 1.5;
    text-align: center;
}
h1 span, h2 {
    font-weight: normal;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    padding: 0.2rem 0.3rem;
    background: #94C152;
    margin-bottom: 0.5rem;
    display: inline-block;
    border-radius: 10px;
}
h3 {
    font-size: 1.4em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.3rem 1rem;
}
ul li:before {
    content: "•";
    font-size: 0.8em;
    float: left;
    margin: 0 0 0 -1rem;
}
article {
    padding: 2rem 2rem 1rem;
    position: relative;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 45%;
}
footer {
    position: absolute;
    bottom: 0rem;
    right: 0rem;
}
.width {
    width: 355px;
    margin-top: -4rem;
}
.qr {
    position: absolute;
    bottom: -0.3rem;
    right: 14rem;
}
.qr figure {
    display: flex;
    justify-content: center;
}
.qr p, h3 {
    text-align: center;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .cuttom{
        position: static;
        display: block;
        margin: 1rem auto;
    }
    h1{
        margin: 0 0 1rem;
    }
    p{
        text-align: left;
    }
    .hide_m{
        display: none;
    }
}
@media only screen and (max-width:740px) {
    .flex{
        flex-direction: column;
    }
    .flex div, .width{
        width: 100%;
    }
    .width{
        margin: 0;
    }
    footer{
        background: #2796A5;
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    .qr,footer{
        position: static;
    }
}
@media only screen and (max-width:480px) {
    article{
        padding: 1rem;
    }
    h1{
        font-size: 1.5em;
    }
}