* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #090909;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0px 0px 10px #ddd;
    border: 4px solid #2a5cb3;
    background-color: #fff;
    overflow: hidden;
}

@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 header {
    padding: 0;
}

#wrapper article {
    padding: 30px 40px 20px;
}

#wrapper footer {
    padding: 0 40px 20px;
    text-align: center;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 -40px 30px;
    padding: 15px 20px;
    font-size: 24px;
    font-weight: 700;
    background: #2a5cb3;
    color: #fff;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #2a5cb3;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 30px 18px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 16px;
    position: relative;
}

#wrapper ul li:not(:last-child) {
    margin-bottom: 6px;
}

#wrapper ul li:before {
    content: '\2022';
    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;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
    padding: 20px 40px;
}

#wrapper .apply a {
    display: block;
    margin: 0 auto 30px;
    width: fit-content;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background: #2a5cb3;
    border-radius: 5px;
    border: 2px solid #2a5cb3;
    transition: all ease-in-out 0.2s;
}

#wrapper .apply a:hover {
    background: #fff;
    color: #2a5cb3;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border: 0;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 30px 16px 20px;
    }

    #wrapper footer {
        padding: 0 16px 20px;
    }

    #wrapper .logo {
        padding: 20px 16px;
    }

    #wrapper h1 {
        margin: 0 -16px 30px;
    }
}