@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: local(''), url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: local(''), url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 1000px;
    background: #e3e2e2;
    border: solid thin #cbcbcb;
}

header {
    padding: 3rem 5.3125rem 1rem;
}

article {
    padding: 1rem 5.3125rem 0;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content:nth-of-type(1) {
    width: 30%;
}

.flex-box-content:nth-of-type(2) {
    width: 32%;
}

.flex-box-content:nth-of-type(3) {
    width: 31%;
}

.margin-bottom {
    margin-bottom: 0;
}

.banner {
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
}

.color {
    color: #006c5b !important;
}

.text {
    font-size: 22px;
    margin-top: 12px;
    display: inline-block;
}

:is(h1, h2, h3, strong) {
    font-weight: 700;
}

:is(h1, h2, h3, h4) {
    line-height: 1.2;
}

:is(h1, h4) {
    text-align: center;
}

h1 {
    font-size: 3.5rem;
}

h1 small {
    font-weight: 400;
    font-size: 100%;
}

h2 {
    font-size: 2.4375rem;
    margin: 0 1.4375rem 0 0;
    float: left;
}

h3 {
    font-size: 1.375rem;
    margin: 0 0 0.5rem;
}

h4 {
    font-size: 1.5625rem;
    margin: 0 0 0.5rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    margin: 0 0 0.625rem 0.9375rem;
}

ul li {
    list-style: none;
    text-indent: -0.9375rem;
    margin-bottom: 0.5rem;
}

ul li:before {
    font-size: 1.125rem;
    margin-right: 0.9375rem;
    position: relative;
    top: -1px;
    float: left;
    content: "\25A0";
    color: #006c5b;
}

footer {
    padding: 0 5.3125rem 3rem;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-end;
}

.footer-flex-content {
    width: 45%;
}

.width {
    width: 52%;
}

.fontsize {
    font-size: 18px;
    line-height: 24px;
}

@media screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, h3, h4, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    p {
        text-align: left;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 872px) {
    header {
        padding: 1rem 1.25rem;
    }

    article {
        padding: 1rem 1.25rem 0;
    }

    footer {
        padding: 1rem 1.25rem 1.25rem;
    }
}

@media screen and (max-width: 780px) {
    h1 {
        font-size: 2.3125rem;
    }

    h2 {
        font-size: 1.6875rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    .flex-box {
        display: block;
    }

    .flex-box-content {
        width: 100% !important;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-flex-content {
        width: 100%;
    }

    footer p {
        text-align: center;
    }

    .width {
        width: auto;
    }
}

@media screen and (max-width: 530px) {
    h2 {
        float: none;
        margin: 0 0 1rem;
    }

    .text {
        font-size: 18px;
    }

    .fontsize {
        font-size: 16px;
    }
}