@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1.125em/1.3em 'Calibri', Arial sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 550px;
    border: solid 2px #496C8E;
    border-bottom: 2px solid #EF9221;
    background: #fff;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1em;
    line-height: 1.1em;
}
h2 {
    text-transform: uppercase;
    font-size: 1.7em;
    color: #496C8E;
    background: #B6B9BD;
    padding: 1rem 5rem 1rem 14.5rem;
    text-align: center;
    line-height: 1.3;
    border-bottom: 2px solid #496C8E;
    transform: rotate(-90deg);
    position: absolute;
    left: -282px;
    bottom: 89px;
}
.content {
    padding: 3rem 1rem 0.5rem 6rem;
}
.right {
    text-align: right;
    padding: 1rem 0;
    font-size: 0.9em;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: -0.7rem;
}
.logo {
    padding-top: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h2 {
        transform: none;
        position: static;
        padding: 0.3rem;
        font-size: 1.6em;
    }
    p a {
        display: inline-block;
    }
    .content {
        padding: 1rem;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:449px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
    .right {
        text-align: center;
    }
    h2 {
        font-size: 1.375em;
    }
}