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

html {
    min-height: 100%;
}

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

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    padding: 0 40px;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    padding: 0 0 25px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 -40px 20px;
    font-size: 27px;
    color: #fff;
    background: #0000C8;
    text-align: center;
    padding: 20px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #0000C8;
}

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

#wrapper ul {
    margin-bottom: 22px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 18px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 17px;
    font-family: "Lato", Arial, sans-serif;
    position: absolute;
    top: 1px;
    line-height: 1;
    left: 0;
}

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

#wrapper header .logo {
    padding: 10px 0;
    margin: 0;
}

#wrapper header .banner {
    margin: 0 -40px;
}

#wrapper footer {
    position: relative;
    padding-bottom: 30px;
}

#wrapper footer .info {
    width: 55%;
}

#wrapper footer .bottom {
    position: absolute;
    top: 9%;
    right: 0;
    width: 42%;
}

#wrapper footer .info .apply {
    margin: 30px 0 20px;
}

#wrapper footer .info .apply a {
    padding: 10px 40px 13px;
    color: #fff;
    background: #0000C8;
    border-radius: 99px;
    font-size: 16px;
    display: inline-block;
    transition: all .1s ease-in;
}

#wrapper footer .info .apply a:hover {
    color: #0000C8;
    background: #00e7a1;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        padding: 0 16px;
    }

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

    #wrapper h1 {
        margin: 0 -16px 20px;
    }

    #wrapper footer {
        padding-bottom: 16px;
    }
}

@media (max-width: 699px) {
    #wrapper footer .info {
        width: 100%;
    }

    #wrapper footer .bottom {
        position: static;
        margin: 30px auto 0;
        width: 100%;
    }

    #wrapper article {
        padding: 0;
    }
}