@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333333;
    font: 1em/1.4 Arial, sans-serif;
    background: linear-gradient(to top, #eee 0%, transparent 80%) fixed, url('../images/bg.jpg') no-repeat top center fixed;
    background-size: cover, cover;
}
#wrapper {
    position: relative;
    max-width: 895px;
    min-width: 250px;
    margin: 1rem auto;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
p, li {
    hyphens: auto;
}
h1 {
    margin: 0;
    font-size: 1em;
    line-height: 1.4;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3em;
    padding: 1rem 1rem 0;
    background: #fff;
    color: #0C2577;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline 1px dotted #0C2577;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 0 1.125rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: -1px 0 0 -1.125rem;
}
ul ul {
    padding-bottom: 0;
}
ul ul li:before {
    content: "\2092";
    margin-top: -8px;
}
header {
    overflow: hidden;
    border-radius: 3px;
    background: transparent !important;
}
.slider {
    position: relative;
    border: 1px solid #DFDFDF;
}
.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;
    }
}
section, header {
    background: #fff;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 0 26px rgba(0, 0, 0, .125);
}
:is(section, footer) div {
    padding: 1rem;
}
footer p:last-of-type {
    padding: 0;
}
.link {
    text-align: center;
}
.link a {
    display: inline-block;
    margin: 1.625rem 0 3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s;
    border: 2px solid #0C2577;
    background-color: #0C2577;
    color: #fff;
    font-size: 1.063rem;
    line-height: 1.5;
    padding: 0.5rem 2rem;
}
.link a:hover {
    color: #0C2577;
    background-color: transparent;
}
@media only screen and (max-width: 894px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.5rem;
    }
    p, li {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
@media only screen and (max-width: 480px) {
    .logo {
        display: flex;
        justify-content: center;
    }
}