@font-face {
    font-display: swap;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans-v15-latin-regular.eot');
    src: url('../fonts/nunito-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-sans-v15-latin-regular.woff2') format('woff2'), url('../fonts/nunito-sans-v15-latin-regular.woff') format('woff'), url('../fonts/nunito-sans-v15-latin-regular.ttf') format('truetype'), url('../fonts/nunito-sans-v15-latin-regular.svg#NunitoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-sans-v15-latin-700.eot');
    src: url('../fonts/nunito-sans-v15-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-sans-v15-latin-700.woff2') format('woff2'), url('../fonts/nunito-sans-v15-latin-700.woff') format('woff'), url('../fonts/nunito-sans-v15-latin-700.ttf') format('truetype'), url('../fonts/nunito-sans-v15-latin-700.svg#NunitoSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    min-height: 100%;
}

body {
    color: #3f5347;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    max-width: 910px;
    border: 1px solid #3f5347;
    background-color: #fff;
    overflow: hidden;
}

.logo {
    padding: 30px 60px;
    margin-bottom: 8px;
    display: flex;
    justify-content: flex-start;
}

strong {
    font-weight: 700;
}

article {
    padding: 30px 60px;
}

footer {
    background: #FFD616;
    padding: 20px 60px;
}

footer strong {
    color: #3f5347 !important;
    font-size: 19px;
}

p:not(:first-of-type) {
    margin-top: 12px;
}

h1 {
    font-size: 16px;
    line-height: 1.25;
    margin: 30px 0 0;
    text-align: center;
    font-weight: 400;
}

h1 strong {
    font-size: 24px;
    display: block;
}

h2 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 25px;
}

.block {
    display: block;
}

:is(h1, h2, .link) {
    color: #3A5E87 !important;
    font-weight: 700
}

strong {
    font-weight: 700
}

.link {
    text-decoration: underline !important;
}

ul {
    list-style: none;
    margin: 10px 0 0 20px;
}

ul li {
    padding-left: 20px;
}

ul li ul {
    margin-top: 0;
}

li:before {
    content: "\2022";
    color: #3A5E87;
    float: left;
    font-size: 22px;
    text-indent: -20px;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #3f5347;
    text-decoration: none;
    white-space: nowrap;
}

.images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.images span {
    margin: 0 -1px 0 0;
}

p span {
    white-space: nowrap;
}

@media only screen and (max-width:910px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(.logo, article, footer) {
        padding: 30px 1rem
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h2 span {
        white-space: nowrap;
    }

    .images span {
        margin: 0;
    }
}

@media only screen and (max-width:480px) {
    .logo {
        justify-content: center
    }

    ul {
        margin-left: 0
    }

    footer p {
        text-align: center;
    }

    .link {
        white-space: normal !important;
    }
}