@charset "utf-8";

:root {
    font-size: 16px;
}

/* roboto-slab-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-slab-v35-latin-300.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/roboto-slab-v35-latin-300.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-slab-v35-latin-300.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/roboto-slab-v35-latin-300.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/roboto-slab-v35-latin-300.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/roboto-slab-v35-latin-300.svg#RobotoSlab') format('svg');
    /* Legacy iOS */
}

/* roboto-slab-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-slab-v35-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/roboto-slab-v35-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-slab-v35-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/roboto-slab-v35-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/roboto-slab-v35-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/roboto-slab-v35-latin-regular.svg#RobotoSlab') format('svg');
    /* Legacy iOS */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #3b3b34;
    font-family: 'Roboto Slab', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 1160px;
    margin: 16px auto;
    overflow: hidden;
    background: #fff;
}

h1 {
    font-size: 18px;
    color: #005ba8;
    position: relative;
    margin-top: 70px;
    margin-bottom: 0;
    padding: 5px 0 5px 70px;
    border-bottom: 2px solid #d5c7a3;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 39px;
    text-align: left;
    text-transform: uppercase;
    background: #f5f5f5;
}

h1:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #d5c7a3;
}

h2 {
    margin-top: 50px;
    padding: 0 0 10px;
    border-bottom: 2px solid #e2e2e1;
}

h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    line-height: 1.75;
    text-transform: uppercase;
    color: #ad9652;
    padding: 5px 0;
    border-bottom: 2px solid #e2e2e1;
}

:is(a:link, a:visited, a:active) {
    color: #005ba8;
    text-decoration: none;
    white-space: nowrap;
}

:is(a:hover) {
    color: #ad9652;
}

article > p {
    margin: 0 0 26px;
}

ul {
    list-style: none;
    margin: 0 0 50px;
    padding: 0;
}

ul li {
    padding: 10px 0 10px 30px;
    border-bottom: 2px solid #e2e2e1;
}

ul li:last-of-type {
    border-bottom: 2px solid #d5c7a3;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 7px;
    height: 7px;
    margin-left: -30px;
    top: 10px;
    background: #005ba8;
}

header {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 50px rgba(68, 68, 68, 0.2);
    text-align: center;
}

article {
    padding: 20px 100px;
}

article img {
    margin: 10px auto 50px;
    display: block;
}

.bluetxt,
h2 {
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #005ba8;
    font-weight: 400;
}

aside {
    padding: 5px 0;
    border-bottom: 2px solid #e2e2e1;
    text-align: left;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.bluep {
    color: #005ba8;
    width: 16%;
}

:is(.wapp:link, .wapp:visited, .wapp:hover, .wapp:active) {
    color: inherit;
}

.apply {
    display: block;
    width: 280px;
    margin: 40px auto;
    padding: 4px 30px 4px 30px;
    border: 2px solid #005ba8;
    line-height: 40px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.apply:hover {
    color: #ad9652;
    border-color: #ad9652;
}

footer {
    background: #f5f5f5;
    padding: 20px 100px;
    text-align: right;
}

i {
    margin: 10px 0 0 10px;
    font-size: 26px;
}

footer :is(a:hover) {
    color: #005ba8;
}

@media only screen and (max-width: 1159px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    .bluetxt,
    body,
    h2 {
        font-size: 16px;
        line-height: 1.55;
    }

    h1,
    h2 {
        margin: 26px 0 0;
        letter-spacing: 1.5px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 16px;
    }

    header {
        padding: 10px;
        margin-bottom: 10px;
    }

    article {
        padding: 10px;
    }

    article img {
        margin: 4px auto 16px;
    }

    article > p {
        margin: 0 0 16px;
    }

    .bluetxt {
        letter-spacing: 1.5px;
    }

    ul {
        list-style: none;
        margin: 0 0 20px;
        padding: 0;
    }

    ul li {
        padding: 6px 0 6px 30px;
        border-bottom: 2px solid #e2e2e1;
    }
    aside p {
        margin: 0;
    }
    .apply {
        margin: 20px auto;
    }

    footer {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 779px) {
    aside {
        display: block;
    }

    .bluep,
    aside p {
        width: 100%;
    }


}

@media only screen and (max-width: 375.008px) {}