* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Open Sans", Arial, sans-serif;
    color: #222222;
    font-weight: 400;
    font-size: 16px;
    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 .mb0 {
    margin-bottom: 0;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    display: flex;
    padding: 20px;
    justify-content: center;
}

#wrapper .article {
    padding: 20px 30px;
}

#wrapper .footer {
    padding: 20px 30px;
    background: #06256c;
}

#wrapper .footer p {
    color: #fff;
}

#wrapper .content {
    background: #EAF1FA;
    padding: 12px;
    margin-top: 18px;
}

#wrapper .content h3 {
    background: #06256C;
    padding: 8px 12px;
    margin: -12px -12px 14px;
    color: #fff;
    position: relative;
}

#wrapper .content h3:before {
    content: "";
    width: 24px;
    height: 12px;
    background: #06256C;
    position: absolute;
    bottom: -11px;
    left: 12px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

#wrapper p {
    margin-bottom: 14px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px 0;
    font-size: 25px;
    font-weight: 400;
    font-family: "Sanchez", Times, serif;
    color: #06256C;
    text-align: center;
}

#wrapper h3 {
    font-size: 21px;
    font-weight: 400;
    font-family: "Sanchez", Times, serif;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #fff;
    color: #06256C;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

#wrapper ul {
    margin: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 20px;
    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;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .footer {
        padding: 16px;
    }
}