@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.431em;
    background-color: #F2F2F2;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0 0;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 1.437rem #A6A6A6;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

header {
    display: flex;
}

header,
article {
    padding: 0rem 1.188rem;
}

footer {
    padding: 3rem 1.188rem 0.8rem;
    background-color: #EAEAEA;
}

h2+p,
h2+ul {
    margin-top: 0.308rem;
}

h1 {
    text-align: left;
    font-size: 2.25em;
    line-height: 1.2em;
    font-weight: normal;
    color: #FFFFFF;
    background-color: #004089;
    margin: 2.2rem -1.188rem 2.175rem;
    padding: 1rem 1.188rem;
}

h2 {
    font-size: 1.331em;
    line-height: 1.231em;
    color: #7EB12E;
    font-weight: 600;
}

.button>a {
    background-color: #7EB621;
    color: #fff;
    text-align: center;
    display: block;
    font-size: 0.875rem;
    width: 21rem;
    margin: 0rem auto;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 700;
}

.button>a:hover {
    background-color: #004089;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding: 0 2rem;
}

li {
    padding-bottom: 0.2rem;
    list-style-type: none;
}

li:before {
    content: "\2022";
    color: #7FB523;
    float: left;
    margin-left: -1.25rem;
    font-size: 1.8em;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    20% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    45% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    70% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    95% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

body {
    margin: 0;
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 700%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 36s slidy infinite;
}

.slider figure img {
    width: 14.285714285714286%;
    float: left;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    14% {
        left: 0%;
    }

    17% {
        left: -100%;
    }

    30% {
        left: -100%;
    }

    33% {
        left: -200%;
    }

    47% {
        left: -200%;
    }

    50% {
        left: -300%;
    }

    64% {
        left: -300%;
    }

    67% {
        left: -400%;
    }

    80% {
        left: -400%;
    }

    83% {
        left: -500%;
    }

    97% {
        left: -500%;
    }

    100% {
        left: -600%;
    }
}

@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:42rem) {
    header {
        justify-content: center;
    }

    header,
    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.7rem;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width:35rem) {

    ul {
        padding: 0 0 0 1rem;
    }
}