* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    11.11% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    44.44% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#wrapper .slideshow>img {
    animation: opacity 3s forwards;
}

#wrapper .slideshow {
    position: relative;
}

#wrapper .slideshow img {
    vertical-align: bottom;
}

#wrapper .slideshow>img:nth-of-type(1) {
    position: relative;
}

#wrapper .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 9s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 6s;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#wrapper .article {
    padding: 20px 30px 0;
}

#wrapper .footer {
    padding: 0 30px 30px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper p.center {
    text-align: center;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    color: #e50046;
    text-align: center;
    line-height: 1.2;
}

#wrapper h2 {
    font-size: 16px;
    font-weight: 700;
}

#wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 5px solid #e50046;
    border-bottom: 5px solid #e50046;
    margin-bottom: 15px;
    display: inline-block;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #005399;
    text-decoration: underline;
}

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

#wrapper ul li:before {
    content: '\2022';
    color: #e50046;
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width:899px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .logo,
    #wrapper .article,
    #wrapper .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }
}

@media all and (max-width:499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper h1 {
        font-size: 24px;
    }

    #wrapper .logo {
        justify-content: center;
    }
}