@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat bottom center;
    background-size: cover;
    overflow: hidden;
    padding: 4rem 5rem;
}
p {
    padding-bottom: 1rem;
}
p span {
    display: inline-block;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 1.5em;
    line-height: 1.1;
}
h1 + p {
    font-size: 1.125em;
    line-height: 1.3em;
    padding-bottom: 1.25rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:active, a:hover) {
    color: #000;
    text-decoration: none;
}
p a.underline {
    text-decoration: underline;
    color: #0000FF;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin-left: -1.5rem;
}
li ul {
    padding: 0;
}
li li:before {
    content: "▪";
}
li .cricle li:before {
    content: "\1424";
}
p, li {
    text-align: justify;
    hyphens: auto;
}
header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 1rem;
    align-items: center;
}
.flex.spb {
    justify-content: space-between;
}
.flex div {max-width: 53%;}
.flex p {
    text-align: center;
}
.flex img {
    display: block;
    margin: 0 auto 0.25rem;
}
.abs {
    display: flex;
    gap: 1rem 3rem;
    align-items: flex-end;
    position: absolute;
    bottom: 43.5rem;
    right: 5rem;
}
.qrc {
    display: flex;
    gap: 0 1rem;
    margin-bottom: 1rem;
}
.qrc p {
    width: 33%;
    padding: 1rem 0;
}
article .center :is(h1, p), footer p {
    text-align: center;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
        background: #FFF;
    }
    p,li {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
    p a.underline {
        display: initial;
    }
    .abs {
        display: none;
    }
    .qrc p {
        flex: 1;
        width: auto;
    }
    .flex div {
        width: auto;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
}