@charset "utf-8";
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v44-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.4 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto 10rem;
    box-shadow: 0 0 5px #999;
    background: #fff url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
}
#wrapper::before {
    content: "";
    width: 5%;
    height: 100%;
    background: #229AD6;
    position: absolute;
    top: 0;
    right: 0;
}
#wrapper::after {
    content: "";
    width: 410px;
    height: 29px;
    background-color: #FFE67F;
    position: absolute;
    bottom: 0;
    right: 5%;
}
p {
    margin: 1rem 0;
}
p, li {
    hyphens: auto;
}
h1 {
    margin: 2rem 0;
    font-size: 1.625em;
    text-align: center;
}
h2 {
    font-size: 1.0625em;
    margin: 1rem 0;
}
h3 {
    font-size: 1.5625em;
    margin-bottom: 3rem;
    font-weight: 400;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
h1, h2, h3, a.color {
    color: #229AD6;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding-left: 4rem;
    margin: 0.5rem 0;
}
ul li:before {
    content: "\2010";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -2rem;
}
header {
    padding: 3.5rem 5rem 3rem 6.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
article {
    padding: 1rem 5rem 3.875rem 6.25rem;
}
.pd {
    padding: 1rem 0;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.flex figure {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}
footer p {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-top: 1px solid #229AD6;
    color: #fff;
    text-align: center;
    margin: 0;
}
footer p a {
    display: inline-block;
    padding: 0.5em 1.2em 0.55em;
    border: 1px solid #229AD6;
    background-color: #229AD6;
}
@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto 10rem;
        background: #fff;
    }
    br, #wrapper::before, #wrapper:after {
        display: none;
    }
}
@media only screen and (max-width: 780px) {
    header, article {
        padding: 1rem 2rem;
    }
    li {
        padding-left: 2rem;
    }
}
@media only screen and (max-width: 660px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media only screen and (max-width: 515px) {
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
@media only screen and (max-width: 480px) {
    header, article {
        padding: 1rem;
    }
    li {
        padding-left: 1rem;
    }
    ul li::before {
        margin-left: -1rem;
    }
    h1, h3 {
        font-size: 1.3em;
    }
}