@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem 1.25rem;
}

p:last-of-type {
    margin-left: 0
}

h1 {
    margin: 1.25rem 0 1.875rem 0;
    line-height: 1.1;
    font-size: 1.375rem;
    text-align: center
}

h1 span {
    font-size: 1.125rem;
    font-weight: normal;
}

h2 {
    font-size: 1.125rem;
    margin-bottom: .5rem;
}

ul {
    list-style: none;
    margin: 0 0 1.875rem 3.437rem;
    padding: 0;
}

ul li {
    padding: 0 0 .25rem .937rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -.937rem;
    font-size: 1.125rem;
    line-height: 1.1;
}

ul:last-of-type {
    margin-bottom: 3.75rem
}

article {
    padding: 0 2.75rem;
}

footer {
    padding: 2.5rem 0;
    background: url("../images/bg.png") no-repeat bottom right;
    background-size: 100% 100%;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    30% {
        left: 0%;
    }

    33% {
        left: -100%;
    }

    64% {
        left: -100%;
    }

    67% {
        left: -200%;
    }

    97% {
        left: -200%;
    }

    100% {
        left: -300%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 18s slidy infinite;
}

figure img {
    width: 25%;
    float: left;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
    margin-bottom: 1.875rem
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 45rem) {

    p {
        margin-left: 0
    }

    ul {
        margin: 0 0 1rem;
    }

    ul:last-of-type {
        margin: 0 0 1rem;
    }

    article {
        padding: 0 1rem;
        margin: 0;
    }

    footer {
        padding: 1.25rem 0
    }
}