@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #50565C;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 691px;
    margin: 1rem auto;
    border: solid 1px #4F5A60;
    background: #fff url('../images/bg.jpg') bottom left no-repeat;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    white-space: nowrap;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1.85rem;
    font-size: 2.2em;
    line-height: 1.1em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.95em;
    line-height: 1.3em;
    text-transform: uppercase;
    margin: -15rem 0 1rem;
}
h3 span {
    font-size: 1rem;
    text-transform: none;
    font-weight: 400;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.65rem;
}
ul li:before {
  content: "•";
  font-size: 1em;
  float: left;
  margin: 1px 0 0 -0.9rem;
}
article {
    padding: 0 3rem;
    position: relative;
}
.flex {
    display: flex;
    align-items: center;
    padding-right: 4.5rem;
    justify-content: space-between;
}
.flex p {
    font-size: 0.85em;
    line-height: 1.3;
}
footer p {
    padding: 0.5rem 0 0.6rem 9rem;
    text-align: center;
        color: #fff;
}
footer nav {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
@media only screen and (max-width:690px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    .hide_m {
        display: none;
    }
    article {
        padding: 0 2rem;
    }
    h3 {
        margin-top: 0;
    }
    .flex {
        padding-right: 0;
    }
    footer p {
        background: #4E5860;
        text-align: center;
        padding: 0.7rem 1rem;
    }
    footer nav {
        position: static;
        background: #9EA2A3;
        padding: 0.7rem 1rem;
    }
    span {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 0 1rem 0.5rem;
    }
    li {
        padding-left: 0.9rem;
    }
    h1 {
        font-size: 1.8em;
    }
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .flex p {
        text-align: center;
    }
}