@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');
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/hind-v16-latin-700.eot');
    src: url('../fonts/hind-v16-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v16-latin-700.woff2') format('woff2'), url('../fonts/hind-v16-latin-700.woff') format('woff'), url('../fonts/hind-v16-latin-700.ttf') format('truetype'), url('../fonts/hind-v16-latin-700.svg#Hind') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Hind', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 454px;
    margin: 1rem auto;
    border: 2px solid #000;
    background-color: #fff;
}

header {
    position: relative;
}

article {
    padding: 18px;
}

footer {
    padding: 10px 18px;
}

figure {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer p {
    font-weight: 700;
    font-size: 97%;
    padding-top: 5px;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 22px;
    line-height: 1.1;
    background: #1b458f;
    padding: 28px 18px 12px;
    color: #fff;
}

h2 {
    font-size: 22px;
    line-height: 1.1;
    position: absolute;
    top: 138px;
    left: 0;
    background: #2268b3;
    color: #fff;
    padding: 12px 71px 7px 18px;
    clip-path: polygon(0 0, 94% 0%, 100% 100%, 0% 100%);
}

ul {
    list-style: none
}

ul li {
    padding-left: 17px;
    margin-bottom: 16px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 23px;
    text-indent: -17px;
    margin-top: 3px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:454px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    figure {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    footer p {
        text-align: center;
    }

    :is(h1, article, footer) {
        padding: 16px
    }

    br {
        display: none
    }

    h2 {
        padding: 10px 16px;
        clip-path: none;
        position: relative;
        top: 0;
        left: 0;
    }
}