@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    font-size: 16px;
}
img {
    max-width: 100%;
    height: auto;
}
body {
    color: #000;
    font: 400 1em/1.3em Verdana, Tahoma, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}
h1,h2,strong{
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.color {
    color: #2E5796;
}
p {
    margin-bottom: 20px;
}
h1 {
    font-size: 1.625em;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    color: #1F3864;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #2E5796;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
}
ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
ul li {
    padding-left: 2rem;
}
ul li:before {
    content: "\2012";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 64px 48px 0;
}
header p {
    color: #444444;
}
header div {
    width: 82%;
}
header :is(p, h1) {
    text-align: center;
}
.grey {
    text-align: center;
    color: #666666;
}
.brb {
    font-size: 0.875rem;
    line-height: 1.3;
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #29416B;
}
.brb strong {
    text-transform: uppercase;
    color: #2E5796;
}
.pdl {
    padding: 0.25rem;
    margin: 0 0.5rem 1rem;
    background: #E8F4FD;
    border-left: 2px solid #2E5796;
}
article {
    padding: 0 3rem;
}
.table {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.table p {
    width: calc(50% + 1px);
    padding: 0.5rem 0.75rem;
    background: #D6E4F0;
    border: 1px solid #000;
    margin: -1px 0 0 -1px;
    font-size: 0.875rem;
    line-height: 1.3;
}
.table p strong {
    color: #1F3864;
    font-size: 1rem;
}
.table strong:before {
    content: "";
    width: 6px;
    height: 10px;
    border: 1px solid #1F3864;
    margin-right: 0.75rem;
    display: inline-block;
}
.table .opacity {
    background: #E8F4FD;
}
.info {
    border-top: solid 2px #A0A0A0;
    border-bottom: solid 2px #A0A0A0;
    padding: 20px 0;
}
.info p:last-of-type {
    margin: 50px 0 0;
}
footer {
    padding: 0 3rem 3rem;
}
footer p {
    margin: 0;
    color: #656565;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    h1,
    h1 + p {
        text-align: center;
    }
    header div {
        width: 100%;
    }
    article,
    footer {
        padding: 1rem 10px;
    }
}
@media only screen and (max-width: 550px) {
    h1 {
        font-size: 30px;
    }
    ul li {
        padding-left: 1rem;
    }
    .table p {
        width: 100%;
    }
}