@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Saira", sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 900px;
    height: 1347px;
    min-width: 250px;
    margin: 1rem auto;
    background: url('bg-f.jpg') top left no-repeat, #fff;
    overflow: hidden;
    padding: 5rem 5.8rem 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.9em;
    line-height: 1.2;
    color: #00567B;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}
h3 {
    color: #00567B;
    text-align: center;
    font-size: 4em;
    line-height: 1.1;
    margin-bottom: 2rem;
}
h4 {
    color: #CADB2A;
    font-size: 1.2em;
    line-height: 1.3;
}
h5 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    color: #00567B;
    font-weight: 600;
    text-align: center;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 4rem;
    list-style: none;
}
li {
    padding-left: 1.75rem;
    padding-bottom: 0.5rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: -3px;
    margin-left: -1.75rem;
    font-family: Arial, Helvetica, sans-serif;
}
article > p:first-of-type {
    text-align: justify;
}
.row {
    position: relative;
}
.row > h4 {
    position: absolute;
    top: 0;
    right: 0;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.qrc {
    width: fit-content;
    margin: -5rem 0 0 auto;
    color: #00567B;
}

.qrc p {
        padding-bottom: 0.5rem;
        text-align: center;
}
.left {
    width: 47%;
}
.right {
    width: 47%;
}
footer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3.4rem;
    position: absolute;
    bottom: 3px;
    left: 2rem;
}
@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background-image: none;
    }
    article > p:first-of-type {
        text-align: left;
    }
    h3 {
        font-size: 2em;
        margin-bottom: 1.5rem;
    }
    h3 br {
        display: none;
    }
    .row {
        padding-bottom: 1.5rem;
    }
    h1 {
        margin-bottom: 0;
        font-size: 1.7em;
    }
    .flex {
        flex-direction: column;
        padding-bottom: 0;
    }
    .left, .right {
        width: 100%;
        padding-right: 0;
    }
    .qrc {
        margin: 0 auto;
    }
    footer {
        position: static;
        justify-content: center;
        gap: 1rem;
        padding-top: 1rem;
        flex-wrap: wrap;
    }
    ul {
        padding-bottom: 1.5rem;
    }
}