@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: .937rem;
    line-height: 1.5em;
    background: #ddd;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 .625rem rgba(0, 0, 0, .2);
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: .937rem 0;
}

h1 {
    font-size: 1.6rem;
    line-height: 120%;
    margin: 1rem 0 0;
    font-weight: 700;
}

h2 {
    font-size: 1.312rem;
    color: #fcc500;
    line-height: 2rem;
    margin: 0 0 1.125rem;
    font-weight: 700;
}

ul {
    list-style: none;
    margin: 0 0 0 1.5rem;
    padding: 0 0 0 2.5rem;
}

ul li {
    margin: 0;
    padding: 0;
}

ul li:before {
    content: "\2022";
    color: #fcc500;
    float: left;
    margin: 0 0 0 -1.125rem;
    font-size: 1.375rem;
}

header {
    padding: 2rem 2.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    flex-direction: row-reverse;
}

.infos {
    display: flex;
    align-items: flex-start;
    gap: 20px
}

.header_box {
    width: 70%;
    padding: 1.5rem 0 2.6rem;
}

.header_box p i {
    margin-right: 10px;
}

article {
    padding: 0 2.5rem;
    position: relative;
}

.color {
    background: #1a3b49;
    padding: 1rem 1.5rem;
    margin: 0 0 2rem;
    color: #fff;
}

.txt {
    padding: 0 1.5rem;
    margin: 0 0 2rem;
}

article a.apply {
    background: #fcc500;
    text-align: center;
    padding: .5rem 1.5rem;
    display: block;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 2rem auto;
    width: 13.75rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    margin-top: 1rem;
    padding: 0 2.5rem .5rem;
}

footer p {
    text-align: center;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header {
        padding: 2rem;
    }

    .infos {
        align-items: center;
        justify-content: center;

    }

    .header_box {
        padding: 1.5rem 0 1rem;
    }

    article,
    footer {
        padding: 0 2rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header_box {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .infos {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0
    }

    .infos p:first-of-type {
        margin: 1rem 0 5px;
    }

    header {
        padding: 1rem 1rem 10px;
    }

    article,
    footer {
        padding: 0 1rem;
    }

    ul {
        padding: 0;
    }

    h1 br {
        display: none;
    }
}

@media only screen and (max-width: 23.437rem) {
    .header_box p {
        flex-direction: column;
    }
}