@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-latin-regular.eot');
    src: url('../fonts/nunito-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'), url('../fonts/nunito-v32-latin-regular.woff') format('woff'), url('../fonts/nunito-v32-latin-regular.ttf') format('truetype'), url('../fonts/nunito-v32-latin-regular.svg#Nunito') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-v32-latin-700.eot');
    src: url('../fonts/nunito-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-700.woff2') format('woff2'), url('../fonts/nunito-v32-latin-700.woff') format('woff'), url('../fonts/nunito-v32-latin-700.ttf') format('truetype'), url('../fonts/nunito-v32-latin-700.svg#Nunito') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/nunito-v32-latin-800.eot');
    src: url('../fonts/nunito-v32-latin-800.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-800.woff2') format('woff2'), url('../fonts/nunito-v32-latin-800.woff') format('woff'), url('../fonts/nunito-v32-latin-800.ttf') format('truetype'), url('../fonts/nunito-v32-latin-800.svg#Nunito') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #385b81;
    font-family: 'Nunito', "Arial", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    background-color: #ebeef2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 49.375rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 25px -12px rgba(0, 0, 0, 0.5);
}

: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;
}

h1 {
    font-size: 1.938rem;
    line-height: 1.3;
    font-weight: 800;
    color: #f46843;
    padding: 0 0 1rem;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 1.438rem;
    font-weight: 800;
    padding: 1.25rem 0 1rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 0.875rem 2.25rem;
}

ul li:before {
    content: url("../images/check.png");
    float: left;
    margin-left: -2rem;
}

.button {
    display: flex;
    justify-content: center;
}

.button a {
    padding: 10px 60px 10px 30px;
    background: #f46843 url("../images/arrow.png") no-repeat 90% 50%;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    border-radius: 24px;
    text-decoration: none;
    margin-top: 30px;
}

.button a:hover {
    background-color: #f35930;
}

article {
    border-top: 20px solid #385a80;
    padding: 3.438rem 3.75rem 0;
}

footer {
    padding: 3.438rem 3.75rem;
    background: #385b81;
    color: #fff;
}

@media only screen and (max-width: 49.313rem) {

    #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: 42rem) {
    article {
        padding: 2rem 2rem 0;
    }

    footer {
        padding: 2rem;
    }
}

@media only screen and (max-width: 30rem) {
    body {
        font-size: 1rem;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
        padding-top: 0;
    }

    .button a {
        margin-top: 0;
    }

    ul {
        padding-bottom: .75rem;
    }
}