@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #4a4a4a;
    font-family: "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:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #6cc24a;
    text-decoration: underline;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 1.5rem 0 .75rem;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.1;
    padding: 0 0 .75rem;
}

ul {
    list-style: none;
    padding-bottom: 1.5rem;
}

ul li {
    padding: 0 0 0 1.25rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.25rem;
    color: #6cc24a;
    line-height: 1.2;
}

.image {
    margin: 1px auto;
}

section {
    padding: 1.5rem 2.5rem;
}

section>:last-child {
    padding-bottom: 0;
}

.bg {
    background-color: #6cc24a;
    color: #fff;
}

.bg h2,
.bg ul li:before {
    color: #fff;
}

.info {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.info p {
    padding-bottom: .2rem;
}

.info i {
    margin-right: .3rem;
    color: #6cc24a;
}

.benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: .75rem 0;
}

.benefit {
    flex: 0 0 48%;
    display: flex;
    gap: .625rem;
    font-weight: 700;
}

.benefit i {
    font-size: 1.5rem;
}

.person {
    display: flex;
    align-items: center;
    gap: 1.25rem 1.875rem;
}

.qr {
    padding: 2px;
    border: 1px dashed #4a4a4a;
}

header {
    display: flex;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

footer {
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
}


@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;
    }

    h1 {
        font-size: 2rem;
        padding-top: 0;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 43rem) {
    section {
        padding: 1.25rem 1rem;

    }

    header {
        justify-content: center;
        padding: 1.25rem 1rem;
    }

    ul {
        padding-bottom: 1.25rem;
    }

    footer {
        padding: 0 1rem 1.25rem;
        flex-direction: column;
        align-items: center;
    }

    .person {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 35rem) {
    .benefit {
        flex: 100%;
    }
}