@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 1em/1.3em Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #275556;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
p small {
    font-size: 0.7em;
}
h1, h2, .ttu {
    text-transform: uppercase;
}
h1 span, h2 {
    color: #F1C745;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.4em;
    line-height: 1.3;
}
h1 span {
    display: block;
}
h2 {
    font-size: 2.9em;
    letter-spacing: 9px;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    position: relative;
    float: left;
    margin: 0 0 0 -1rem;
}
.fa-facebook {
    font-size: 2em;
}
.social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.circle {
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.5em;
    color: #195050;
    text-align: center;
    padding: 0.25rem 0;
}
.flex {
    display: flex;
    justify-content: center;
    gap: 0 2rem;
}
.right {
    position: relative;
}
.right:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 80%;
    background: #F1C745;
    left: -1rem;
    top: 0%
}
header figure {
    margin: 0 -1rem 1rem;
}
footer p {
    line-height: 2em;
}
p.ttu {
    font-size: 1.3em;
    line-height: 1.3em;
}
p.pd_0 {
    padding-bottom: 0;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a,span){
        display: inline-block;
    }
    h2 {
        font-size: 1.5em;
        letter-spacing: 1px;
    }
}
@media only screen and (max-width:400px) {
    p.ttu {
        font-size: 1em;
        line-height: 1.3em;
    }
}