@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;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #009c4f;
}

#wrapper {
    margin: 1rem auto;
    max-width: 800px;
    background: #fff;
    border: solid thin #cbcbcb;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 16px;
    margin-top: -1px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.header-flex-content:nth-of-type(1) {
    width: 46%;
}

.header-flex-content:nth-of-type(2) {
    width: 50%;
}

:is(.black, .black a) {
    color: #000 !important;
}

.font {
    color: #000;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0 6px;
}

.banner {
    position: relative;
}

.top-youfirm {
    position: absolute;
    bottom: -10%;
    right: 1%;
    height: 44%;
    width: 25%;
    z-index: 999;
}

.font-size {
    font-size: 20px;
    margin: 1rem 0;
    display: block;
}

article {
    padding: 16px 16px 8px;
    background: #009c4f;
}

.flex-box {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.flex-box-content:nth-of-type(1) {
    width: 49%;
}

.flex-box-content:nth-of-type(2) {
    width: 49%;
}

.color {
    color: #fff !important;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 38px;
}

h1 span {
    font-size: 18px;
    margin: 4px 0 0;
    display: block;
}

h2 {
    font-size: 21px;
    margin: 0 0 16px;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #009c4f;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 10px;
}

ul li {
    list-style: none;
    padding-left: 18px;
    margin: 0 0 2px;
}

ul li:before {
    font-size: 20px;
    position: relative;
    top: -2px;
    float: left;
    content: "\2022";
    text-indent: -18px;
}

:is(ul, footer p) {
    font-size: 17px;
    line-height: 1.5;
}

footer {
    padding: 16px 16px 0px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer-flex-content:nth-of-type(1) {
    width: 50%;
}

.footer-flex-content:nth-of-type(2) {
    width: 49%;
}

@media screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    h1 {
        font-size: 36px;
    }

    .top-youfirm {
        bottom: 10%;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}

@media screen and (max-width: 760px) {
    .header-flex {
        margin-top: 22px;
        padding: 0 16px 16px;
        flex-direction: column;
        align-items: center;
    }

    .header-flex-content {
        width: auto !important;
    }

    .header-flex-content :is(h1, p) {
        text-align: center;
    }

    h1 {
        font-size: 30px;
    }

    h1 span {
        display: inline;
    }

    :is(.flex-box, .footer-flex) {
        display: block;
    }

    :is(.footer-flex-content, .flex-box-content) {
        width: 100% !important;
    }

    .footer-flex-content p {
        text-align: center !important;
    }
}

@media screen and (max-width: 480px) {
    .top-youfirm {
        position: static;
        display: flex;
        justify-content: center;
        width: auto;
    }
}