@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

body {
    color: #231f20;
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 58.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 1.375rem;
    color: #365f90;
    line-height: 1.2;
    margin: 2rem 0 1.5rem;
}

h2 {
    font-size: 1.125rem;
    color: #365f90;
}

p {
    margin: 0 0 1rem;
}

ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

ul li {
    padding-left: 1.25rem
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1rem;
    font-size: 13px;
    line-height: 1.3;
    color: #365f90;
}

header {
    display: flex;
}

.column_light_blue {
    width: 15%;
    background-color: #7daadc;
}

.column_blue {
    width: 30%;
    background-color: #4d8ecb;
}

.column_logo {
    width: 55%;
    background-color: #d1e2f1;
    display: flex;
    justify-content: center;
}

.row-blue {
    display: flex;
    height: 2rem;
}

.left {
    width: 25%;
    background-color: #406390;
}

.right {
    width: 75%;
    background-color: #002f6c;
}

article {
    padding: 2rem 4.5rem;
}

.button {
    display: flex;
    justify-content: center;
    margin: 3rem 0 1rem;
}

a.apply {
    background: #365f90;
    color: #fff;
    padding: .5rem 1.25rem;
}

footer {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem;
}

@media only screen and (max-width: 58.6875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        box-shadow: none;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 54rem) {
    h1 {
        text-align: center;
        margin: 1.5rem 0;
    }

    .row-blue {
        height: clamp(1rem, 0.3478rem + 2.7826vw, 2rem);
    }

    article {
        padding: 1rem 1rem 0
    }

    .button {
        display: flex;
        justify-content: center;
        margin: 2rem 0;
    }

    footer {
        justify-content: center;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 30rem) {

    .column_blue,
    .column_light_blue {
        display: none;
    }

    .column_logo {
        width: 100%;
    }

    footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 23.5rem) {
    a.apply {
        width: 100%;
        text-align: center;
    }
}