* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: #F0F5F8;
}

#wrapper {
    max-width: 940px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
}


@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 .share {
    display: flex;
    align-items: center;
    gap: 9px;
}

#wrapper .social {
    display: flex;
    align-items: center;
    gap: 8px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 26px 5%;
}

#wrapper .article {
    padding: 30px 60px 0;
}

#wrapper .text-left {
    text-align: left;
}

#wrapper hr {
    border: none;
    border-bottom: 1px solid #dde1e2;
    margin: 25px -60px;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper .title {
    background: #E82427;
    padding: 20px 60px;
    margin: 26px -60px;
}

#wrapper .title p:not(.small) {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    text-align: center;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 10px 60px;
    background: #E82427;
    color: #fff !important;
    transition: .3s;
    border-radius: 3px;
}

#wrapper .button a:hover {
    background: #555454;
}

#wrapper .small {
    border-radius: 2px;
    color: #4f5d60;
    padding: 3px 4px;
    background: #fff;
    font-size: 9px;
    margin-bottom: 0;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    font-family: "Dosis", Arial, sans-serif;
    text-align: center;
    color: #fff;
}

#wrapper .flex {
    display: flex;
    column-gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

#wrapper .flexbox {
    padding: 0 60px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#wrapper .flexbox p {
    font-size: 13px;
    margin-bottom: 0;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #E82427;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 15px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 939px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper h1 {
        font-size: 24px;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper .article {
        padding: 16px 5%;
    }

    #wrapper .flexbox {
        padding: 0 5% 16px;
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }
}