@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1.25em/1.3em "Segoe UI", Arial, sans-serif;
}
.lighter {
    font-weight: 300;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg1.jpg') top left no-repeat, url('../images/bg2.jpg') bottom left no-repeat, linear-gradient(to right, #008EA4, #58AFB8, #5AC1C6);
    overflow: hidden;
    padding: 4rem 2rem 2rem 4rem;
    border-radius: 1.5rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 3rem auto 5rem;
    font-size: 1em;
    line-height: 1.3;
    width: fit-content;
    padding: 0 1rem;
    background: #0090A5;
    border-radius: 2rem;
}
h2 {
    font-size: 1.625em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
    column-count: 2;
    column-gap: 1rem;
}
li {
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
}
li:after {
    content: "";
    width: 8rem;
    border-bottom: 1px solid #fff;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
li:last-of-type:after {
    display: none;
}
header {
    display: flex;
    justify-content: space-between;
    margin: 0 -2rem 4rem;
}
.custom {
    width: 80%;
    margin: 0 auto;
}
.qrc {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0.5rem;
}
.qrc p {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 0 6rem 6rem 0;
    line-height: 1.1;
    background: #008EA3;
    color: #fff;
    font-size: 1.125em;
}
article figure {
    border-radius: 6rem 0 0 6rem;
    border: solid #fff;
    border-width: 1px 0 1px 1px;
    padding: 1rem 1.58rem 1rem 2.5rem;
}
footer p {
    font-weight: 600;
    text-align: center;
    font-size: 0.875em;
    line-height: 1.3;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        border-radius: 0;
        background: linear-gradient(to right, #008EA4, #58AFB8, #5AC1C6);
        padding: 2rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        margin: 0 -2rem 2rem 0;
        gap: 1rem;
    }
    .custom {
        width: auto;
    }
    h1 {
        margin: 1rem 0 2rem;
    }
    ul {
        column-count: 1;
    }
    br {
        display: none;
    }
    .qrc {
        flex-direction: column;
    }
    .qrc p {
        padding: 1rem 2rem;
        border-radius: 5rem;
        text-align: center;
    }
    article figure {
        border: 1px solid #fff;
        border-radius: 5rem;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
    #wrapper {
        padding: 1rem;
    }
    header {
        margin: 0 0 2rem;
        flex-direction: column;
        align-items: center;
    }
    header figure {
        margin-right: -1rem;
    }
}