@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    max-width: 900px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

header {
    padding: 1rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

article {
    padding: 0 2.8125rem;
}

.infor {
    background: #009C4F;
    margin: 0 -2.8125rem 1.5rem;
    padding: 1rem 2.8125rem 15px;
    display: flex;
    justify-content: space-between;
    gap: 1%;
}

.infor p {
    color: #FFF;
}

.flex {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.flex img {
    margin: -0.3125rem 0 0;
}

.justify {
    text-align: justify;
    hyphens: auto;
}

footer {
    padding: 0 2.8125rem 1.25rem;
    border-bottom: 40px solid #009C4F;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: -12px 0 0;
}

footer section {
    width: 70%;
}

footer p {
    line-height: 1.5;
}

span {
    white-space: nowrap;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    font-size: 32px;
    color: #009C4F;
    width: calc(100% - 275px);
    line-height: 1.7;
}

h1 small {
    font-size: 20px;
}

h2 {
    font-size: 1rem;
    margin: 1rem 0;
    line-height: 1.375rem;
    color: #009C4F;
}

ul {
    margin: 0 0 1.25rem 1.5625rem;
    list-style: none;
}

ul li {
    padding-left: 1.625rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    text-indent: -1.5rem;
    color: #009C4F;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: underline;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.margin {
    margin-bottom: 16px;
}

.color {
    color: #467886 !important;
}

@media all and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    article {
        padding: 0 16px;
    }

    .infor {
        padding: 16px;
        margin: 0 -16px 16px;
    }

    footer {
        padding: 0 16px 20px;
    }

    :is(p, h1, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        line-height: 1.3;
        font-size: 32px;
    }

    .justify {
        text-align: left;
    }

    h1 br {
        display: none;
    }
}

@media all and (max-width:820px) {
    footer {
        margin: 0;
    }
}

@media all and (max-width:767px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .infor {
        gap: 1rem;
        margin: 0 -1rem 1rem;
        padding: 1rem;
    }

    footer h2 {
        margin: 0 0 1rem;
    }

    h1 {
        width: 100%;
        text-align: center;
    }

    ul {
        margin-left: 0;
    }
}

@media all and (max-width:660px) {
    footer {
        align-items: center;
        gap: 10px;
    }

    footer p {
        line-height: 1.7;
    }

    footer section {
        width: auto;
    }

    :is(.infor, .flex, .box, footer) {
        flex-direction: column;
    }

    .flex {
        align-items: center;
        justify-content: center;
    }

    .flex img {
        margin: 0;
    }

    .flex p {
        text-align: center;
    }
}