@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-3-v15-latin-regular.eot');
    src: url('../fonts/source-sans-3-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-regular.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-sans-3-v15-latin-600.eot');
    src: url('../fonts/source-sans-3-v15-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-600.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-600.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-600.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-600.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-3-v15-latin-700.eot');
    src: url('../fonts/source-sans-3-v15-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-700.svg#SourceSans3') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Source Sans 3', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 0.0625rem solid #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

.blue {
    color: #0071A6;
    font-size: 1.2em;
}

a.link {
    color: #1E5E9E;
    font-weight: 700;
    text-decoration: underline;
}

a.light_blue {
    color: #00AEEF;
    font-size: 1.2em;
    font-weight: 400;
}

ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 1.25rem;
}

ul li:before {
    content: "";
    background-color: #000000;
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 0.5rem;
    margin: 0 0 0 -1.25rem;
}

h1 {
    color: #00BBE5;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 1.25rem 0;
}

header {
    color: #fff;
    background-color: #00BBE5;
    font-size: 0.9375rem;
    line-height: 1.2;
    margin: 1.25rem 1.25rem 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
}

.flex_header {
    width: calc(100% - 18.375rem);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1rem;
}

.image {
    width: 18.375rem;
}

.image img {
    display: block;
}

.text p {
    text-align: justify;
    margin: 0 0 1rem;
}

.text>p:last-of-type {
    margin: 0;
}

.images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 1.25rem;
    height: 11.5625rem;
    overflow: hidden;
}

.images>img:first-of-type {
    width: 18.375rem;
}

.images>img {
    width: calc((100% - 18.375rem) / 2);
}

article {
    padding: 1.25rem;
}

.flex_article {
    display: flex;
    gap: 1.5rem;
}

.left {
    flex: 50%;
}

.right {
    color: #0071A6;
    flex: 50%;
}

footer {
    background-color: #004684;
    width: auto;
    padding: 0.625rem 1.25rem;
    margin: 3.75rem 1.25rem 1.25rem;
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 56.1875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        margin: 1rem 0;
    }

    header {
        line-height: 1.4;
        margin: 0;
        flex-direction: column;
    }

    .flex_header {
        width: 100%;
        padding: 1rem;
    }

    .image {
        display: none;
    }

    .text p {
        text-align: left;
    }

    .images {
        padding: 0;
        height: 19vw;
        overflow: hidden;
    }

    .images>img:first-of-type {
        width: 33.33%;
    }

    .images>img {
        width: 33.33%;
    }

    article {
        padding: 1rem 0;
    }

    footer {
        padding: 0.625rem 1rem;
        margin: 0;
    }
}

@media only screen and (max-width: 40rem) {
    .flex_article {
        display: block;
    }

    h1 {
        font-size: 1.625rem;
    }

    h1 br {
        display: none;
    }

    footer {
        justify-content: center;
    }
}