@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'Roboto Condensed', "Arial", sans-serif;
    font-size: .937rem;
    line-height: 1.4;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 51.875rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #000000;
    border: solid .062rem #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: .625rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -.625rem;
    font-size: 1.75em;
    line-height: 0.85;
}

.image {
    position: absolute;
    right: 0;
    bottom: 27%;
    z-index: 1;
}

article {
    border-bottom: .312rem solid #fff;
    padding: 0 4.375rem;
    position: relative;
}

p {
    text-align: justify;
}

article p,
article ul {
    z-index: 10;
    position: relative;
}

article p:first-of-type {
    margin: 1.25rem 0;
    width: 95%;
}

article p:last-of-type {
    margin: 4.375rem 0 2.5rem;
}

h1 {
    font-size: 1.5rem;
    margin: 0.625rem 0 0.3125rem;
    font-weight: 400;
}

h2 {
    font-size: 1.1875rem;
    margin: 1.25rem 0 0;
    font-weight: 400;
}

footer {
    height: 3.125rem;
    z-index: 110;
    position: relative;
}

.btn {
    background-color: #000;
    position: absolute;
    font-size: 0.75rem;
    right: 8%;
    top: -50%;
    padding: .625rem 1.25rem;
    border-radius: 1.25rem;
    letter-spacing: 0.1875rem;
}

.btn p {
    border: 0.0625rem solid #fff;
    padding: 0.1875rem 1.25rem;
    border-radius: 1.25rem;
}

@media only screen and (max-width: 51.8125rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }

    br {
        display: none;
    }

    article {
        padding: 0 3rem;
    }

    .image {
        position: static;
        display: flex;
        justify-content: center;
    }

    article p:first-of-type,
    article p:last-of-type {
        margin: 0 0 0.625rem;
        text-align: left;
        width: 100%;
    }

    footer {
        display: flex;
        justify-content: center;
    }

    .btn {
        display: inline-block;
        position: relative;
        left: 0;
    }
}

@media only screen and (max-width: 40rem) {
    article {
        padding: 0 1rem;
    }
}