﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {
    text-decoration: underline;
}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header,
footer,
article,
section,
aside,
element,
nav,
menu,
figure,
main,
address {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    font-style: normal;
}

body {
    color: #000;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: .937rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

#wrapper {
    position: relative;
    max-width: 45rem;
    margin: 1rem auto;
    border: solid thin #000;
    padding: 6.25rem;
    background-color: #fff;
    overflow: hidden;
}

p {
    margin: 0 0 0.625rem;
}

h1 {
    text-align: left;
    font-size: 1.25rem;
    line-height: 1;
    margin: 2.5rem 0;
}

h2 {
    font-size: 1rem;
    line-height: 1;
    margin: 0 0 0;
}

h3 {
    font-size: 1rem;
    line-height: 1;
    margin: 0 0 0.625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem 1.25rem;
    padding: 0;
}

ul li {
    padding-left: 1.125rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.125rem;
    font-size: 1.375em;
    line-height: 1;
}

header a {
    display: block;
    margin: 0 0 1.25rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

.slider {
    position: relative;
    margin: 0 0 1.875rem;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 36s 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;
}

.slider > img:nth-of-type(4) {
    animation-delay: 18s;
}

.slider > img:nth-of-type(5) {
    animation-delay: 24s;
}

.slider > img:nth-of-type(6) {
    animation-delay: 30s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    22% {
        opacity: 0;
    }
}

@media only screen and (max-width:44.937rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem .625rem 0;
        -ms-hyphens: auto;
        -webkit-hyphens: auto;
        hyphens: auto;
    }

    br {
        display: none
    }

    footer br {
        display: block;
    }
}

@media only screen and (max-width:29.937rem) {}
