* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    border: 1px solid #060606;
    padding: 30px 35px;
    background-color: #fff;
    overflow: hidden;
    color: #060606;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
}

header {
    padding: 0 0 25px 12px;
    display: flex;
    align-items: center;
    gap: 30px;
}

header a img {
    max-width: 150px;
}

header p {
    text-align: justify;
    line-height: 18px;
    hyphens: auto;
}

article {
    padding: 0 12px;
}

figure {
    margin: 0 0 10px;
}

footer {
    padding: 10px 0;
    margin: 0 12px;
    border-top: 2px solid #9D9D9D;

}

footer div {
    display: flex;
    justify-content: space-between;
    gap: 9px;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: -4px 0 20px;
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    position: relative;
}

h1:before {
    content: "|||";
    float: left;
    text-indent: -20px;
    font-size: 18px;
    margin-top: -3px;
    color: #9b0f3d;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
}

h2 {
    font-size: 29px;
    font-weight: 700;
    line-height: 1.3;
    color: #9b0f3d;
    margin-bottom: 9px;
}

h2+p {
    line-height: 1.25;
    font-size: 1.1em;
}

h3 {
    font-weight: 700;
    font-size: 14px;
}

a {
    color: #060606;
    text-decoration: none;
}

ul {
    padding: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 16px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 20px;
    text-indent: -16px;
}

img {
    max-width: 100%;
}

span {
    white-space: nowrap;
}

.online_application {
    background: #903;
    display: inline-block;
    margin-right: 0;
    font-size: 1rem;
    padding: 0.5em 1.2em 0.55em;
    color: #fff;
}

@media all and (max-width:928px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0;
    }

    header p {
        text-align: left;
    }

    article {
        padding: 0;
    }

    footer {
        margin: 0;
    }

    h1 {
        padding-left: 20px;
    }

    article br {
        display: none;
    }
}

@media all and (max-width:767px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
    }
}