* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-size: 1rem;
    line-height: 1.4;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 2px #231F20 solid;
    max-width: 715px;
    position: relative;
    background: #FFF;
    overflow: hidden;
}

article {
    position: relative;
    padding: 0 1rem;
    margin: -1.75rem 0 0;
}

article img {
    position: absolute;
    bottom: 0.75rem;
    right: 25px;
}

span {
    white-space: nowrap;
}

h1 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 0 1rem 10px;
}

h1 span {
    display: block;
    font-weight: 400;
    font-size: 16px;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.375rem;
    text-align: center;
}

h3 {
    color: #E51338;
    font-size: 0.9375rem;
    line-height: 1.0625rem;
    font-weight: 400;
    margin: 1rem 0 0;
}

h4 {
    font-size: 1.225rem;
    line-height: 28px;
    margin: 17px 0 20px;
    text-align: center;
}

h5 {
    font-size: 19.5px;
    line-height: 28px;
    margin: 0 0 14px;
}

p:not(.center) {
    margin-bottom: 0.875rem;
}

p.center {
    text-align: center;
    padding-top: 10px;
}

:is(h1, h2) {
    color: #009036;
}

:is(strong, h1, h2, h4) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #1B7EC2;
    text-decoration: underline;
    white-space: nowrap;
}

a[href^="tel:"] {
    color: #231F20;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

p span a {
    color: #000 !important;
    text-decoration: none !important;
    padding: 0.5rem 0.625rem;
    text-align: center;
    border: 1px solid;
    display: inline-block;
    margin-top: 8px;
}

@media only screen and (max-width:713px) {
    #wrapper {
        border: none;
        margin: 0;
        hyphens: auto;
    }

    article {
        margin: 0;
    }

    section {
        margin-right: 15rem;
    }

    br {
        display: none;
    }

}

@media only screen and (max-width:560px) {
    article img {
        position: static;
    }

    section {
        margin-right: 0;
    }

    figure {
        display: flex;
        justify-content: center;
        margin: 1rem auto;
    }

}

@media only screen and (max-width:340px) {
    a {
        white-space: normal !important;
    }

}