* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    font-size: 16px;
}

body {
    color: #000;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
}

#wrapper {
    max-width: 986px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    position: relative;
}

article {
    padding: 32px 140px 48px 84px;
}

.video {
    margin-right: -56px;
}

iframe {
    width: 100%;
    border: none;
    height: 391px;
}

footer {
    padding: 10px 100px 64px;
    border-top: 6px solid #93c90e;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}


footer p {
    color: #004680;
    font-size: 17px;
    line-height: 1.2;
    margin: 0;
    max-width: 43%;
}

footer a {
    color: #004680 !important;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

h1 small {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

h2 {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    margin: 32px 0 0;
    color: #004680;
}

h3 {
    font-size: 17px;
}

ul {
    margin: 0 0 32px;
    list-style: none;
}

ul li {
    padding-left: 60px;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 24px;
    text-indent: -32px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

@media all and (max-width: 984px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    .video {
        margin: 0;
    }

    :is(article,
    footer) {
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    footer p {
        max-width: 41%;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width: 767px) {
    footer {
        flex-direction: column;
        align-items: center;
    }

    footer p {
        text-align: center;
        max-width: 100%;
    }
}

@media all and (max-width: 480px) {
    ul li {
        padding-left: 32px;
    }
}