﻿@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #00A651;
    font-size: 0.8125rem;
    line-height: 1.125rem;
    font-family: "Libre Franklin", Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 530px;
    margin: 1rem auto;
    border: 0.1875rem solid #00A651;
    padding: 0.5rem 0.75rem 10px;
    background-color: #fff;
    overflow: hidden;
}

header {
    padding: 0 0 30px;
}

article {
    margin: 0 0 0.75rem;
    padding: 40px 1.25rem 1rem;
    background: #b3ddc0;
    position: relative;
    border-radius: 25px;
}

article div {
    color: #1CA84B;
    border-radius: 1.5625rem;
    background: #FFF;
    padding: 4px 10px 1px 31px;
}

header img {
    position: absolute;
    top: 8px;
    right: 15px;
}

article img {
    position: absolute;
    top: -23px;
    right: 8px;
    margin: 0 auto;
}

footer {
    font-size: 1rem;
    position: relative;
    line-height: 15px;
    text-align: left;
}

footer a {
    font-size: 17px;
    color: #FFF;
    font-weight: 400;
    display: block;
    line-height: 1.4;
}

footer p {
    background: #00A651;
    width: 370px;
    color: #FFF;
    font-size: 22px;
    line-height: 29px;
    font-weight: 400;
    padding: 6px 20px 9px;
    border-radius: 21px;
    text-align: center;
}

footer img {
    position: absolute;
    top: 4px;
    right: 3px;
}

h1 {
    margin: 1rem 0 1rem 1.25rem;
    padding: 0;
    font-size: 3rem;
    line-height: 3rem;
    color: #00A651;
}

h1 span {
    font-size: 0.875rem;
    line-height: 1.125rem;
    display: block;
}

h1 a {
    color: #1CA84B;
}

h2 {
    font-size: 23px;
    line-height: 1.25;
    margin: 0 0 3px;
}

h2 span {
    color: #B1D9BA;
    font-size: 18px;
}

h2 small {
    color: #8ecea5;
    display: block;
}

h3 {
    font-size: 1.125rem;
    margin: 1rem 0;
    line-height: 1.375rem;
    padding: 1rem 1.25rem 1rem 1rem;
    background: #F58221;
    position: absolute;
    top: -42px;
    left: 1.25rem;
    border-radius: 3rem;
    color: #FFF;
    text-align: center;
}

h4 {
    font-size: 16px;
    line-height: 21px;
    text-decoration: underline;
    margin: 0 0 10px;
}

ul {
    list-style: none;
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

ul li {
    padding-left: 35px;
    margin: 0 0 3px;
}

li:before {
    content: '\2022';
    position: absolute;
    text-indent: -35px;
    font-size: 18px;
    margin-top: -1px;
}

a {
    color: #00A651;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media (max-width:529px) {
    #wrapper {
        padding: 0;
        border: none;
        margin: 0 auto;
    }

    header {
        padding: 10px 16px;
        margin: 0;
        text-align: center;
    }

    article {
        padding: 16px;
        margin: 0 16px;
    }

    article div {
        padding: 12px 16px;
    }

    footer {
        padding: 12px 16px;
        text-align: center;
    }

    h1 {
        margin: 12px 0;
        font-size: 27px;
        line-height: 36px;
        text-align: center;
    }

    h1 span {
        font-size: 13px;
        line-height: 17px;
    }

    h3 {
        margin: 12px 0;
        font-size: 15px;
        position: static;
        line-height: 1.125rem;
    }

    p {
        margin: 0 0 15px;
    }

    header img {
        position: static;
    }

    article img {
        position: static;
        margin: 0 auto;
        display: block;
    }

    footer a {
        font-size: 16px;
        color: #FFF;
    }

    footer p {
        background: #00A54F;
        width: 100%;
        color: #FFF;
        line-height: 1.4;
        padding: 0.625rem 1.25rem;
        border-radius: 1.25rem;
    }

    footer img {
        position: static;
    }

    :is(footer, li) br {
        display: none;
    }

    .span {
        white-space: nowrap;
    }
}