@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2C3E67;
    font: 400 1em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1rem 2rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    color: #1A4B84;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.95em;
    line-height: 1.1;
}
h2 {
    font-size: 1.385em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 2.2em;
    line-height: 1.2;
    text-align: center;
    order: 2;
    color: #000;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 1rem 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.big {
    font-size: 1.125em;
    line-height: 1.3;
}
header {
    padding: 0 4rem 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header a:first-of-type {
    order: 1;
}
header a:last-of-type {
    order: 3;
}
.flex {
    display: flex;
    justify-content: space-between;
    gap: 0 0.5rem;
    margin-top: 1rem;
}
.left {
    flex: 1;
}
.right {
    width: 330px;
    padding: 0.5rem 1rem;
    background: #F8F9FA;
    border: 1px solid #E1E1E1;
}
.custom {
    margin: 1rem 0 1.5rem 2rem;
}
footer {
    position: absolute;
    right: 19.25rem;
    bottom: 0.5rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h3 {
        font-size: 2em;
    }
    br{
        display: none;
    }
    header {
        padding-right: 0;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
    .custom {
        margin: 0;
    }
}
@media only screen and (max-width:768px) {
    header{
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    h1, h3{
        font-size: 1.7em;
    }
    h3{
        width: 100%;
        order: 3;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: auto;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1, h3{
        font-size: 1.5em;
    }
    h2{
        font-size: 1.188em;
    }
}