@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/rubik-v31-latin-regular.eot');
    src: url('../fonts/rubik-v31-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/rubik-v31-latin-regular.woff2') format('woff2'), url('../fonts/rubik-v31-latin-regular.woff') format('woff'), url('../fonts/rubik-v31-latin-regular.ttf') format('truetype'), url('../fonts/rubik-v31-latin-regular.svg#Rubik') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/rubik-v31-latin-800.eot');
    src: url('../fonts/rubik-v31-latin-800.eot?#iefix') format('embedded-opentype'), url('../fonts/rubik-v31-latin-800.woff2') format('woff2'), url('../fonts/rubik-v31-latin-800.woff') format('woff'), url('../fonts/rubik-v31-latin-800.ttf') format('truetype'), url('../fonts/rubik-v31-latin-800.svg#Rubik') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #5D4534;
    font-family: 'Rubik', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

p {
    padding-bottom: 1.25rem;
}

.pb {
    padding-bottom: 0;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    font-family: 'Rubik';
    font-weight: 800;
    padding: 2.5rem 0;
    text-transform: uppercase;
}

h1 span {
    display: block;
    padding-top: .5rem;
    font-size: .5em;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #F57E00;
    padding-bottom: 1.25rem;
    text-transform: uppercase;
    font-family: 'Rubik';
    font-weight: 800;
}

h1+h2 {
    text-align: center;
}

ul {
    list-style: none;
    padding-bottom: 2rem;
}

ul li {
    padding: 0 0 .625rem 1.5rem;
}

ul li:before {
    content: "\25CF";
    float: left;
    margin-left: -1.5rem;
    color: #F57E00;
    font-size: 1.2rem;
    line-height: 1;
}

.section {
    background: #F6F5EE;
    padding: 3rem 5rem;
}

.arrows {
    position: relative;
}

.arrows::before {
    content: url("../images/arrow.png");
    position: absolute;
    top: -3rem;
    left: 1rem;
}

.arrows::after {
    content: url("../images/arrow.png");
    position: absolute;
    top: 35%;
    right: 2rem;
    transform: scaleX(-1);
}

.white {
    background-color: #fff;
}

.button {
    display: flex;
    padding-top: 1rem;
}

.button a {
    background: #fff;
    color: #F57E00;
    border: 1px solid #F57E00;
    border-radius: 30px;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    padding: 2rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    width: 80%;
}

.button a::after {
    content: url("../images/arrow_right.png");
    line-height: 0;
}

header {
    display: flex;
    justify-content: center;
    background-color: #F6F5EE;
    padding: 2rem;
}

article {
    padding: 0 2rem;
}

footer {
    padding: 2rem;
}

@media only screen and (max-width: 59.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 50rem) {
    h1 {
        font-size: 2.25rem;
        padding-bottom: 1.25rem;
    }

    .arrows::before,
    .arrows::after {
        display: none;
    }

    .section {
        padding: 2rem;
    }

    .button a {
        font-size: 2rem;
        width: 100%;
    }
}

@media only screen and (max-width: 35rem) {

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
    }

    .section {
        padding: 1rem;
    }

    .button a {
        padding: 2rem 1rem;
        font-size: 1.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h1 span,
    h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    ul {
        padding-bottom: 1rem;
    }
}