@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: 600;
    src: url('../fonts/noto-sans-v27-latin-600.eot');
    src: url('../fonts/noto-sans-v27-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-600.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-600.woff') format('woff'), url('../fonts/noto-sans-v27-latin-600.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-600.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: 1em/1.4 '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: 850px;
    min-width: 250px;
    margin: 1rem auto;
    overflow: hidden;
}
p {
    padding-bottom: 1.5rem;
}
p, li {
    hyphens: auto;
}
strong {
    font-weight: 600;
}
h1, h2 {
    font-weight: 700;
    color: #0065BD;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.75em;
    line-height: 1.3;
}
h2 {
    font-size: 1.313em;
    line-height: 1.3em;
    padding: 1rem 1.625rem;
    background: #E6E6E6;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0065BD;
    text-decoration: underline 1px dotted;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 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 1.625rem;
}
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-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
    border-radius: 5px;
    border: 2px solid #0065BD;
    background-color: #0065BD;
    color: #fff;
    font-size: 1.063rem;
    line-height: 1.5;
    padding: 0.5rem 6rem;
}
.link a:hover {
    color: #0065BD;
    background-color: transparent;
}
@media only screen and (max-width: 849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.5rem;
    }
    p, li {
        hyphens: auto;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    :is(section, footer) div, h2 {
        padding-inline: 1rem;
    }
}
@media only screen and (max-width: 400px) {
    .link a {
        padding: 0.5rem 2rem;
    }
    h1{
      font-size: 1.5em;
    }
}