@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v39-latin-regular.eot');
    src: url('../fonts/noto-sans-v39-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v39-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v39-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v39-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v39-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v39-latin-700.eot');
    src: url('../fonts/noto-sans-v39-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v39-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v39-latin-700.woff') format('woff'), url('../fonts/noto-sans-v39-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v39-latin-700.svg#NotoSans') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    color: #000;
    line-height: 1.375rem;
    font-size: 15px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 725px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

article {
    margin: 14px 25px 0;
    border-bottom: 1px solid #000;
    position: relative;
}

section {
    display: flex;
    gap: 0 20px;
    border-top: #242021 2px solid;
    border-bottom: #242021 2px solid;
    padding: 14px 0 6px;
    margin-bottom: 16px;
    justify-content: space-between;
}

section p {
    font-size: 18px;
}

section img {
    vertical-align: middle;
    margin-right: 3px;
}

footer {
    display: flex;
    padding: 1rem 23px;
    align-items: center;
    justify-content: space-between;
}

:is(strong, h1) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0 20px;
    font-size: 34px;
    line-height: 1.2;
}

h2 {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 12px;
}

h2.h2 {
    margin-bottom: 0;
    line-height: 1.3;
}

p {
    margin: 0 0 8px;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 20px;
    text-indent: -1rem;
}

img {
    max-width: 100%;
}

.flex {
    display: flex;
    gap: 22px;
    margin: 18px 0 16px;
    align-items: center;
}

.images {
    width: 119px;
}

.text {
    width: calc(100% - 141px);
}

span {
    white-space: nowrap;
}

.margin {
    margin: 0 0 1px;
}

.logo {
    position: absolute;
    bottom: 18px;
    right: 0;
}

@media all and (max-width:724px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    p {
        text-wrap: pretty;
        text-align: left;
    }

    h1 {
        font-size: 28px;
    }

    article {
        margin: 10px 1rem 0;
    }

    footer {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 6px 16px;
        justify-content: center;
    }
}

@media all and (max-width:660px) {
    section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    :is(section p, h1) {
        text-align: center;
    }
}

@media all and (max-width:630px) {
    .flex {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 24px;
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin: 0 0 1rem;
    }

    :is(.text p, h2) {
        text-align: center;
    }

    .text {
        width: 100%
    }
}