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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #54595f;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    border: 1px solid #ccc;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px #ccc;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        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 6s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .hide {
    display: none;
}

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

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

#wrapper .content {
    padding: 16px;
    margin-top: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    background: #fff;
    border-bottom: 5px solid #004B8E;
}

#wrapper .content h3 {
    background: #004B8E;
    margin: -16px -16px 16px;
    padding: 6px 12px;
    color: #fff;
}

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

#wrapper footer {
    padding: 20px 30px;
    background: url(background.jpg);
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px -30px;
    font-size: 31px;
    font-weight: 700;
    font-family: "EB Garamond", Times, serif;
    background: #004B8E;
    color: #fff;
    padding: 16px 30px;
    text-align: center;
}
#wrapper h1 span {
    font-size: 80%;
}
#wrapper h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: "EB Garamond", Times, serif;
    color: #004b7c;
}
#wrapper .h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: "EB Garamond", Times, serif;
    color: #004b7c;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

#wrapper .h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #C90708;
}
#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #004B8E;
    text-decoration: none;
}

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

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

#wrapper ul li:before {
    content: "\002022";
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    line-height: 1;
    left: 0;
    color: #C90708;
}

#wrapper a[href^="mailto:"] {
    position: relative;
}

#wrapper a[href^="mailto:"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #C90708;
    transition: width 0.25s ease;
}

#wrapper a[href^="mailto:"]:hover::after {
    width: 100%;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        border: none;
    }

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

    #wrapper article {
        padding: 16px;
    }

    #wrapper footer {
        padding: 16px;
    }
}