@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 70rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
}

h1 {
    font-size: 1.9rem;
    color: #0d3195;
    line-height: 120%;
    font-weight: normal;
    margin: 1rem 0;
}

h2 {
    color: #0d3195;
    font-weight: normal;
    font-size: 1.3rem;
    margin: 3rem 0 2rem;
}

h3 {
    font-size: 1rem;
}

p {
    margin: 1rem 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.wrapperheader {
    background-color: #f4f4f4;
    box-shadow: 0 0 0.9375rem #454545;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 70rem;
    margin: 0 auto;
}

header .fa-brands,
header .fa-sharp {
    color: rgb(153, 153, 153);
    font-size: 2.3rem;
    margin: 0 .125rem;
}

article {
    padding: 1rem 2rem 3rem;
}

article .section {
    padding: 0 1rem;
}

article .section > p .fa-solid {
    color: #0d3195;
    padding-right: 0.625rem;
}

article img {
    margin: 2rem 0;
}

ul {
    list-style: none;
    margin: 1rem 0 1.875rem 1rem;
    padding: 0;
}

ul li {
    padding-left: .937rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -.937rem;
    font-size: 1.375em;
    line-height: 1.2;
}

ul span {
    width: 9rem;
    display: inline-block;
}

span {
    white-space: nowrap;
}

.line-height {
    line-height: 2rem;;
}

.apply {
    display: flex;
    justify-content: flex-end;
}

.apply .button {
    background: #4f4f4f;
    color: #fff;
    text-align: center;
    padding: .6rem 1.2rem;
    font-size: 1.18rem;
}

.wrapperfooter {
    background: #4f4f4f;
}

.wrapperfooter > img {
    background: #C8C8C8;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 70rem;
    margin: 0 auto;
    padding: 2.5rem 0 1.25rem;
}

footer .section p {
    color: #fff;
    line-height: 110%;
}

footer .section:nth-of-type(2) p {
    text-align: center;
}

footer a.footerlink {
    color: #fff;
}

@media only screen and (max-width: 56.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 1rem 0 1rem;
    }

    h1 {
        font-size: 1.75rem
    }

    h2 {
        margin: 0;
    }

    header,
    footer {
        padding: 1rem;
    }

    article {
        padding: 1rem 1rem 2rem;
    }

    article .section {
        padding: 0;
    }
}

@media only screen and (max-width: 43.75rem) {
    h1 {
        font-size: 1.375rem
    }

    ul span {
        width: auto;
    }

    footer {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    footer .section p {
        text-align: center;
    }
}

@media only screen and (max-width: 30rem) {
    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    article .section {
        padding: 0;
    }

    .apply {
        justify-content: center;
    }
}