* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 920px;
    margin: 12px auto;
    border: 1px solid #049daa;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Assistant', Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
}

@keyframes slidy {
    0% {
        left: 0;
    }

    45% {
        left: 0;
    }

    50% {
        left: -100%;
    }

    95% {
        left: -100%;
    }

    100% {
        left: -200%;
    }
}

#wrapper .slideshow {
    overflow: hidden;
}

#wrapper .slideshow figure img {
    width: 33.33333333333333%;
    display: inline-block;
}

#wrapper .slideshow figure {
    position: relative;
    width: 300%;
    margin: 0;
    left: 0;
    font-size: 0;
    animation: 10s slidy infinite;
}

#wrapper .flex-box {
    padding: 0 30px;
}

#wrapper .flex {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

#wrapper .logo {
    border-bottom: 1px solid #049daa;
    padding: 20px 16px;
    display: flex;
    justify-content: center;
}

#wrapper .hide {
    display: none;
}

#wrapper .button {
    display: flex;
    justify-content: end;
}

#wrapper .button a:hover {
    background: rgba(255, 255, 255, 0.8);
    transition: all 200ms ease-out;
    box-shadow: 0 0 8px 0 rgb(173 173 173);
    color: #18a2b4;
    border-color: #fff;
    text-decoration: none;
}

#wrapper .button a {
    display: inline-block;
    padding: 10px 20px;
    background: #00A4B7;
    color: #FFF;
    text-decoration: none;
    font-size: 17px;
    text-align: center;
}

#wrapper .article {
    padding: 20px 30px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    padding: 20px 30px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    color: #049daa;
}

#wrapper h3 {
    margin-bottom: 20px;
    font-size: 27px;
    font-weight: 400;
    color: #049daa;
    line-height: 1.1;
}

#wrapper a {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    margin-bottom: 13px;
    position: relative;
}

#wrapper ul li:before {
    content: '\25a0';
    color: #00A4B7;
    font-size: 20px;
    position: absolute;
    top: -1px;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media all and (max-width: 919px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper .flex-box {
        padding: 0 16px;
        flex-wrap: wrap;
    }

    #wrapper .article,
    #wrapper h1 {
        padding: 16px;
    }
}

@media all and (max-width: 500px) {
    #wrapper .button {
        justify-content: center;
    }

    #wrapper h1 {
        font-size: 26px;
    }
}