@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: #041E25;
    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.jpg') top left no-repeat, #fff;
    overflow: hidden;
    padding: 8rem 6rem 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 -161px 3rem 0;
    font-size: 3em;
    line-height: 1.1;
    color: #00567B;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    color: #00567B;
    text-align: center;
    font-size: 3.6em;
    line-height: 1.1;
    margin-bottom: 3rem;
}
h4 {
    color: #D2D700;
    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 2rem;
    list-style: none;
}
li {
    padding-left: 1.75rem;
    padding-bottom: 0.3rem;
}
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;
}
header {
    opacity: 0;
}
article>p:first-of-type {
    text-align: center;
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.qrc {
    width: fit-content;
    margin: 2rem 0 0 auto;
    color: #00567B;
}
.qrc p {
    padding-bottom: 0.5rem;
    text-align: center;
}
.left {
    width: 46%;
}
.right {
    width: 45%;
}
footer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    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;
    }
    h3 {
        font-size: 2em;
        margin-bottom: 1.5rem;
    }
    .row {
        flex-direction: column;
        padding-bottom: 1.5rem;
    }
    h1 {
       margin: 0;
        font-size: 1.9em;
    }
    header {
        opacity: 1;
    }
    .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;
    }
    br {
        display: none;
    }
}