@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'),
        url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'),
        url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'),
        url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v42-latin-700.eot');
    src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'),
        url('../fonts/noto-sans-v42-latin-700.woff') format('woff'),
        url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'),
        url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
        font-family: 'Noto Sans', Arial, sans-serif;

    font-size: 1rem;
    line-height: 1.5;
    background: #367AE4 url(../images/bg.jpg) no-repeat top center;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

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;
}

a.link {
    color: #0050C8;
}

a.link:hover {
    color: #005580;
    text-decoration: underline;
}

p {
    margin: 0 0 10px;
}

span{
    white-space: nowrap;
}

h1 {
    font-size: 1em;
    font-weight: normal
}

h2 {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
    line-height: 143%;
    color: #0050c8;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-left: 1.562rem;
    position: relative;
}

ul li:before {
    content: " ";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    top: 9.5px;
    left: -1.062rem;
}

.slider {
    position: relative;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}

.slider > img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider > img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider > img:nth-of-type(3) {
    animation-delay: 12s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

.section,
.slider {
    margin-bottom: 1.25rem;
    background-color: #fff;
    border: 1px dashed #000000;
    box-shadow: 0 0 1.625rem rgba(0, 0, 0, .125)
}

.box {
    padding: 32px;
}

a.apply {
    font-size: 1.062rem;
    line-height: 1.625rem;
    color: #fff;
    background-color: #0050c8;
    border: .125rem solid #0050c8;
    padding: .5rem 12%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: .312rem;
    font-weight: 600;
    text-align: center;
    margin: 3.437rem auto;
    display: block;
    width: fit-content;
    text-decoration: none;
}

a.apply:hover {
    opacity: 0.62;
    color: #0050c8;
    background-color: transparent;
    border: 2px solid #0050c8;
    text-decoration: none;
}

footer {
    background-color: #fff;
    border: 1px dashed #000000;
    box-shadow: 0 0 1.625rem rgba(0, 0, 0, .125)
}

footer p:last-of-type {
    margin-bottom: 0
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .box {
        padding: 20px
    }
}

@media only screen and (max-width: 30rem) {
    ul li {
        margin-left: 1.062rem
    }
}
