@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v43-latin-regular.eot');
    src: url('../fonts/open-sans-v43-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v43-latin-regular.woff') format('woff'), url('../fonts/open-sans-v43-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v43-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v43-latin-700.eot');
    src: url('../fonts/open-sans-v43-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v43-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v43-latin-700.woff') format('woff'), url('../fonts/open-sans-v43-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v43-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #222;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

article p:not(:last-child) {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    padding: .5rem 0 1rem;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    background-color: #2b626c;
    margin: -1.25rem -1.25rem .625rem;
    padding: .625rem 1.25rem;
    color: #fff;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    padding-bottom: 1rem;
    color: #2b626c;
}

.gray h3 {
    color: #222;
}

h4 {
    font-size: 1rem;
    padding: .5rem 0;
}

hr {
    border-style: none;
    margin: 1.5rem 0 .5rem;
    border-top: 1px solid #222;
}

ul {
    list-style: none;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1rem;
    color: #2b626c;
    line-height: 1.3;
}

header {
    box-shadow: 0 0 10px black;
    padding: 1.25rem;
    display: flex;
    position: relative;
}

.section {
    padding: 1.25rem;

}

.title {
    margin-bottom: .3rem;
    padding-bottom: .25rem;
    background-color: #2b626c;
    color: #fff;
}

.info {
    display: flex;
    gap: .625rem 3rem;
}

.info p {
    display: flex;
    flex-direction: column;
}

.info i {
    margin: 0 5px 5px 0;
}

.gray {
    background-color: #e4e4e4;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    padding: 1.25rem;
    background-color: #2b626c;
    color: #fff;
    margin-top: 2rem;
}

footer hr {
    border-color: #fff;
    margin: 5px 0;
}

footer p {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 42rem) {
    header {
        justify-content: center;
        padding: 1.25rem 1rem;
    }

    .title {
        text-align: center;
    }

    .info {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 1rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        margin: -1rem -1rem .5rem;
        padding: .625rem 1rem;
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    footer {
        margin-top: 1rem;
    }
}

@media only screen and (max-width: 23.438rem) {}