@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #555;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 910px;
    margin: 1rem auto;
    border: 2px solid #555;
    background-color: #fff;
    padding: 20px 20px 20px 275px;
    position: relative;
}

header {
    padding: 0;
}

figure:nth-of-type(1) {
    position: absolute;
    top: 20px;
    left: 20px;
}

figure:nth-of-type(2) {
    display: none
}

article {
    position: relative;
}

.logo {
    position: absolute;
    top: 0;
    right: 0
}

footer {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 29px;
    line-height: 1.1;
    margin: 35px 0 15px;
}

h1 span {
    display: block;
    font-size: 20px;
    line-height: 28px;
    margin-top: 5px;
}

h2 {
    font-size: 21px;
    line-height: 24px;
    margin-top: 16px;
}

h2:first-of-type {
    margin-top: 0;
    position: relative;
    padding-bottom: 16px;
}

h2:first-of-type:before {
    content: '';
    background: #164b2a;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 81px;
    height: 2px;
}

h2+p {
    margin-top: 5px !important;
    font-size: 16px;
    line-height: 23px;
}

:is(h1, h2) {
    color: #164b2a;
}

ul {
    list-style: none;
    margin: 5px 0 0 13px;
}

ul li {
    padding-left: 13px;
}

li:before {
    content: "\2022";
    color: #555;
    float: left;
    font-size: 19px;
    text-indent: -13px;
    margin-top: 1px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:910px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    h1 br {
        display: none
    }
}

@media only screen and (max-width:728px) {
    #wrapper {
        padding: 16px
    }

    figure:nth-of-type(1) {
        display: none
    }

    figure:nth-of-type(2) {
        display: block;
        position: static;
    }

    .logo {
        position: static;
        padding: 16px;
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width:480px) {
    ul {
        margin-left: 0
    }

    .center {
        text-align: center;
    }

    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }

    h1 {
        font-size: 24px;
        text-align: center;
    }
}