@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #1B5597;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 690px;
    margin: 1rem auto;
    border: solid 2px #1B5597;
    background: url('../images/bg.jpg') top left no-repeat, #fff;
    overflow: hidden;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.58em;
    line-height: 1.1em;
    color: #fff;
}
h1 small {
    font-size: 1rem;
    font-weight: 400;
    position: absolute;
    transform: rotate(-90deg);
    right: -12px;
    top: 52px;
}
.big {
    font-size: 2.05em;
    padding: 0.7rem 3rem 0;
    display: inline-block;
}
h1 span:first-of-type {
    position: relative;
    bottom: 13px;
    right: 7px;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3em;
    text-transform: uppercase;
}
h3 {
    line-height: 1.3em;
    color: #fff;
    font-size: 1.58em;
    padding: 0.1rem 0 0.5rem;
}
h1, h3 {
    text-align: center;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 0.25rem;
    list-style: none;
}
li {
    padding-left: 0.8rem;
}
ul li:before {
    content: "•";
    font-size: 1.5em;
    float: left;
    margin: -1px 0 0 -0.8rem;
}
article {
    padding: 0 0.8rem;
}
.title {
    transform: rotate(-3deg);
    margin: -17px 0 0;
}
i {
    font-size: 1.313em;
}
.center {
    text-align: center;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left {
    width: 365px;
}
.right {
    width: 370px;
}
footer {
    padding: 0.5rem 1rem 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #005596;
}
footer p {
    color: #fff;
    text-align: center;
    line-height: 1.2;
}
@media only screen and (max-width:689px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    .title {
        background: #005596;
        margin: 0 -0.8rem 1rem;
        padding: 0 0.8rem 0.8rem;
        transform: none;
    }
    h1 small{
      position: static;
       transform: none;
    }
    .big{
      border: 1px solid #fff;
      border-radius: 10px;
      padding: 10px;
      font-size: 1.375em;
      line-height: 1;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: auto;
    }
    footer {
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.8rem;
    }
}