@charset "utf-8";

:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/hind-v16-latin-regular.eot');
    src: url('../fonts/hind-v16-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-regular.woff2') format('woff2'), url('../fonts/hind-v16-latin-regular.woff') format('woff'), url('../fonts/hind-v16-latin-regular.ttf') format('truetype'), url('../fonts/hind-v16-latin-regular.svg#Hind') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/hind-v16-latin-600.eot');
    src: url('../fonts/hind-v16-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-600.woff2') format('woff2'), url('../fonts/hind-v16-latin-600.woff') format('woff'), url('../fonts/hind-v16-latin-600.ttf') format('truetype'), url('../fonts/hind-v16-latin-600.svg#Hind') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #42748c;
    font-family: 'Hind', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 1.5rem;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #000;
}

h1,
h2,
strong {
    font-weight: 600;
}

h1:before {
    content: '';
    width: 100px;
    height: 5px;
    background: #E3000B;
    display: block;
    margin: 0 0 0.625rem;
}

small {
    font-size: 1.125rem;
}

h2 {
    font-size: 1.125rem;
    color: #000;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 0.75rem 3rem;
}
ul li::before {
    content: "\2022";
    float: left;
    margin: 0 0 0 -1.5rem;
}
header {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

article {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(106, 147, 166, 1) 100%);
    padding: 3.125rem 3.125rem 0;
}

p {
    padding: 0 0 1rem;
}

footer {
    padding: 1.25rem 3.125rem 0.313rem;
    background: #000;
}
footer p {
    color: #fff;
}
@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    footer p {
        text-align: center;
        width: auto;
    }
}
@media only screen and (max-width: 37.5rem) {
    article, footer {
        padding: 1rem;
    }
    :is(article, footer)>*:last-child {
        padding: 0;
    }
    li {
        padding-left: 1.5rem;
    }
}