@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.05em/1.3em 'Source Sans 3', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1140px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0 0 1rem;
}
h1, h2, strong {
    font-weight: 700;
}
h1,p.color{
    color: #96958F;
}
p.color{
    padding-bottom: 0.5rem;
}
p.pt{
    padding-top: 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -0.5rem 0 2rem;
    font-size: 3em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    text-transform: uppercase;
     color: #F6921D;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
}
ul li:before {
    content: "•";
    margin: -2px 0 0 -1rem;
    float: left;
    color: #000;
}
.center {
    text-align: center;
    padding-bottom: 0.3rem;
}
.logo {
    position: absolute;
    right: 5rem;
    top: 34.7rem;
}
header {
    position: relative;
}
article, footer {
    padding: 0.5rem 2rem 0;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.flex div {
    width: 47%;
}
footer p {
    font-size: 0.878em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
.bg {
    text-align: center;
    font-size: 1.75em;
    line-height: 1.3em;
    background: #F6921D;
    margin: 0 -2rem 2rem;
    padding: 1rem 2rem;
}
p.small {
    font-size: 0.85em;
}
p.tr {
    text-align: right;
    font-size: 1.1em;
    line-height: 1.3em;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width:851px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    header p, .logo {
        position: static;
    }
    header p {
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1{
        font-size: 2em;
    }
    footer{
        flex-direction: column;
    }
    footer p{
        text-align: center !important;
    }
    .bg{
        font-size: 1.3em;
    }
}
@media only screen and (max-width: 780px) {
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100%;
    }
}
@media only screen and (max-width: 780px) {
    ul{
        padding-bottom: 1rem;
    }
    article{
        padding: 1rem;
    }
}