* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    padding: 0 35px;
    margin-top: 50px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 30px 0 0;
}

#wrapper footer {
    padding: 0;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0;
    font-size: 36px;
}

#wrapper .subtitle {
    font-size: 22px;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 16px;
    position: relative;
}

#wrapper ul li:before {
    content: '';
    background: #f9b000;
    width: 5px;
    height: 5px;
    position: absolute;
    top: 6px;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .center {
    text-align: center;
}

#wrapper .banner {
    margin-bottom: 30px;
}

#wrapper header .logo {
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

#wrapper footer .apply {
    display: flex;
    justify-content: center;
    margin: 30px 0 25px;
}

#wrapper footer .apply a {
    background: #000;
    color: #fff;
    padding: 10px 60px;
    font-size: 18px;
    display: inline-block;
}

#wrapper footer .apply a:hover {
    opacity: 0.8;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border: 0;
        padding: 20px 16px 0;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper header .logo {
        margin-top: 0;
    }
}