@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

body {
    color: #3D3C3B;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

#wrapper > img {
    display: block;
}

p span {
    white-space: nowrap;
}

h1 {
    line-height: 1.4;
    font-size: 2rem;
    margin: 0 0 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.25rem;
    font-weight: normal;
    text-align: center;
    margin: 0 0 .625rem;
    position: relative;
}

h2:before {
    content: "";
    float: left;
    position: absolute;
    width: 109%;
    height: .25rem;
    background: #fff;
    left: -2rem;
    top: .7rem;
    z-index: 0;
}

h2 span {
    display: inline-block;
    position: relative;
    z-index: 10;
    padding: 0 1.25rem;
    width: fit-content;
}

ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

ul li {
    padding-left: 2.5rem
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    transform: rotate(-45deg);
    background: #fff;
    margin-left: -1.875rem;
    top: .562rem;
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
    padding: 1rem 0;
}

article {
    padding: 1rem 0;
    background: #fff;
}

.title {
    text-align: center;
}

.title p {
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
    line-height: 1.6;
}

.title p strong {
    font-size: 1.312rem;
}

.margin {
    margin: 0 1.562rem 1.25rem;
}

.margin p {
    margin: 0 0 .625rem;
}

.margin span {
    font-size: 1.187rem;
}

article .section {
    color: #fff;
    padding: 1rem;
    margin: 0 0 2.5rem;
}

article :is(.gray, .gray h2 span) {
    background: #B6B6B6;
}

article :is(.lightgray, .lightgray h2 span) {
    background: #979797;
}

article :is(.red, .red h2 span) {
    background: #e30613;
}

.flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    padding: 0 1rem;
}

.flex p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex p span {
    display: inline-block;
    min-width: 3.125rem;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 1.562rem 1rem;
}

footer .aside {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

footer .aside img {
    margin-bottom: .312rem;
}

a.url {
    color: #e30613;
    font-weight: 700;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        font-size: 1.75rem;
    }

    h1,
    .title p {
        margin: 0 0 1rem;
    }

    h2 span {
        padding: 0 1rem;
    }

    ul,
    .red div:last-of-type p:last-of-type {
        margin: 0;
    }

    ul li {
        padding-left: 1rem;
    }

    ul li:before {
        margin-left: -1rem;
    }

    header {
        padding: 0 0 1rem;
    }

    .title p,
    .title p strong {
        font-size: 1.125rem;
    }

    article {
        padding: 0;
    }

    article .section {
        padding: 1rem;
        margin: 0 0 1rem;
    }

    .flex {
        padding: 0;
    }

    .margin {
        margin: 0 1rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }

    header br,
    article br {
        display: none;
    }
}

@media only screen and (max-width: 47.5rem) {

    .flex {
        display: block;
    }

    .flex div {
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 35rem) {
    h1 {
        font-size: 1.5rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }

    footer .aside {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .qr {
        padding-top: 1rem;
    }
}

@media only screen and (max-width: 23.5rem) {

    footer,
    footer .aside {
        align-items: center;
    }

    .margin p,
    footer p {
        text-align: center;
    }
}
