@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v51-latin-regular.eot');
    src: url('../fonts/roboto-v51-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v51-latin-regular.woff') format('woff'), url('../fonts/roboto-v51-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v51-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto-v51-latin-600.eot');
    src: url('../fonts/roboto-v51-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v51-latin-600.woff2') format('woff2'), url('../fonts/roboto-v51-latin-600.woff') format('woff'), url('../fonts/roboto-v51-latin-600.ttf') format('truetype'), url('../fonts/roboto-v51-latin-600.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #424242;
    font-family: 'Roboto', "Arial", sans-serif;
    font-size: 0.938rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    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;
}

strong {
    font-weight: 600;
}

p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    line-height: 1.3;
    color: #006e49;
    font-weight: 600;
    padding-bottom: .25rem;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    color: #006e49;
    padding: .5rem 0;
}

ul {
    padding: 0 0 1.5rem 1.5rem;
}

.info {
    color: #04070a9e;
    display: flex;
    gap: 1rem;
}

.info p {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-bottom: .5rem;
}

.mb {
    margin-bottom: 2rem;
}

hr {
    border-style: none;
    border-top: 1px solid #e1e1e1;
    margin: .5rem 0 1.5rem;
}

.button a {
    min-width: 60px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -.24px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #006e49;
    display: inline-block;
    box-shadow: 0 1px 2px 0 #006aff0f;
    transition: opacity .2s ease, box-shadow .2s ease;
}

.button a:hover {
    opacity: .9;
}

header {
    display: flex;
    padding: 1rem 2rem 3rem;
}

article {
    padding: 0 2rem;
}

footer {
    padding: 1rem 2rem 2rem;
    display: flex;
}

@media only screen and (max-width: 49.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: 40rem) {
    header {
        justify-content: center;
        padding: 1rem 1rem 2rem;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
        justify-content: center;
    }

    h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    h2 {
        padding: 0 0 .25rem;
        font-size: 1.3rem;
    }

    .info {
        justify-content: center;
    }

    .mb {
        margin-bottom: 1rem;
    }

}