:root {
    --p: #082f3e;
    --b: #00497A;
    --d: #003355;
    --t: #212121;
    --w: #fff
}

*,
::after,
::before {
    box-sizing: border-box;
    font-family: proxima-nova, sans-serif
}

body {
    margin: 0;
    background: var(--p);
    color: var(--t);
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.header {
    background: var(--w);
    padding: 24px 0;
    text-align: center;
    line-height: 12px
}

.logo {
    height: 28px
}

.blue-strip {
    background: var(--b);
    height: 40px
}

.container-wrapper {
    flex: 1;
    background: url(https://nationscdn.azureedge.net/nb-container/images/splashlp/splash-bg.png) center 65%/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.card {
    background: var(--w);
    padding: 82px 60px;
    border-radius: 16px;
    max-width: 722px;
    text-align: center
}

.card h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 30px;
    margin: 0 0 24px
}

.card p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .3px;
    line-height: 24px;
    margin: 0
}

.card p strong {
    font-weight: 600;
    display: inline-block
}

.footer {
    background: var(--d);
    padding: 26px 16px;
    color: var(--w)
}

.footer p {
    font-size: 12px;
    font-weight: 400;
    margin: 0
}

@media (min-width:768px) and (max-width:991.98px) {
    .card {
        padding: 72px 40px
    }
}

@media (max-width:767px) {
    .card h1 {
        font-size: 22px;
        line-height: 22px;
        margin: 0 0 20px
    }
    .card {
        padding: 72px 20px;
        max-width: 400px
    }
}