@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 0.938em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 930px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1.5rem;
}
h1 {
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 18.3rem;
    left: 0;
    padding: 0.5rem 1.5rem;
    font-size: 2.7em;
    line-height: 1.2;
    color: #F7931F;
    width: 100%;
    text-transform: uppercase;
}
h1 small {
    font-size: 0.5em;
    color: #96958F;
    text-transform: none;
}
h2 {
    font-size: 1.250em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #F7931F;
}
h3 {
    color: #96958F;
    font-size: 2.5em;
    line-height: 1.3;
    padding-bottom: 1.5rem;
}
h3 small {
    font-size: 0.5em;
}
.padding-bottom {
    padding-bottom: 0;
}
.small {
    font-size: 0.750em;
    line-height: 1.3;
}
.color {
    padding: 1.2rem 0 0.7rem;
    color: #9FA1A3;
}
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 13px;
}
ul li:before {
    content: "\2022";
    font-size: 0.9em;
    margin: 2px 0 0 -13px;
    float: left;
    color: #F7931D;
}
.logo {
    position: absolute;
    right: 2rem;
    top: 30rem;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
header {
    position: relative;
}
.mail {
    font-size: 1.6em;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    background: #F7931D;
    text-align: center;
}
article {
    padding: 0.7rem 1.5rem;
}
.right {
    padding-top: 1.5rem;
}
.right p {
    color: #6F7073;
    font-style: italic;
}
footer {
    padding: 0 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer p:last-of-type {
    text-align: right;
    margin-top: -20px;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    h1, .logo {
        position: static;
    }
    h1, h3 {
        font-size: 2em;
    }
    h1 small {
        font-size: 0.6em;
    }
    article br {
        display: none;
    }
    .mail {
        font-size: 1.188em;
    }
    footer p:last-of-type {
        text-align: left;
        margin: 0;
    }
    p :is(a, span) {
        display: inline-block;
    }
}