@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v36-latin-regular.eot');
    src: url('../fonts/open-sans-v36-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v36-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v36-latin-regular.woff') format('woff'), url('../fonts/open-sans-v36-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v36-latin-regular.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000000;
    font-family: 'Open Sans', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #EBEBEB;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p:not(footer > p) {
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

ul {
    margin: 0 0 0.625rem;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 1.125rem;
}

ul li::before {
    content: "";
    background-color: #004992;
    width: 0.375rem;
    height: 0.375rem;
    position: relative;
    display: block;
    float: left;
    top: 0.5rem;
    margin: 0 0 0 -0.9375rem;
}

li ul {
    margin: 0;
}

li ul li::before {
    background-color: transparent;
    width: 0.3125rem;
    height: 0.3125rem;
    border: 0.0625rem solid #004992;
    border-radius: 50%;
    margin: 0 0 0 -1.5625rem;
}

h1 {
    color: #004992;
    font-size: 1.375rem;
    line-height: 1.3;
    margin: 0 0 1.25rem;
}

h2 {
    color: #004992;
    font-size: 1.625rem;
    line-height: 1.2;
    margin: 0 0 1rem;
}

h3 {
    color: #004992;
    font-size: 1.1875rem;
    margin: 0 0 0.625rem;
}

h4 {
    font-size: 1.1875rem;
    margin: 0 0 0.3125rem;
}

header {
    background-color: #fff;
    padding: 2rem;
    margin: 0 0 0.5rem;
}

.first_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    column-gap: 2rem;
}

a.logo {
    flex: 0 0 300px;
}

.infos {
    font-size: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
}

.infos>p {
    margin: 0 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px
}

.container {
    background-color: #fff;
    padding: 1.5625rem 1.5rem;
    margin: 0 0 0.5rem;
}

.infos>p:first-of-type i {
    margin-right: 3px
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

figure>i {
    font-size: 3em;
}

.row>figure {
    width: 60px;
    margin: 0;
}

.text {
    width: calc(100% - 5rem);
}

.button_container {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0;
}

a.apply {
    color: #fff;
    background-color: #004992;
    border: 0.125rem solid #004992;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14.375rem;
    height: 3.125rem;
    transition: all 0.1s linear;
}

a.apply:hover {
    color: #004992;
    background-color: #fff;
}

.contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem 2rem;
}

.contact p {
    margin-bottom: 0;
}

.details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.details_last {
    width: 17rem;
}

.details_first>figure {
    width: 3.75rem;
}

.details_first>.details_text {
    width: calc(100% - 5rem);
}

.details_last>figure {
    width: 2.5rem;
}

.details_last>.details_text {
    width: calc(100% - 3.75rem);
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
    box-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, .25);
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video_container>.iframe-wrapper {
    margin: 0.5rem 0;
}

footer {
    background-color: #fff;
    margin: 1rem 0 0;
    padding: 1rem 1.5rem;
    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;
    }

    h1 br {
        display: none;
    }

    ul li {
        padding: 0 0 0 0.9375rem;
    }

    ul li:before {
        margin: 0 0 0 -0.9375rem;
    }

    li ul li::before {
        margin: 0 0 0 -0.9375rem;
    }

    h1 {
        width: 100%;
        margin: 1rem 0;
        font-size: 1.25rem
    }

    h2 {
        font-size: 1.625rem;
        margin: 1.25rem 0 0.625rem;
    }

    header {
        padding: 1rem;
        text-align: center;
    }

    a.logo {
        flex: auto;
    }

    .first_row {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .infos {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .infos>p {
        text-align: center;
        gap: 0.625rem;
    }

    .infos>p>span:first-of-type,
    .infos>p>span:last-of-type {
        width: auto;
        display: inline-block;
    }

    .container {
        padding: 1rem;
    }

    .button_container {
        margin: 1.25rem 0;
    }

    .details {
        margin: 0;
    }

    footer {
        margin: 0.5rem 0 0;
        padding: 1rem 1.5rem;
    }
}

@media only screen and (max-width: 42.5rem) {
    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.0625rem;
    }

    h4 {
        text-align: center;
    }

    .details_text p {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .row>figure {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
    }

    .text {
        width: 100%;
    }

    .text h3 {
        text-align: center;
        margin: 0.625rem 0;
    }

    .text>p {
        text-align: center;
    }

    .contact {
        flex-direction: column;
        align-items: center;
    }

    .details {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .details_first,
    .details_last {
        width: 100%;
    }

    .details_first>figure,
    .details_last>figure,
    .details_first>.details_text,
    .details_last>.details_text {
        width: auto;
    }
}