* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ubuntu-v20-latin-regular.eot');
    src: url('../fonts/ubuntu-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/ubuntu-v20-latin-regular.woff') format('woff'),
        url('../fonts/ubuntu-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/ubuntu-v20-latin-regular.svg#Ubuntu') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.eot');
    src: url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'),
        url('../fonts/ubuntu-v20-latin-700.woff') format('woff'),
        url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'),
        url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg');
}



html {
    min-height: 100%;
}

body {
    color: #161528;
    font-family: 'Ubuntu', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

#wrapper {
    max-width: 1000px;
    margin: 1rem auto;
    border: 1px solid #777;
    padding: 0;
    background: #fff;
    font-size: 15px;
}

.content {
    max-width: 800px;
    padding: 16px;
    margin: 60px auto;
}

.content header {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    position: relative;
}

footer {
    padding: 0 3.125rem 3.125rem;
    display: flex;
    justify-content: right;
}

p {
    margin: 0 0 2.1875rem;
}

strong {
    font-weight: 700;
}

h1 {
    font-weight: 400;
    font-size: 38px;
    line-height: 1.25;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem;
}

h1 small {
    display: block;
    font-size: 16px;
    margin-top: 9px;
}

h1 strong {
    font-weight: 400;
    font-size: 15px;
    display: block;
}

.margin {
    margin: 24px 0 0 0;
    padding: 24px 0 16px;
    border-top: 1px solid #D1D4D7;
}

h2 {
    margin: 0 0 1rem;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.75rem;
    color: #E40003;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #161528;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 35px 10px;
    list-style: none;
}

ul li {
    padding-left: 24px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #37464E;
    position: absolute;
    z-index: 3;
    left: 8px;
    top: 8px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a span {
    color: #2471D5;
}

footer a.btn {
    display: inline-block;
    text-align: center;
    background: #E40003;
    padding: 0.625rem 1.875rem;
    color: #fff !important;
    border-radius: 0.3125rem;
}

.link {
    color: #007bff !important;
}

.link:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}

.text p,
.text ul {
    margin-bottom: 16px;
    padding-bottom: 0;
}

@media all and (max-width: 999px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    article {
        padding: 1rem 1rem 0.0625rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }

    ul {
        padding-bottom: 1.25rem;
    }

    ul li {
        padding-left: 0.9375rem;
    }

    p {
        margin: 0 0 1.25rempx;
    }

    br {
        display: none;
    }

    li:before {
        left: 0;
    }
}

@media all and (max-width: 575px) {
    .content {
        margin: 0 auto;
        padding: 0;
    }

    ul {
        padding-left: 0;
    }

    h1 {
        font-size: 28px;
    }
}