@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pt-sans-v17-latin-regular.eot');
    src: url('../fonts/pt-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-regular.woff') format('woff'), url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-regular.svg#PTSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-sans-v17-latin-700.eot');
    src: url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-700.woff') format('woff'), url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 20px;
    font-family: "PT Sans", Arial, sans-serif;
    color: #272c2e;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 815px;
    margin: 1rem auto;
    border: 1px solid #cbcbcb;
    overflow: hidden;
    background-color: #fff;
}

article {
    padding: 4px 35px 0;
}

.border {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 15px;
    border: solid 2px #ef4736;
}

section {
    background: #f2f4f4;
    padding: 26px 16px 1rem;
    border-radius: 15px;
    margin: -17px 0 0;
}

footer {
    display: flex;
    justify-content: flex-end;
    padding: 19px 34px;
    background: #ef4736;
}

p:not(:last-child) {
    margin-bottom: 16px;
}

span {
    white-space: nowrap;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-size: 22px;
    color: #ef4736;
    line-height: 26px;
    text-align: center;
}

h2 {
    z-index: 9;
    position: relative;
    font-size: 18px;
    color: #fff;
    background: #ee2f29;
    margin-left: -35px;
    max-width: 431px;
    border-radius: 0 15px 15px 0;
    line-height: 26px;
    padding: 12px 10px 12px 51px;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 16px;
}

ul li:before {
    content: "\2022";
    color: #ef4736;
    float: left;
    font-size: 20px;
    text-indent: -16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #272c2e;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    text-decoration: underline !important;
    color: #047abe !important;
}

img {
    vertical-align: bottom;
    max-width: 100%;
}

@media (max-width: 814px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    footer {
        padding: 1rem;
    }

    article {
        padding: 6px 1rem 0;
    }

    h2 {
        margin-left: -16px;
        padding-left: 32px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br {
        display: none;
    }
}