@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), 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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375rem;
    color: #2f6156;
}

#wrapper {
    margin: 1rem auto;
    max-width: 707px;
    background: #fff;
    border: solid thin #cbcbcb;
}

header {
    padding: 1rem 0 0;
}

article {
    padding: 1rem 3.5625rem;
}

.flex-box {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
}

.flex-box-content {
    width: 48%;
    padding: 0 1rem;
}

.color {
    color: #169d78 !important;
}

.text-center {
    text-align: center;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 2.125rem;
    margin: 0.375rem 0 1.25rem;
    padding: 1rem;
    background: #2f6156;
    color: #fff;
    line-height: 1.2;
    text-shadow: -2px -2px 0 #169d78, 2px -2px 0 #169d78, -2px 2px 0 #169d78, 2px 2px 0 #169d78;
}

p {
    margin-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1.25rem 1.375rem;
}

ul li {
    list-style: none;
    text-indent: -1.375rem;
}

ul li:before {
    font-size: 1.25rem;
    margin-right: 1.375rem;
    float: left;
    content: "\2022";
}

footer {
    margin: -1.4375rem 0 0;
    padding: 0 0 1.3125rem 9.0625rem;
    position: relative;
    z-index: 999;
}

.green-background {
    background: #169d78;
    padding: 0.625rem 1rem;
}

.green-background :is(p, a) {
    color: #fff !important;
}

small {
    font-size: 80%;
}

@media screen and (max-width: 706px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 610px) {
    article {
        padding: 1rem;
    }

    .flex-box {
        flex-direction: column;
        align-items: center;
    }

    .flex-box-content {
        width: 100% !important;
    }

    h1 {
        font-size: 1.75rem;
    }

    .green-background {
        padding: 1rem;
    }

    footer {
        margin-top: 0;
        padding: 0;
    }
}