@charset "utf-8";
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v50-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v50-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v50-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v50-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v50-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v50-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v50-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v50-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v50-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v50-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v50-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v50-latin-700.svg#Roboto') 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 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') no-repeat top center;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 3rem;
    font-size: 2.125em;
    line-height: 1.1em;
    color: #5CC4EC;
}
h1 + p {
    padding-bottom: 1.25rem;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.underline {
    text-decoration: underline #5CC4EC;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 0.875rem;
}
ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: url('../images/icon.svg') no-repeat center;
    background-size: cover;
    float: left;
    margin: 6px 0 0 -0.875rem;
}
header > img {
    display: none;
}
.logo {
    padding: 0.5rem 7.5rem 10rem;
}
main {
    padding: 0 2rem 1rem;
}
.link {
    text-align: center;
    color: #5CC4EC;
    padding: 1.5rem 0 2.5rem;
}
.link a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #5CC4EC;
    text-align: center;
    width: 33.33%;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    width: 32%;
}
footer {
    position: relative;
}
footer > img {
    position: absolute;
    left: 0;
    top: 0.5rem;
}
footer div {
    background-color: #F2F2F2;
    padding: 1.5rem 1rem 0 2rem;
    width: 84%;
    margin-left: auto;
}
footer p {
    padding-bottom: 1.5rem;
}
footer p:last-of-type {
    font-size: 0.7em;
    line-height: 1.3;
}
@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    .logo {
        padding: 1rem;
        display: flex;
        justify-content: center;
        background-color: #5CC4EC;
        width: 100%;
    }
    header > img {
        display: block;
    }
    header {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        margin-bottom: 1.5rem;
    }
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer > img {
        position: relative;
        top: unset;
        left: unset;
        margin-bottom: -0.5rem;
        z-index: 1;
    }
    footer div {
        width: auto;
    }
}
@media only screen and (max-width: 780px) {
    .flex p {
        width: 48%;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 0 1rem 1rem;
    }
    .flex p {
        width: 100%;
    }
}