@charset "utf-8";

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #7f8083;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: .937rem;
    line-height: 1.4;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

p {
    margin: 0 0 1.25rem;
}

.justified {
    text-align: justify;
}

.center {
    text-align: center;
    margin: 1.562rem 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    color: #71b127;
    text-align: center;
    font-size: 1.875rem;
    margin: 0 0 1.875rem;
    line-height: 1.2;
    font-weight: 400;
}

h2 {
    color: #71b127;
    font-size: 1rem;
    margin: 0 0 0.625rem;
    line-height: 1.4;
}

ul {
    list-style: none;
    margin: 0 0 1.75rem;
}

ul li {
    padding-left: 3.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
    color: #000;
}

.info {
    display: flex;
    justify-content: space-around;
    background-color: rgb(255, 214, 0);
    padding: 0.625rem;
    margin: 0 0 1.875rem;
    gap: .625rem 1rem;
}

.info div {
    display: flex;
    align-items: center;
    gap: 5px 0.625rem;
}

.info p {
    margin: 0;
    color: rgb(99, 99, 99);
    font-size: 14pt;
}

.margin {
    margin: 0 0 3rem;
}

header {
    display: flex;
    padding: .625rem 0;
}

a.button {
    color: #ffffff;
    background-color: #71B127;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.4375rem 0.625rem;
    border-radius: 0.1875rem;
    display: inline-block;
    letter-spacing: 0.0625rem;
}

a.button:hover {
    background-color: #A4CF6D;
}

@media only screen and (max-width: 59.938rem) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
    }

    .justified {
        text-align: left;
    }
}

@media only screen and (max-width: 40rem) {
    header {
        padding: 0 0 .625rem;
        justify-content: center;
    }

    .info {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .info div {
        flex-direction: column;
    }

    .info p {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
        margin: 1.25rem 0;
    }

    h2 {
        margin: 0 0 0.3125rem;
    }

    ul,
    p,
    .margin {
        margin: 0 0 1rem;
    }

    ul li {
        padding: 0 0 0 0.9375rem;
    }

    ul li:before {
        margin: 0 0 0 -0.9375rem;
    }

    footer {
        display: flex;
        justify-content: center;
    }
}