@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'),
        url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'),
        url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'),
        url('../fonts/noto-sans-v42-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-v42-latin-700.eot');
    src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'),
        url('../fonts/noto-sans-v42-latin-700.woff') format('woff'),
        url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'),
        url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
}
:root {
    font-size: 15px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333333;
    font: 400 1em/1.5em '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.jpg') no-repeat top center fixed;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    overflow: hidden;
    padding: 0;
}
h1, h2, strong {
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    margin-bottom: 1rem;
    color: #143250;
}
h1 {
    font-size: 1.692em;
    line-height: 1.1;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #143250;
    text-decoration: underline dotted #143250;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.3rem 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
.slider {
    overflow: hidden;
    margin-bottom: 1rem;
}
.slider figure img {
    width: 25%;
    float: left;
}
.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 15s;
    -webkit-animation-delay: 5s;
    -webkit-animation-iteration-count: infinite;
    animation: 15s slidy infinite;
}
article .box {
    background: #fff;
    padding: 1.5rem 2rem;
    margin: 0 0 1rem;
}
a.link {
    text-decoration: none !important;
    display: inline-block;
    padding: 0.5rem 3rem;
    border: 2px solid #143250;
    background: #143250;
    border-radius: 5px;
    color: #fff !important;
    transition: all 0.5s ease-in-out;
}
a.link:hover {
    background: #EFEFEF;
    color: #677A8D !important;
    border: 2px solid #677A8D;
}
footer p {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.3em;
    line-height: 1.3em;
    text-transform: uppercase;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width: 480px) {
    article .box {
        padding: 1rem;
    }
}