* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Inter", Arial, sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    border: 2px solid #616363;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .border {
    border-top: 1px solid #1fa22e;
    padding-top: 15px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

#wrapper article {
    padding: 32px 32px 2px;
}

#wrapper footer {
    padding: 12px 32px;
    background: #EDEDED;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 500;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 10px;
    align-items: flex-end;
}

#wrapper .big {
    font-size: 20px;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 38px;
    font-weight: 500;
    color: #1fa22e;
}

#wrapper h2 {
    color: #1fa22e;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 500;
    color: #1fa22e;
}

#wrapper h4 {
    font-size: 22px;
    font-weight: 500;
    color: #646363;
    flex: 1 1 0;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #646363;
    text-decoration: none;
}

#wrapper .button a {
    display: inline-block;
    padding: 9px 35px;
    background: #1fa22e;
    color: #fff;
    font-size: 16px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}


#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: "\0025a0";
    font-size: 13px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 1px;
    line-height: 1;
    left: 0;
    color: #646363;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,
    #wrapper footer,
    #wrapper .logo {
        padding: 16px;
    }

}

@media (max-width: 629px) {
    #wrapper .logo {
        flex-direction: column;
        align-items: center;
    }

    #wrapper h1,
    #wrapper h2 {
        font-size: 30px;
    }

    #wrapper h3 {
        font-size: 22px;
    }

    #wrapper h4 {
        text-align: center;
    }
}