@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.2 "Source Sans 3", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 790px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #147EA7;
    background: #fff url('./bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 1.25rem 1.25rem 0;
}
p {
    padding-bottom: 0.375rem;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.625em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    font-size: 1.08em;
    line-height: 1.23;
}
li span {
    padding-left: 0.875rem;
    display: inline-block;
}
ul li span:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: -5px 0 0 -0.875rem;
}
header :is(h1, p), footer p {
    text-align: center;
}
header :is(h1, p), h2, .color {
    color: #147EA7;
}
.logo {
    position: absolute;
    top: 17px;
    left: 71px;
    transform: rotate(-13deg);
    opacity: 0;
}
header {
    width: 68%;
    margin-left: auto;
}
.upper {
    text-transform: uppercase;
}
.box1, .box2 {
    position: relative;
}
.box1::before {
    content: "";
    width: 90px;
    height: 255px;
    margin: 0 0px 0px -17px;
    float: left;
    -webkit-shape-outside: polygon(0% 0%, 100% 0%, 23% 100%);
    shape-outside: polygon(0% 0%, 100% 0%, 23% 100%);
}
.box2::before {
    content: "";
    width: 135px;
    height: 414px;
    margin: 0px 0px 0px -10px;
    float: left;
    -webkit-shape-outside: polygon(1% 0%, 0% 0%, 96% 100%);
    shape-outside: polygon(1% 0%, 0% 0%, 96% 100%);
}
h1, h2, strong {
    font-weight: 600;
}
.pl {
    padding-left: 6.75rem;
}
footer {
    display: flex;
    justify-content: flex-end;
}
footer p {
    font-size: 1.125em;
    line-height: 1.25;
}
.logo-f {
    position: absolute;
    bottom: 0.125rem;
    left: 3rem;
}
@media only screen and (max-width: 789px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        background: #fff;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        opacity: 1;
        transform: none;
    }
    header {
        width: auto;
    }
    :is(header, article) br, .box1::before, .box2::before {
        display: none;
    }
    .logo-f {
        position: static;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .pl {
        padding: 0 0 0.5rem;
    }
}