@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-condensed-v27-latin-500.eot');
    src: url('../fonts/roboto-condensed-v27-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-500.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-500.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-500.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-500.svg#RobotoCondensed') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #231f20;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 820px;
    margin: 16px auto;
    border: 1px solid #CBCBCB;
    background-color: #fff;
    overflow: hidden;
}

header {
    padding: 70px 66px 50px;
}

article {
    padding: 0 66px 25px;
}

.justify {
    text-align: justify;
    hyphens: auto;
}

footer {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

footer:before {
    content: '';
    height: 23px;
    width: 71px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #00aeef;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

hr {
    border: 0;
    width: 100%;
    height: 22px;
    background: #00508d;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 20px;
    font-weight: 500;
    color: #00508d;
}

h1 {
    margin: 25px 0;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    color: #00508d;
}

h1 span {
    font-size: 22px;
}

h1 small {
    display: block;
    line-height: 1.5;
    font-size: 20px;
}

h2 {
    font-size: 16px;
    font-weight: 500;
    color: #00aeef;
}

.color {
    color: #00aeef;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #00aeef;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

li:before {
    content: "\2044";
    color: #00aeef;
    float: left;
    font-size: 23px;
    text-indent: -12px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width:818px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    header {
        padding: 30px 6%;
    }

    article {
        padding: 0 6%;
    }

    .justify {
        text-align: left;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    .none {
        display: none;
    }
}

@media all and (max-width:820px) {
    header {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }

    article {
        padding: 0 1rem;
    }

    h1 {
        font-size: 30px;
    }
}