@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #404040;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #f0f5f8;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

h1 {
    color: #3ab72b;
    font-size: 26px;
    margin: 10px 0 32px;
    text-align: center;
}

h2 {
    color: #3ab72b;
    font-size: 18px;
    margin: 0 0 13px
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 55px
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .062rem;
    background: #000;
    margin-left: -25px;
    top: .687rem;
}

header {
    padding: 32px;
    display: flex;
    justify-content: center;
}

article {
    padding: 0 32px;
}

hr {
    border: 0;
    border-top: 2px solid #e1e4e5;
    margin: 48px -32px;
}

a.btn {
    text-align: center;
    color: #fff;
    background: #3ab72b;
    margin: 32px auto;
    padding: 8px 16px;
    font-size: 1rem;
    border-radius: 4px;
    width: 40%;
    display: block;
}

footer {
    padding: 0 32px 32px;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 10px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        padding: 16px;
    }

    article {
        padding: 0 16px;
    }

    footer {
        padding: 0 16px 16px;
    }

}

@media only screen and (max-width: 499px) {
    .text {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }


    ul li {
        padding: 0 0 0 35px
    }

    a.btn {
        width: 100%;
    }

    hr {
        margin: 30px -32px;
    }
}
