@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3a434f;
    font: 400 0.875em/1.5em Arial, sans-serif;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px) fixed, url("../images/bg_body.jpg") no-repeat top center fixed;
}
#wrapper {
    position: relative;
    max-width: 832px;
    margin: 4.5em auto;
    overflow: hidden;
}
p {
    padding-bottom: 0.625rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 1em;
    line-height: 1.3;
}
h1 small {
    display: block;
    font-size: 0.8em;
}
h2 {
    font-size: 1rem;
    line-height: 1.3em;
    margin: -0.9375rem -0.9375rem 0.625rem;
    padding: 0.5rem 0.9375rem;
    text-transform: uppercase;
    color: #333333;
    background: #F5F5F5;
}
ul {
    padding: 0 0 0.625rem 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
ul ul {
    padding: 0 0 0 2rem;
}
ul ul li:before {
    content: "\2092";
    font-size: 1em;
    margin-top: -3px;
}
.hl {
    font-weight: 700;
    text-transform: uppercase;
}
header p {
    color: #7f7f7f;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.3;
    padding: 0.5rem;
}
footer {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}
a.apply {
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #ffffff;
    background-color: #7aae1a;
    border-color: transparent;
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 1.125em;
    line-height: 1.4;
    border-radius: 3px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin: 1rem 0 6rem;
}
a.apply:hover {
    background: #6A9817;
}
.slider, .box {
    box-shadow: 0px 0px 20px -12px rgba(0, 0, 0, 1);
    background: #fff;
}
.box {
    padding: 0.9375rem 0.9375rem 0.25rem;
    border: 1px solid rgba(220, 223, 226, 0.8);
    border-radius: 5px;
}
.slider, .box {
    margin-bottom: 0.625rem;
}
.slider {
    position: relative;
    border: 1px solid rgba(220, 223, 226, 0.8);
    border-radius: 3px;
}
.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: 4s;
}
.slider>img:nth-of-type(3) {
    animation-delay: 8s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}
@keyframes fade-2-1 {
    0% {
        opacity: 1;
        animation-timing-function: ease-in;
    }
    45% {
        opacity: 1;
        animation-timing-function: ease-in;
    }
    55% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    92% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-2-2 {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    45% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    55% {
        opacity: 1;
        animation-timing-function: ease-in;
    }
    92% {
        opacity: 1;
        animation-timing-function: ease-in;
    }
    100% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
}
@media only screen and (max-width:831px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
