@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/mulish-v13-latin-regular.eot');
    src: url('../fonts/mulish-v13-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-regular.woff2') format('woff2'), url('../fonts/mulish-v13-latin-regular.woff') format('woff'), url('../fonts/mulish-v13-latin-regular.ttf') format('truetype'), url('../fonts/mulish-v13-latin-regular.svg#Mulish') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/mulish-v13-latin-900.eot');
    src: url('../fonts/mulish-v13-latin-900.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-900.woff2') format('woff2'), url('../fonts/mulish-v13-latin-900.woff') format('woff'), url('../fonts/mulish-v13-latin-900.ttf') format('truetype'), url('../fonts/mulish-v13-latin-900.svg#Mulish') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'Mulish', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 400;
    hyphens: auto;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 62.5rem;
    margin: 1rem auto;
    overflow: hidden;
    box-shadow: 0 0 1.25rem gray;
    background: #00152d;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.125rem;
}

span {
    white-space: nowrap
}

:is(h1, h2, strong) {
    font-weight: 900;
}

h1 {
    font-style: italic;
    font-size: 32px;
    margin: 1.562rem 0;
    line-height: 1.1;
    hyphens: initial;
}

h2 {
    margin: 0;
    line-height: 1.1;
    font-size: 1rem;
}

ul {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
}

ul li {
    padding-left: 1.125rem;
}

ul li:before {
    content: "➘";
    float: left;
    margin-left: -1.125rem;
}

span {
    white-space: nowrap;
}

article {
    padding: 0 3rem 0 5rem;
}

.margin {
    margin: 0 0 4px;
}

.flex {
    border-top: .125rem solid #fff;
    border-bottom: .125rem solid #fff;
    padding: .5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0 5px;
}

.box {
    width: 50%;
}

.left {
    padding-right: 1.687rem;
}

.right {
    border-left: .062rem solid white;
    padding: 0 0 0 1.687rem;
}

a.apply {
    font-size: .937rem;
    position: relative;
    background: #cd2220;
    color: #fff;
    display: inline-block;
    padding: 10px;
    line-height: 1.1;
    margin: 0 0 .937rem;
}

a.apply:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: 100%;
    top: 0%;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid #cd2220;
}

footer {
    padding: 0 3rem 2rem 5rem;
}

footer p {
    margin: 0;
}

.social {
    display: flex;
    column-gap: .312rem;
}

.social a i {
    font-size: 1.312rem
}

@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    article {
        padding: 0 1.25rem;
    }

    footer {
        padding: 0 1.25rem 1.25rem;
    }

    br {
        display: none
    }

    .flex .box:first-of-type p:nth-of-type(2) br {
        display: block
    }
}

@media only screen and (max-width: 600px) {

    p,
    ul {
        margin: 0 0 1rem;
    }

    .flex {
        flex-direction: column;
    }

    .box {
        width: 100%;
    }

    .right,
    .left {
        border: none;
        padding: 0;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        text-align: center;
        font-size: 25px;
    }

    .social {
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    footer p {
        text-align: center;
    }
}