@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #50565C;
    font: 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1024px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "■";
    float: left;
    margin: -1px 0 0 -1rem;
    color: #BED1E1;
}
h1, i {
    color: #BED1E1;
}
.logo {
    padding: 1rem 2rem 0.5rem;
    margin: 0 -2rem;
    border-bottom: 2px solid #DEDEDE;
}
header > img {
    margin: 0 0 2rem;
}
.icon {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
}
.icon i {
    font-size: 0.875em;
    margin-right: 0.5rem;
}
.box {
    padding: 2rem 2rem 1rem;
    margin: 0 -2rem 2rem;
    background: #BED1E1;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex p {
    width: 48%;
}
footer {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}
@media only screen and (max-width: 1024px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        hyphens: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width: 780px) {
    .logo {
        display: flex;
        justify-content: center;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 0 1rem 1rem;
    }
}