* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 21px;
    color: #000;
    font-weight: 400;
}

#wrapper {
    margin: 16px auto;
    border: 1px #000 solid;
    max-width: 910px;
    position: relative;
    background: #FFF;
    overflow: hidden;
}

strong {
    font-weight: 700;
    color: #e40522;
}

p {
    padding-bottom: 15px;
    text-align: justify;
    hyphens: auto;
}

h1 {
    margin: 20px 0 35px;
    font-size: 27px;
    line-height: 30px;
    text-align: center;
    font-weight: 700;
}

h1 span {
    font-size: 18px;
    font-weight: normal;
}

h2 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 700;
}

h3 {
    color: #404040;
    text-align: right;
    font-size: 33px;
    line-height: 32px;
    font-weight: 400;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

a ins {
    color: #0563C1;
    text-decoration: underline;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 20px 24px;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
}

li:before {
    content: "-";
    float: left;
    font-size: 20px;
    text-indent: -1.5rem;
}

article {
    padding: 20px 90px 25px;
}

article section {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.content {
    width: 48%;
}

.content li:before {
    content: "\2022";
    font-size: 21px;
    font-family: Arial, sans-serif;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 20px -66px 0 0;
}

p span {
    white-space: nowrap;
}

.button {
    display: flex;
    margin-top: 20px;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.button a {
    text-align: center;
    display: inline-block;
    padding: 10px 40px;
    color: #fff !important;
    font-weight: 700;
    background: #e31937;
    width: 300px;
}

.button a:hover {
    background: #404142;
}

@media only screen and (max-width:908px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(ul, p, h1) {
        hyphens: auto;
    }

    h1 {
        margin: 10px 0 25px;
    }

    article {
        padding: 16px;
    }

    .flexbox {
        margin-right: 0;
    }

    p {
        text-align: left;
    }

    ul {
        margin-left: 10px;
    }
}

@media only screen and (max-width:660px) {
    article section {
        flex-wrap: wrap;
    }

    .content {
        width: 100% !important;
    }
}

@media only screen and (max-width:540px) {
    .flexbox {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    ul {
        margin-left: 0;
    }
}

@media only screen and (max-width:374px) {
    .button a {
        width: 100%;
    }
}