@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #3a434f;
    background: #E0E5E5;
    font: 1em/1.3em Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 820px;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    margin-top: 0.5rem;
    display: block;
}

header {
    padding: 2rem;
    display: flex;
    background-color: #fff;
}

article {
    margin-top: .5rem;
}

article section {
    background: #fff;
    padding: 1.5rem 2rem;
    margin: 0 0 .5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0 .125rem .5rem;
}

article p {
    margin: 1rem 0;
}

article:first-of-type p {
    margin: 0 0 1rem;
}

h1,
h2 {
    color: #002979;
}

h1 {
    font-size: 1.5rem;
    line-height: 1.3em;
    text-align: center;
}

h1,
h1+p,
footer p {
    text-align: center;
}

h2 {
    font-size: 1.2rem;
    line-height: 1.3em;
}

ul {
    padding: 0 0 0.5rem;
    list-style: none;
}

ul li {
    padding-left: 1rem;
}

ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
    color: #002979;
}

article section.orange {
    background: #fff;
}

article section.orange .fa-solid {
    color: #002979;
}

article section.orange p,
article section.orange p a {
    color: #000;
}

article .flex {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
}

article .btn {
    display: flex;
    justify-content: center;
}

article .btn a.apply {
    background: #002979;
    color: #fff;
    text-align: center;
    padding: .5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    margin: .5rem 0 0;
}

article figure {
    margin: 0;
}

article figure .fa-solid {
    font-size: 2.2rem;
    color: #002979;
}

article .col-2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}

article .col-2 .col-2-inner {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

article .col-2 .col-2-inner .details h2 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

article .col-2 .col-2-inner .details p {
    margin: 0;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #3a434f;
    text-decoration: none;
    white-space: nowrap;
}

footer {
    background: #fff;
    margin-top: .5rem;
    padding: 1.5rem 1rem;
}

footer p {
    color: #000;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.5rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 780px) {
    header {
        justify-content: center;
    }

    article :is(.flex, .col-2) {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    article .col-2 .col-2-inner {
        width: 100%;
        align-items: center;
        flex-direction: column;
    }

    article .col-2 .col-2-inner .details :is(h2, p) {
        text-align: center;
    }
}

@media only screen and (max-width: 30rem) {
    article section {
        padding: 1rem;
    }

    article .btn a.apply {
        width: 100%;
    }
}