@charset "utf-8";
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
        url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-600.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-600.woff') format('woff'),
        url('../fonts/poppins-v20-latin-600.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em 'Poppins', Arial, sans-serif;
    background: url("../images/bg.jpg") no-repeat top center fixed;
}
#wrapper {
    position: relative;
    max-width: 767px;
    margin: 1rem auto;
    border: none;
    background: #e6e6e6;
    overflow: hidden;
    webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
:is(h2, strong) {
    font-weight: 600;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
h1, h2, a.color {
    color: #009fe3;
}
p {
    padding-bottom: 1.5rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.7em;
    line-height: 1.3;
    font-weight: 400;
}
h2 {
    font-size: 1.188em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #009fe3;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.apply {
    text-align: center;
}
.apply a {
    display: inline-block;
    background: #009fe3;
    color: #fff;
    padding: 0.5rem 1.5rem;
    margin: 1rem 0;
    font-weight: 600;
}
.apply a:hover {
    background: #333333;
}
.slider img {
    width: 100%;
}
.slider {
    position: relative;
}
.slider img:first-child {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
}
.slider img:not(:first-child) {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}
.slider img:first-child:nth-last-child(3),
.slider img:first-child:nth-last-child(3)~img {
    animation-duration: 15s;
    animation-delay: 5s;
    animation-iteration-count: infinite;
}
.slider img:nth-child(3):nth-last-child(1) {
    animation-name: fade-3-3;
}
.slider img:first-child:nth-last-child(2),
.slider img:first-child:nth-last-child(2)~img {
    animation-duration: 10s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}
@keyframes fade-3-3 {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 0;
        animation-timing-function: ease-out;
    }
    33% {
        opacity: 0;
        animation-timing-function: linear;
    }
    42% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    66% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    84% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        animation-timing-function: linear;
    }
}
article, footer {
    padding: 2rem 3.75rem;
}
footer {
    background: #000;
}
footer p {
    color: #fff;
}
footer p:last-of-type {
    font-size: 0.875em;
    line-height: 1.5;
}
figure {
    margin: 0;
}
@media only screen and (max-width:766px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    article, footer {
        padding: 2rem;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding: 1rem;
    }
}