@charset "utf-8";

:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v32-latin-regular.woff') format('woff'), url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), url('../fonts/roboto-v32-latin-700.woff') format('woff'), url('../fonts/roboto-v32-latin-700.ttf') format('truetype'), url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.938rem;
    line-height: 1.3;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 0 0.625rem #ccc;
    box-shadow: 0 0 0.625rem #ccc;
}

h1 {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #0095c8;
    font-weight: 700;
}
h1 small{
	font-weight: normal;
}
h2 {
    font-size: 0.938rem;
    color: #0095c8;
    margin: 0 0 1rem;
    font-weight: 700;
}

h3 {
    font-size: 0.938rem;
    color: #0095c8;
    margin: 0 0 0.625rem;
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #467886;
}

p {
    margin: 1rem 0;
}

strong {
    font-weight: 700;
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

ul li {
    padding-left: 0.875rem;
}

ul li:before {
    content: "\25a0";
    float: left;
    margin-left: -0.875rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #3593C6;
    font-family: "Arial", sans-serif
}

header {
    padding: 1.5rem 1.5rem 0;
}

.white {
    padding: 0 1.5rem;
}

.details {
    background: #3593C6;
    display: flex;
    column-gap: 6rem;
    align-items: flex-start;
    padding: 0.5rem 1rem;
    margin: 0 0 1.5rem;
    width: 64%;
}

.detail p,
.detail i {
    color: #fff;
}

.detail p {
    margin: 0;
}

.detail {
    display: flex;
    column-gap: 0.625rem;
    flex-direction: row;
}

.line {
    display: block;
    border-top: solid 1px #3593C6;
    margin: 0 0 1.5rem auto;
}

.line_small {
    width: 50%;
}

.line_medium {
    width: 60%;
}

.line_big {
    width: 70%;
}

footer {
    padding: 0 1.5rem 1.5rem;
}

a.apply {
    display: block;
    background: #3593C6;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 0.625rem 1.5rem;
    width: fit-content;
}

.slider {
    position: relative;
    margin: 0 0 1rem;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 12s linear infinite 0s;
}

.slider > img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider > img:nth-of-type(2) {
    animation-delay: 6s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }
}

@media only screen and (max-width: 48.95rem) {
    #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;
    }

    h1 span {
        white-space: nowrap
    }

    header {
        padding: 0;
    }

    .white {
        padding: 0;
    }

    .details {
        margin: 0 0 1rem;
    }

    .line {
        margin: 0 0 1rem auto;
    }

    footer {
        padding: 0;
        text-align: center
    }
}

@media only screen and (max-width: 43.75rem) {
    h1 {
        font-size: 20px
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 15px
    }

    :is(a:link, a:visited, a:hover, a:active) {
        white-space: pre-wrap;
    }

    .details {
        width: 100%;
        column-gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .detail {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .detail p {
        text-align: center;
        margin: 0.375rem 0;
    }
}

@media only screen and (max-width: 23.438rem) {
    a.apply {
        width: 100%;
    }
}
