@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: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    padding: 0.5rem 0;
    overflow: hidden;
    box-shadow: 0 0 .625rem rgb(0 0 0 / 20%);
    border: 1px solid #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

article p span {
    white-space: nowrap;
}

a.web {
    font-size: 1.125rem;
    line-height: 1.3;
    color: #000;
    white-space: pre-wrap;
}

a.hier {
    color: #FF0000;
}

h1 {
    margin: 1.25rem 0;
}

h2 {
    margin: 0.625rem 0 1rem;
}

h1,
h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    color: #E2001E;
}

h3,
h4 {
    font-size: 1.312rem;
    line-height: 1.2;
    color: #142C69;
    margin: 0 0 .937rem
}

ul {
    list-style: none;
    margin: 0 0 0 .625rem;
    padding: 0;
}

ul li {
    padding-left: .937rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -.937rem;
    font-size: 1.375em;
    line-height: 1;
}

header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem 0;
}

.element {
    width: 72%;
}

header p {
    color: #000;
    margin: 0 0 .875rem;
}

.fa-map-marker-alt {
    color: #7092BE;
}

.fa-clock {
    margin-left: .625rem;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    22% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    47% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    72% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    97% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 24s slidy infinite;
}

figure img {
    width: 20%;
    float: left;
}

article {
    padding: 1rem 1.25rem 0;
}

.section,
.aside {
    background-color: #FFF;
    margin: 1rem 0;
    padding: 1.25rem 1.25rem 1rem;
    position: relative;
}

.aside,
footer {
    background-color: #B8BFD1;
}

.logo {
    margin: 0 0 .375rem;
}

.box {
    position: absolute;
    right: 1.25rem;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a.apply {
    background: #fff;
    color: #142C69;
    padding: .625rem 1.25rem;
    width: fit-content;
    display: block;
    margin: 2.75rem auto 0;
    border: 1px solid #142C69;
    font-weight: bold;
    text-align: center;
}

a.apply:hover {
    text-decoration: none;
    background: #D51020;
    color: #fff;
    transition: 0.5s ease;
    border: 1px solid #D51020;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    margin: 1rem 1.187rem;
    padding: .875rem 1.187rem .875rem;
}

footer p {
    margin-bottom: 0;
    text-align: center;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem
    }

    h3,
    h4 {
        margin: 0 0 .625rem;
        font-size: 1.125rem;
    }

    header {
        padding: 0 1rem .625rem;
    }

    article {
        padding: 0;
    }

    .aside {
        padding: 1rem;
        margin: 0;
    }

    .section {
        padding: 16px 1rem 5px;
        margin: 0;
    }

    .box {
        right: 1rem;
        top: 70%
    }

    a.apply {
        margin: 2.5rem auto 2rem;
    }

    footer {
        margin: 1rem 0;
        padding: 1rem;
    }
}

@media only screen and (max-width: 47.5rem) {
    header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    h1,
    h1 + p {
        text-align: center;
    }

    h3,
    h4 {
        margin: 0 0 .625rem;
    }

    .element {
        width: 100%;
        margin: 1rem auto 0;
    }

    .site {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo {
        position: static;
        margin: 1rem auto;
    }

    .box {
        position: static;
    }

    a.apply {
        margin: 10px auto 1.25rem;
    }
}

@media only screen and (max-width: 42.5rem) {

    h1,
    h2 {
        font-size: 1.4375rem;
    }

    h2,
    a.web {
        text-align: center
    }
}

@media only screen and (max-width: 30rem) {
    header p span {
        display: block;
        margin: 0 0 0.625rem;
    }

    .aside p,
    .aside h4,
    .center,
    article .section:nth-of-type(6) h3 {
        text-align: center
    }

    .section {
        padding: 16px 0 5px;
        margin: 0;
    }
}

@media only screen and (max-width: 23.5rem) {
    a.apply {
        width: 100%;
        margin: 10px 0 30px
    }
}
