@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v17-latin-regular.eot');
    src: url('../fonts/fira-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v17-latin-regular.woff2') format('woff2'), url('../fonts/fira-sans-v17-latin-regular.woff') format('woff'), url('../fonts/fira-sans-v17-latin-regular.ttf') format('truetype'), url('../fonts/fira-sans-v17-latin-regular.svg#FiraSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-v17-latin-700.eot');
    src: url('../fonts/fira-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/fira-sans-v17-latin-700.woff2') format('woff2'), url('../fonts/fira-sans-v17-latin-700.woff') format('woff'), url('../fonts/fira-sans-v17-latin-700.ttf') format('truetype'), url('../fonts/fira-sans-v17-latin-700.svg#FiraSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #262626;
    font: 400 1em/1.3em 'Fira Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.5em;
    line-height: 1.3;
    font-weight: 400;
    flex: 1;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3em;
    margin: 1rem 0 0.5rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 2rem;
}
.logo {
    margin-bottom: 2rem;
}
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
figure {
    width: 50%;
}
article {
    padding: 1rem 2rem;
    background: #F8F8F5;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.right {
    flex: 1;
}
footer {
    width: 100%;
    position: relative;
    padding-bottom: 53%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
footer video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
a.apply {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #e3000f;
    color: #fff;
    font-size: 1.125em;
    line-height: 1.3;
    border-radius: 3rem;
    margin: 1rem 0;
}
@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:780px) {
    .banner {
        flex-direction: column;
        align-items: center;
    }
    figure {
        width: auto;
    }
    article {
        flex-direction: column;
    }
}
@media only screen and (max-width:480px) {
    h1 {
        font-size: 1.75em;
    }
    header, article {
        padding: 1rem;
    }
}