@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v40-latin-700.eot');
    src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-700.woff') format('woff'), url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: rgb(30, 39, 46);
    font-family: "Arial", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 65rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    margin-bottom: .5rem;
}

.color {
    color: rgb(174, 46, 87);
}

.margin {
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: rgb(105, 28, 63);
    margin-bottom: 1rem;
    font-family: 'Open Sans';
}

h2 {
    font-size: 1.875rem;
    line-height: 1.2;
    color: rgb(174, 46, 87);
    padding: 0.75rem 0;
    margin: 0.75rem 0;
    font-family: 'Open Sans';
}

h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    color: rgb(174, 46, 87);
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 0 2rem;
}

ul li:before {
    content: url("../images/check.png");
    float: left;
    margin-left: -2rem;
}

.flex1 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 2rem 1rem;
}

.flex1>div {
    flex: 0 0 60%;
}

.button {
    display: flex;
}

.button :is(a, p) {
    padding: .5rem 1rem;
    background-color: rgb(174, 46, 87);
    color: #fff;
    border: 2px solid rgb(174, 46, 87);
    border-radius: .25rem;
    text-align: center;
    font-size: 1.25rem;
    width: 20rem;
}

.button p {
    background-color: rgb(105, 28, 63);
    font-weight: 700;
    border-color: rgb(105, 28, 63);
    margin-bottom: 1rem;
}

.button :is(a:hover, p:hover) {
    background-color: rgb(209, 216, 224);
    color: rgb(30, 39, 46);
    border-color: rgb(174, 46, 87);
}

hr {
    border-style: none;
    border-top: 2px solid rgb(174, 46, 87);
    margin: 0 1rem;
}

.flex2 {
    padding: 2rem 1rem;
    gap: 2rem;
    display: flex;
}

.flex2>div:first-of-type {
    flex: 65%;
}

.flex2>div:last-of-type {
    flex: 35%;
}

.flex2 .button a {
    width: auto;
}

.block {
    background-color: rgb(238, 238, 238);
    padding: 1rem;
    margin: 1rem 0;
}

.block:first-of-type p {
    display: flex;
}

.block:first-of-type p strong {
    flex: 0 0 8rem;
}

.block:first-of-type p span {
    color: rgb(174, 46, 87);
}

.block p:last-of-type {
    margin: 0;
}

header {
    padding: 2rem;
    display: flex;
}

article {
    padding: 0 1rem;
}

footer {
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

footer div {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    color: rgb(174, 46, 87);
}

@media only screen and (max-width: 64.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: 55rem) {

    .flex1,
    .flex2 {
        display: block;
    }

    .flex1>img {
        display: none;
    }

    footer {
        padding: 0 2rem 2rem;
    }
}

@media only screen and (max-width: 42rem) {
    body {
        font-size: 1rem;
    }

    header {
        justify-content: center;
        padding: 1.25rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        padding: 0;
    }

    h3 {
        font-size: 1.3rem;
    }

    hr {
        margin: 1.5rem 0;
    }

    ul {
        padding-bottom: 0;
        margin-bottom: 1.25rem;
    }

    .flex1,
    .flex2 {
        padding: 0;
    }

    .block:first-of-type p strong {
        flex: 0 0 7rem;
    }

    article {
        padding-top: 1.5rem;
    }

    .button {
        justify-content: center;
        margin: 1rem 0;
    }

    .button :is(a, p) {
        margin: 0;
        font-size: 1rem;
    }

    .margin {
        margin-bottom: 1.25rem;
    }

    footer {
        padding: 0 1rem 1.25rem;
    }
}

@media only screen and (max-width: 30rem) {
    h1 {
        font-size: 1.65rem;
        line-height: 1.3;
        text-align: center;
    }

    h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    footer {
        justify-content: center;
    }
}