@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.5;
    font-weight: 400
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 53.125rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #EF7F01;
    text-decoration: none;
}

a.color:hover {
    text-decoration: underline;
}

p {
    margin: 0 0 10px;
}

h1 {
    font-size: 40px;
    line-height: 1.3;
    padding: 10px 0 20px
}

h1+p {
    margin: 0 0 20px;
}

h2 {
    font-size: 17px
}

h3 {
    color: #EF7F01;
    font-size: 20px
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.375rem;
    font-size: 0.9em;
    line-height: 1.4;
    color: #EF7F01
}

header {
    background: #000;
    padding: 20px 20px 16px
}


@keyframes slidy {
    0% {
        left: 0%;
    }

    17% {
        left: 0%;
    }

    20% {
        left: -100%;
    }

    37% {
        left: -100%;
    }

    40% {
        left: -200%;
    }

    57% {
        left: -200%;
    }

    60% {
        left: -300%;
    }

    77% {
        left: -300%;
    }

    80% {
        left: -400%;
    }

    97% {
        left: -400%;
    }

    100% {
        left: -500%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 600%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 30s slidy infinite;
}

figure img {
    width: 16.666666666666668%;
    float: left;
}

article {
    padding: 20px
}

.background {
    padding: 10px 1rem 5px;
    border: thin solid #CCC;
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 4px #A6A6A6;
    background-color: #E9E9E9
}

.white {
    padding: 10px 1rem 5px;
    border: thin solid #CCC;
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 4px #A6A6A6;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    padding: 25px 1.188rem;
    margin-top: 10px;
    color: #fff;
    background-color: #656565;
    line-height: 1.1em;
}

footer .social {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
    padding-top: .5rem;
}

@media only screen and (max-width: 53.062rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    h1 {
        font-size: 29px;
        text-align: center;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    article {
        padding: 1rem 0
    }
}

@media only screen and (max-width: 40rem) {
    header {
        display: flex;
        justify-content: center;
    }

    footer {
        text-align: center;
    }

    footer .social {
        justify-content: center;
    }
}