* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 825px;
    margin: 16px auto;
    box-shadow: 1px 1px 10px #9d9898;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Fira Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    6.25% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    31.25% {
        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 12s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 6s;
}

#wrapper .slide img:nth-child(4) {
    animation-delay: 9s;
}

#wrapper .button a {
    display: inline-block;
    color: #d62717 !important;
    border: 3px solid #000;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
    transition: 0.4s;
    text-transform: uppercase;
}

#wrapper .text {
    display: flex;
    justify-content: space-around;
    column-gap: 10px;
    flex-wrap: wrap;
}

#wrapper .text p img {
    position: relative;
    top: -2px;
}

#wrapper .text p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(33, 37, 41);
}

#wrapper .button a:hover {
    border: 3px solid #d62717;
    background: #d62717;
    color: #fff !important;
}

#wrapper .button {
    margin: 30px 16px;
    display: flex;
    justify-content: center;
}

#wrapper .text span {
    display: inline-block;
    width: 195px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 16px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 20px 40px;
}

#wrapper .footer {
    padding: 20px 30px 2px;
    background: #d62717;
}

#wrapper .footer p {
    color: #fff;
    text-align: center;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #d62717;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 4px;
    font-size: 21px;
    font-weight: 700;
    color: #d62717;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 15px 11px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '\2022';
    color: #d62717;
    font-size: 24px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -7px;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@media all and (max-width: 824px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article,
    #wrapper .footer {
        padding: 16px 16px 4px;
    }
}

@media all and (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}

@media all and (max-width: 449px) {
    #wrapper .text span {
        width: auto;
    }
}