@charset "utf-8";
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #CCCCCC;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.7rem;
}
p.big{
    font-size: 1.18em;
    line-height: 1.3em;
}
p.big, h2{
    color: #57585A;
}
h1 {
    margin: 0 0 0.5rem -2.1rem;
    font-size: 2.4em;
    line-height: 1.1;
    border: 1px solid #312F30;
    color: #312F30;
    padding: 0.5rem 1rem 0.5rem 2rem;
    display: inline-block;
    letter-spacing: 1px;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    width: 100px;
    text-align: right;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
    width: 93%;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
article {
    padding: 2rem 2rem 0;
}
article div {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
}
footer {
    padding: 0 2rem 1rem;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article div {
        flex-direction: column;
    }
    h2, ul {
        width: 100%;
        text-align: left;
    }
    h1 {
        margin: 1rem 0;
        padding: 0.5rem 1rem;
        font-size: 1.5em;
    }
    .hide_m{
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    article{
        padding: 1rem;
    }
    footer{
        padding: 0 1rem 1rem;
    }
}