@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v27-latin-regular.eot');
    src: url('../fonts/noto-sans-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v27-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-regular.svg#NotoSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v27-latin-700.eot');
    src: url('../fonts/noto-sans-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-700.woff') format('woff'), url('../fonts/noto-sans-v27-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-700.svg#NotoSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333333;
    font: 400 1em/1.4em 'Noto Sans', Arial, sans-serif;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px) fixed, url("../images/bg_body.jpg") no-repeat top center fixed;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: none;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #68A2B9;
    text-decoration: underline 1px dotted #68A2B9;
}
p {
    padding-bottom: 1.625rem;
}
h1, h2 {
    color: #68A2B9;
}
h1 {
    margin: 0;
    font-size: 1.6em;
    line-height: 1.3;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.313em;
    line-height: 1.3;
    margin-bottom: 1.625rem;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 0.25rem 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.slider {
    position: relative;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}
.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}
header, section, footer {
    padding: 1.625rem;
    margin-bottom: 17px;
    background-color: #fff;
    box-shadow: 0 0 26px rgba(0, 0, 0, 0.44);
}
a.button {
    display: inline-block;
    background: #68A2B9;
    color: #fff;
    padding: 0.75rem 1.25rem;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 2px;
    margin-top: 1rem;
    border: 2px solid #68A2B9;
}
a.button:hover {
    background: #fff;
    color: #68A2B9;
    text-decoration: none;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 0.5rem;
    }
    header, section, footer {
        padding: 1rem;
    }
}