@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/oxygen-v15-latin-regular.eot');
    src: url('../fonts/oxygen-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/oxygen-v15-latin-regular.woff2') format('woff2'), url('../fonts/oxygen-v15-latin-regular.woff') format('woff'), url('../fonts/oxygen-v15-latin-regular.ttf') format('truetype'), url('../fonts/oxygen-v15-latin-regular.svg#Oxygen') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: rgb(51, 51, 51);
    font-family: "Oxygen", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    hyphens: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

#wrapper {
    position: relative;
    max-width: 52.5rem;
    margin: 1.562rem auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgb(168, 168, 168);
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

h1 {
    font-size: 1.375rem;
    color: rgb(255, 98, 0);
    margin: .625rem 0 1.25rem;
    font-weight: 400;
}

h1 span {
    color: #000;
}

h2 {
    font-size: 1rem;
    color: #ff6200;
    margin: 0;
}

ul {
    margin: 0 0 .937rem 1.25rem
}

article {
    padding: 2rem 2.5rem 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.box {
    width: 48%;
}

footer {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

a.apply {
    border-radius: 0.437rem;
    color: #fff;
    font-size: .937rem;
    background: #559BD1;
    padding: .5rem .75rem;
    text-align: center;
    font-weight: 700;
}

a.apply:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 52.437rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 50.437rem) {
    article {
        padding: 1rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}

@media only screen and (max-width: 45rem) {
    .flex {
        flex-direction: column;
    }

    .box {
        width: 100%;
    }

    h1 {
        text-align: center;
    }
}

@media only screen and (max-width: 30rem) {
    footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem
    }
}