@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v51-latin-regular.eot');
    src: url('../fonts/roboto-v51-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v51-latin-regular.woff') format('woff'), url('../fonts/roboto-v51-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v51-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v51-latin-700.eot');
    src: url('../fonts/roboto-v51-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-700.woff2') format('woff2'), url('../fonts/roboto-v51-latin-700.woff') format('woff'), url('../fonts/roboto-v51-latin-700.ttf') format('truetype'), url('../fonts/roboto-v51-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: .938rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: -0.1rem 0.1rem 1rem #999;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

a.link {
    color: #f39200;
}

article p:not(:last-child) {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    color: #f39200;
}

h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    color: #2f3b46;
    padding-bottom: 1rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
}

header {
    display: flex;
    padding: 1rem 1.5rem;
}

article {
    padding: 0 1.5rem;
}

.section {
    padding: 1.5rem;
    margin-top: 1rem;
}

.title {
    margin: -2rem 0 2rem;
    position: relative;
    background-color: #fff;
    box-shadow: 4px 6px 10px 3px #414141;
}

.flex {
    border: 0.1rem solid #b7b5ae;
    display: flex;
    gap: 2rem;
}

.flex h2 {
    flex: 0 0 33%;
}

.flex ul:last-child {
    padding: 0;
}

.orange {
    background-color: #f39200;
    color: #fff;
}

.orange h2 {
    color: #fff;
}

.benefits {
    display: flex;
    gap: 1.5rem;
}

.benefits>div {
    flex: 50%;
}

.benefits div i {
    width: 1.75rem;
    text-align: center;
    font-size: 1.3rem;
    margin-right: .25rem;
}

.blue {
    text-align: center;
    background-color: #ecf9fa;
    border: .1rem solid #daeff0;
}

.button {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.button a {
    padding: 0.6rem 1.5rem;
    background-color: #f39200;
    font-size: 1rem;
    color: #fff;
    transition: all 140ms ease 0s;
    display: inline-block;
}

.button a:hover {
    background-color: #ffa218;
}

footer {
    margin-top: 1rem;
    border-top: 0.1rem solid #b7b5ae;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
}

@media only screen and (max-width: 49.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: 44rem) {
    header {
        justify-content: center;
        padding: 1rem;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }
}

@media only screen and (max-width: 37rem) {
    .title {
        text-align: center;
    }

    .flex,
    .benefits {
        display: block;
    }

    .benefits>div:first-of-type {
        padding-bottom: 1rem;
    }
}

@media only screen and (max-width: 27rem) {

    .section,
    footer {
        padding: 1.25rem 1rem;
    }
}