@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1140px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
.fw500 {
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
.nopd {
    padding-bottom: 0;
}
h1 {
    font-size: 2.4em;
    line-height: 1;
    color: #57585A;
    text-transform: uppercase;
    position: absolute;
    top: 23rem;
    padding: 1rem 2rem;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 80%);
}
h1 span {
    font-size: 0.9em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    color: #253F8E;
    margin-top: 0.5rem;
}
h2 span {
    font-weight: 400;
    color: #000;
}
.ct{
    font-size: 1.5em;
    line-height: 1;
    margin: 4rem 0 0;
}
.custom {
    font-size: 1.25em;
    line-height: 1.3;
    margin-top: 0.75rem;
}
.color {
    color: #253F8E !important;
}
.fw200 {
    font-weight: 300;
}
article .fw200 {
    font-size: 0.9375em;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.pb{
    padding-bottom: 1.5rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.left {
    width: 55%;
}
.right {
    width: 38%;
    margin-bottom: -2rem;
}
.small{
    font-size: 0.938em;
    line-height: 1.3;
}
article {
    padding: 1rem 2rem 0;
}
article>p:first-of-type {
    word-spacing: 2px;
}
footer {
    padding: 0 2rem 1rem;
}
footer p{
    font-size: 0.875em;
    line-height: 1.3;
}
@media only screen and (max-width:1139px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h1 {
        font-size: 2em;
        line-height: 1.2;
        position: static;
        margin: 0 0 1rem;
        padding: 0;
    }
    br:not(.block) {
        display: none;
    }
    article>p:first-of-type {
        word-spacing: 0;
    }
    .flex {
        flex-direction: column;
        margin-top: 0;
    }
    .left, .right {
        width: auto;
        margin-bottom: 0;
    }
    .ct{
        margin-top: 1rem;
    }
    footer{
    }
}
@media only screen and (max-width:780px) {
    h1 {
        font-size: 1.7em;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding-inline: 1rem;
    }
    ul, .custom {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
    h1 {
        font-size: 1.4375em;
    }
}