@charset "utf-8";
@font-face {
    font-family: 'Caveat';
    src: url('../fonts/Caveat-Bold.eot');
    src: url('../fonts/Caveat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Caveat-Bold.woff2') format('woff2'), url('../fonts/Caveat-Bold.woff') format('woff'), url('../fonts/Caveat-Bold.ttf') format('truetype'), url('../fonts/Caveat-Bold.svg#Caveat-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
    padding: 8.5rem 6rem 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #006FC0;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #00AF50;
}
h2 span {
    color: #EC7C30;
}
h3 {
    font: 700 1.45em/1.1em 'Caveat', Arial, sans-serif;
    margin-bottom: 1rem;
    color: #C3C3C3;
    position: absolute;
    left: 14.5rem;
    top: 2.5rem;
}
ul {
    padding: 0 0 1rem 1.5rem;
    list-style: none;
    margin-top: 1rem;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\25A0";
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: -1px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 0 1rem;
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 0;
}
footer {
    padding: 1rem 0 0;
    display: flex;
    justify-content: space-between;
    gap: 0 0.5rem;
}
footer p {
    font-size: 0.938em;
    line-height: 1.3;
    hyphens: none;
}
figure {
    margin: 0;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding-inline: 3rem;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    footer{
        flex-direction: column;
        align-items: center;
    }
    footer p{
        width: 100%;
    }
}
@media only screen and (max-width:768px) {
    #wrapper {
        padding-inline: 2rem;
    }    
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
        background: #fff;
    }
    header {
        justify-content: center;
    }
    h3 {
        position: static;
    }
    ul{
        padding-left: 0;
    }
    li{
        padding-left: 1rem;
    }
}