@charset "utf-8";
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jost-v14-latin-regular.eot');
    src: local(''),
        url('../fonts/jost-v14-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/jost-v14-latin-regular.woff2') format('woff2'),
        url('../fonts/jost-v14-latin-regular.woff') format('woff'),
        url('../fonts/jost-v14-latin-regular.ttf') format('truetype'),
        url('../fonts/jost-v14-latin-regular.svg#Jost') format('svg');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/jost-v14-latin-700.eot');
    src: local(''),
        url('../fonts/jost-v14-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/jost-v14-latin-700.woff2') format('woff2'),
        url('../fonts/jost-v14-latin-700.woff') format('woff'),
        url('../fonts/jost-v14-latin-700.ttf') format('truetype'),
        url('../fonts/jost-v14-latin-700.svg#Jost') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.4em 'Jost', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
: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 {
    margin: 0 0 0.5rem;
    font-size: 2.3em;
    line-height: 1.3;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.7em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: 2px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0.5rem 1rem;
}
.right {
    margin-top: 5.5rem;
}
header {
    padding: 1rem 0.5rem 0;
    background: #E6E7E7;
    width: 233px;
    position: absolute;
    right: 3rem;
    top: 5rem;
}
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}
article {
    padding: 0 2.5rem;
}
.title {
    background: #637384;
    color: #fff;
    margin: 0 -2.5rem 2rem;
    padding: 1rem 2rem 0;
}
footer {
    padding: 1rem;
    background: #637384;
}
footer p {
    text-align: center;
    padding: 0;
    color: #fff;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    header{
        position: static;
        padding: 1rem 1rem 0;
        width: auto;
    }
    header p{
        text-align: center;
        margin-top: 1rem;
    }
    article{
        padding: 0 1rem;
    }
    article br:not(h1 br){
        display: none;
    }
    .title{
        padding-inline: 2.5rem;
    }
    .flex{
        flex-direction: column;
        margin: 1rem 0;
    }
    .right{
        margin-top: 0;
    }
}
@media only screen and (max-width:480px) {
    ul{
        padding-left: 0;
    }
    h1{
        font-size: 1.7em;
    }
    h2{
        font-size: 1.313em;
        line-height: 1.3;
    }
}
