@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1em/1.3em "Times New Roman", serif;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #CCCCCC;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0 0 0.5rem;
    list-style: none;
}

ul li {
    padding: 0 0 0.5rem 2rem;
}

ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
    color: #F62550;
}

@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }

    12.5% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    37.5% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    62.5% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    87.5% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    12.5% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    37.5% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    62.5% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    87.5% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

.slider {
    overflow: hidden;
    margin: 1rem -1rem 0;
}

.slider figure img {
    width: 20%;
    float: left;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 20s;
    -webkit-animation-delay: 3s;
    -webkit-animation-iteration-count: infinite;
    animation: 20s slidy infinite;
}

.flex {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 3rem;
}

article div,
header {
    border-bottom: 1px solid #CCCCCC;
}

article div,
footer,
.flex {
    padding: 1rem 1rem 0;
}

article figure {
    display: flex;
    justify-content: space-between;
    gap: 0 1rem;
    margin: 0 0 1rem;
}

article figure div {
    width: 33%;
    border: none;
    padding: 0;
}

.button {
    text-align: center;
    margin: 1rem 0 2rem;
}

.button a.color {
    border: 1px solid #000;
    padding: 1.5rem 3rem;
    color: #1E232D;
    font-size: 3em;
    line-height: 1.3em;
}

@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p :is(a, span) {
        display: inline-block;
    }

    .flex {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        text-align: center;
    }

    .button a.color {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 480px) {
    ul li {
        padding: 0 0 0.5rem 1rem;
    }
}