@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
.white {
    color: #FFF !important;
    font-family: 'Calibri', Arial, sans-serif;
}
.center {
    text-align: center;
}
p {
    padding-bottom: 1rem;
}
p a.color {
    color: #0563C0;
    text-decoration: underline;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h3 {
    font-size: 2.5em;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #FDEB52;
}
h3+p {
    font-size: 1.5em;
    line-height: 1.3em;
}
h3, h4 {
    text-transform: uppercase;
}
h4, h4+p {
    font-size: 1.6em;
    line-height: 1;
}
h4+p {
    text-align: right;
    font-size: 1.3em;
    line-height: 1.5em;
    padding: 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1.5rem;
}
ul li:before {
    content: url('../images/icon.jpg');
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.5rem;
}
ul.icon li:before {
    content: url('../images/icon1.jpg');
}
header {
    position: relative;
}
.logo {
    position: absolute;
    top: 0;
    right: 0;
}
.logo img {
    border-radius: 100px 0px 0px 100px;
}
.tt {
    position: absolute;
    top: 20rem;
    left: 6rem;
}
.qr {
    position: absolute;
    top: 27rem;
    right: 1.3rem;
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    align-items: center;
}
article {
    padding: 2rem 2rem 0;
}
footer {
    padding: 0 2rem 2rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .tt, .qr {
        position: static;
    }
    .logo img {
        width: 150px;
    }
    .white {
        color: #000 !important;
    }
    h3, h3+p {
        text-align: center;
    }
    h3, h4 {
        font-size: 1.5em;
    }
    .qr {
        justify-content: center;
        margin: 1rem 0;
    }
}
@media only screen and (max-width: 480px) {
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 1rem;
    }
}