@charset "utf-8";

:root {
    font-size: 16px;
}

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

body {
    color: #000;
    font: 0.937rem/1.5rem 'Arial', sans-serif;
    background: #FABA00;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
}

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

p {
    margin: .5rem 0;
}

.center {
    text-align: center;
}

h1 span {
    white-space: nowrap;
}

h1 {
    font-size: 1.5rem;
    color: #a50e12;
    margin: 1.25rem 0 .625rem;
    line-height: 1.5;
}

h3 {
    font-size: 1.2rem;
    color: #a50e12;
    margin: 0 0 1.187rem ;
}

h4 {
    font-size: 1.2rem;
    margin: 0 0 .5rem;
}

ul {
    list-style: none;
    margin: 0.5rem 0 0 0;
}

ul li {
    padding-left: .937rem;
}

article ul li:before {
    content: "\25A0";
    color: #a50e12;
    font-size: .625rem;
    float: left;
    margin: 0 0 0 -.937rem;
    line-height: 2.3
}

header {
    background: #fff;
    padding: 2rem 2rem 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    column-gap: .625rem;
}

.column {
    width: 70%;
}

header p {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0
}

header p span {
    margin: 0 0 .625rem 0;
    font-size: 1rem;
    line-height: 140%;
    display: flex;
    align-items: center;
}

header p span i {
    width: 1.562rem;
}

.section {
    background: #fff;
    margin: 0 0 0.5rem;
    padding: 1rem 1.5rem;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
}

.icon i {
    font-size: 3.2rem;
}

a.apply {
    background: #a50e12;
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    border: solid .125rem #a50e12;
    padding: 0.7rem 2rem;
    width: 14.375rem;
    display: block;
    margin: 1.5rem auto 0.5rem;
}

a.apply:hover {
    background: #fff;
    color: #a50e12;
}

:is(.left, .right) {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

.flex p:last-of-type {
    margin: 0
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    background: #fff;
    padding: 1rem;
    margin-top: 0.5rem;
}

footer p {
    text-align: center;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 46rem) {

    p,
    ul {
        margin: 0;
    }

    p:not(:last-child),
    ul:not(:last-child) {
        margin: 0 0 1rem;
    }

    h3 {
        margin: 0 0 1rem;
        line-height: 1.3;
    }

    h4 {
        margin: 0 0 .5rem;
    }

    header {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
gap: 20px;
    }

    .column {
        width: auto;
    }

    header p {
        text-align: center;
    }

    header p span {
        justify-content: center;
        align-items: center;
    }

}

@media only screen and (max-width: 37.5rem) {

    .flex,
    :is(.left, .right) {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    :is(.left, .right) p,
    h4 {
        text-align: center;
    }
}

@media only screen and (max-width: 30rem) {
    :is(header, .section, footer) {
        padding: 1rem;
    }
}