@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../fonts/NeoSansPro-Regular.eot');
    src: url('../fonts/NeoSansPro-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/NeoSansPro-Regular.woff2') format('woff2'), url('../fonts/NeoSansPro-Regular.woff') format('woff'), url('../fonts/NeoSansPro-Regular.ttf') format('truetype'), url('../fonts/NeoSansPro-Regular.svg#NeoSansPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../fonts/NeoSansPro-Bold.eot');
    src: url('../fonts/NeoSansPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/NeoSansPro-Bold.woff2') format('woff2'), url('../fonts/NeoSansPro-Bold.woff') format('woff'), url('../fonts/NeoSansPro-Bold.ttf') format('truetype'), url('../fonts/NeoSansPro-Bold.svg#NeoSansPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    color: #454444;
    font-size: 14px;
    line-height: 19px;
    font-family: 'Neo Sans Pro', Arial, sans-serif;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto;
    border: 1px solid #808080;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .25);
    padding: 35px;
}

header {
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 10;
}

.main {
    border-radius: 30px;
    overflow: hidden;
    background: #f1f1f1 url('../images/background.jpg') no-repeat top left;
}

article {
    padding: 30px 40px 20px;
}

.flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content {
    width: 48%;
}

.center {
    text-align: center;
}

.color {
    color: #007584;
}

.link {
    color: #0563c1 !important;
}

.button {
    display: flex;
    justify-content: center;
    margin: 45px 0 15px;
}

.button a {
    display: inline-block;
    color: #fff !important;
    text-transform: uppercase;
    background: #007584 !important;
    font-size: 28px;
    padding: 8px 30px;
    border-radius: 5px;
    line-height: 32px;
}

.trackingpixel {
    width: 1px;
    height: 1px;
    aspect-ratio: auto 1 / 1;
}

figure {
    margin: 26px -35px 0;
}

footer {
    padding: 0 40px 35px;
    display: flex;
    align-items: flex-end;
    column-gap: 40px;
    margin-top: -120px;
}

p:not(footer p) {
    margin: 0 0 1rem;
}

:is(p, li) span {
    white-space: nowrap;
}

:is(strong, h1, h2, h3, h4) {
    font-weight: 700;
}

h1 {
    margin: 6px 0 30px;
    font-size: 40px;
    line-height: 1.4;
    color: #007584;
}

h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 90px;
    color: #007584;
}

h3 {
    font-size: 30px;
    line-height: 1;
}

h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #454444;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin-bottom: 15px;
    list-style: none;
}

ul li {
    padding-left: 13px;
    position: relative;
    margin-bottom: 1rem;
}

ul li:before {
    content: '\2010';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    font-family: Arial, sans-serif;
}

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

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

    footer {
        margin-top: -14%;
    }

    :is(h1, ul li, p) {
        hyphens: auto;
    }
}

@media (max-width: 767px) {
    :is(#wrapper, article) {
        padding: 16px;
    }

    header {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: -16px;
    }

    .content {
        width: 100%;
    }

    .button a {
        font-size: 24px;
        line-height: 28px;
    }

    figure {
        margin: 20px -16px 0;
    }

    footer {
        padding: 0 16px 16px;
    }

    footer p {
        flex: 1 1 0;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        margin-bottom: 25px;
    }
}

@media (max-width: 499px) {
    footer {
        gap: 16px;
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }

    footer p {
        text-align: center;
    }
}