@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #545454;
    font-family: Arial, sans-serif;
    font-size: 0.8em;
    line-height: 1.4;
}
#wrapper {
    position: relative;
    max-width: 1140px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #545454;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1.2em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #FFF;
}
h1 span {
    color: #ED9A00;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid #006751;
    display: inline-block;
    color: #006751;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #545454;
    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-left: 1.5rem;
}
ul li:before {
    content: "▪";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: -4px;
    margin-left: -1rem;
    color: #006751;
}
header {
    padding: 0 0 1rem;
}
header section {
    display: flex;
    justify-content: flex-end;
}
article section:first-of-type {
    margin-bottom: 3rem;
}
article section:first-of-type p span {
    display: inline-block;
    margin-right: 1rem;
}
article nav, article>section:first-of-type {
    background: #006751;
    padding: 1rem 1rem 0;
}
article>section:first-of-type p {
    color: #ED9A00;
    font-weight: bold;
}
nav :is(h2, p) {
    color: #FFF;
}
nav h2 {
    border-bottom: 2px solid #FFF;
    margin-bottom: 1rem;
}
nav section {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 2rem 1rem 4rem;
    margin-bottom: 2rem;
}
nav section p img {
    vertical-align: -5.7px;
    margin-right: 0.2rem;
}
nav section p strong {
    margin-left: -2.2rem;
}
nav section aside {
    width: 437px;
}
nav section aside p:first-of-type {
    padding-bottom: 0.5rem;
}
nav section aside strong {
    font-size: 1.125em;
    line-height: 1.3;
}
footer {
    padding: 1rem 1rem 1rem;
    background: #CFCFCF;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
footer p {
    padding: 0;
}
footer img {
    width: 120px;
}
@media only screen and (max-width:1138px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p br {
        display: none;
    }
    footer br {
        display: block;
    }
    aside {
        width: 40% !important;
    }
    p {
        text-align: left;
    }
}
@media only screen and (max-width:600px) {
    nav section {
        padding: 0 2rem !important;
        display: block !important;
    }
    aside {
        width: 100% !important;
    }
    nav section aside:last-of-type p:nth-of-type(3) {
        margin: 0;
    }
    footer img {
        position: static;
    }
}
@media only screen and (max-width: 350px) {
    footer {
        flex-direction: column;
    }
    footer p {
        text-align: center;
    }
}