@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: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 0.937rem;
    line-height: 1.6;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 18.75rem, rgba(239, 239, 239, 1) 50rem), 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: #0065bd;
    text-decoration: underline 0.062rem dotted #0050c8;
}

a.link:hover {
    color: #333;
    text-decoration: underline 0.062rem solid #000;
}

p {
    margin: 0 0 1.625rem;
}

span,
.nowrap {
    white-space: nowrap;
}

h1 {
    color: #0065bd;
    font-size: 1.625rem;
    margin: 1.25rem 0;
}

h2 {
    padding: 0.75rem 1.625rem 0.75rem 1.625rem;
    background-color: #e6e6e6;
    margin: 0 0 1.062rem;
    font-size: 1.25rem;
    line-height: 143%;
    color: #0065bd;
}

ul {
    list-style: none;
    margin: 0 0 1.625rem;
    padding: 0;
}

ul li {
    margin-left: 1.062rem;
    position: relative;
    margin-bottom: 0.375rem;
    line-height: 143%;
}

ul li:before {
    content: " ";
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    top: 0.562rem;
    left: -1.062rem;
}

header {
    padding: 1.5rem 1.625rem 1.062rem;
}

.logo a {
    display: block;
}

.logo a:hover {
    opacity: 0.62;
}

header,
.section {
    margin-bottom: 1.062rem;
    background-color: #fff;
    border: 0.062rem solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 0 1.625rem rgba(0, 0, 0, .125)
}

.box {
    padding: 0 1.625rem;
}

a.apply {
    font-size: 1.062rem;
    line-height: 1.625rem;
    color: #fff;
    background-color: #0065bd;
    border: 0.125rem solid #0065bd;
    padding: 0.5rem 12%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0.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: 0.125rem solid #0065bd;
    text-decoration: none;
}

.slider {
    position: relative;
    border: 0.062rem solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 0 1.625rem rgba(0, 0, 0, .125);
    margin-bottom: 1.062rem
}

.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;
    }
}

@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;
    }
}

@media only screen and (max-width: 30rem) {
    header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}