:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #242021;
}

#wrapper {
    border: 1px solid grey;
    margin: 16px auto;
    max-width: 940px;
    -webkit-box-shadow: 0 1px 5px 1px rgb(0 0 0 / 25%);
    box-shadow: 0 1px 5px 1px rgb(0 0 0 / 25%);
    border: solid thin #242021;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.button a {
    display: inline-block;
    background-color: #ec7c00;
    transition: background-color 0.5s;
    padding: 20px;
    font-size: 25px;
    line-height: 1.1;
}

.button a:hover {
    background: #CB720C;
    text-decoration: none;
}

article {
    padding: 0 58px 30px;
}

.title {
    background: #17304E;
    color: #fff;
    width: 570px;
    padding: 20px 25px;
    margin: -65px 0 15px;
    position: relative;
}

.flex {
    display: flex;
    gap: 6px 32px;
    flex-wrap: wrap;
    align-items: center;
}

.flex span {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

article p .span {
    font-size: 14px;
}

.section {
    background: #EAEAEC;
    padding: 18px 60px;
    margin: 20px -60px 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.content span {
    font-size: 17px;
    display: block;
    line-height: 22px;
    margin-bottom: 5px;
}

footer {
    padding: 35px;
    background: #17304E;
    color: #fff;
}

footer a {
    color: #fff !important;
}

footer p {
    text-align: right;
}

footer img {
    vertical-align: bottom;
}

.contact div {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.contact {
    margin: 0 0 10px;
    border-top: #fff 1px solid;
    border-bottom: #fff 1px solid;
    overflow: hidden;
    padding: 11px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

h1 {
    font-size: 28px;
    margin: 16px 0;
    line-height: 33px;
    border-left: #EC7C03 3px solid;
    padding: 0 0 12px 12px;
}

h1 span {
    font-size: 13px;
    font-weight: normal;
}

h2 {
    font-size: 18px;
    margin: 16px 0;
    line-height: 22px;
}

h3 {
    font-size: 17px;
    margin: 0 0 16px;
    line-height: 21px;
    color: #006794;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

p:not(p:last-child) {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:active) {
    text-decoration: none;
    color: #006794;
    white-space: nowrap;
}

.link {
    color: #242021 !important;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin: 0 0 0 5px;
    list-style: none;
}

ul li {
    padding-left: 16px;
    margin-bottom: 8px;
}

li:before {
    text-indent: -16px;
    content: "\2022";
    float: left;
    font-size: 17px;
    margin-top: 1px;
}

@media screen and (max-width: 938px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, ul, p) {
        hyphens: auto;
    }

    :is(article, footer, .section) {
        padding: 16px;
    }

    .title {
        width: 90%;
        margin-top: -48px;
    }

    .section {
        margin: 0 -16px;
    }

    h1 {
        font-size: 24px;
    }

    h1 br {
        display: none;
    }
}

@media screen and (max-width: 689px) {
    .contact {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .normal {
        white-space: normal !important;
    }
}

@media screen and (max-width: 521px) {
    .title {
        width: 100%;
        margin-top: 0;
    }

    .section {
        flex-direction: column;
    }

    :is(.section p, h3) {
        text-align: center;
    }

    ul {
        margin: 0;
    }
}