@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3D3438;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1080px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') top 62rem right 7rem no-repeat;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 1.5rem 0;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #0082A2;
}
h1 span {
    font-size: 1.2rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #DD592E;
}
h3 {
    font-size: 1.75em;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 34rem;
}

h3 small {
    display: block;
    font-size: 0.7em;
}

h3 span {font-weight: normal;text-transform: none;}
h4 {
    font-size: 1em;
    line-height: 1.3em;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
.nopad {
    padding: 0;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 0;
}
article {
    padding: 1rem 2rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 1.5rem;
    position: absolute;
    bottom: 3rem;
    right: 2rem;
}
footer {
    padding: 0 2rem 2rem;
}
.wid {
    width: 39%;
}
@media only screen and (max-width:1079px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h3 {
        position: static;
        color: #000;
        margin-bottom: 1rem;
    }
    .flex {
        position: static;
    }
    .wid {
        width: auto;
    }
}
@media only screen and (max-width:480px) {
    .flex {
        flex-direction: column;
        align-items: center;
    }
    .flex p {
        text-align: center;
    }
    article , footer {
        padding: 1rem;
    }
}