@charset "utf-8";
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans-v12-latin-regular.eot');
    src: local(''),
        url('../fonts/nunito-sans-v12-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nunito-sans-v12-latin-regular.woff2') format('woff2'),
        url('../fonts/nunito-sans-v12-latin-regular.woff') format('woff'),
        url('../fonts/nunito-sans-v12-latin-regular.ttf') format('truetype'),
        url('../fonts/nunito-sans-v12-latin-regular.svg#NunitoSans') format('svg');
}
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-sans-v12-latin-700.eot');
    src: local(''),
        url('../fonts/nunito-sans-v12-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nunito-sans-v12-latin-700.woff2') format('woff2'),
        url('../fonts/nunito-sans-v12-latin-700.woff') format('woff'),
        url('../fonts/nunito-sans-v12-latin-700.ttf') format('truetype'),
        url('../fonts/nunito-sans-v12-latin-700.svg#NunitoSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3C3C3C;
    font: 400 1.063em/1.5em 'Nunito Sans', Arial, sans-serif;
    background: url('../images/bg.jpg') fixed top left no-repeat;
    background-size: cover;
}
h1, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1.5rem auto;
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 0px 25px -12px rgba(0, 0, 0, 0.5);
    padding: 2.1875rem;
}
p {
    padding-bottom: 1.25rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline 1px dotted #CC1E1C;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0.5rem 0 0;
    font-size: 1.8em;
    line-height: 1.3;
    color: #CC1E1C;
}
.hl{
    color: #CC1E1C;
    font-size: 1.313em;
    line-height: 1.3;
}
h2 {
    font-size: 1.188em;
    line-height: 1.3em;
    margin: 1rem 0 0.5rem;
    font-weight: 500;
}
h2, a.color {
    color: #cc1e1c;
}
h3 {
    font-size: 1em;
    line-height: 1.3em;
    text-decoration: underline;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "›";
    font-size: 1.3em;
    line-height: 1;
    float: left;
    margin: -1px 0 0 -1rem;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    25% {
        left: 0%;
    }
    50% {
        left: -100%;
    }
    75% {
        left: -100%;
    }
    100% {
        left: -200%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    25% {
        left: 0%;
    }
    50% {
        left: -100%;
    }
    75% {
        left: -100%;
    }
    100% {
        left: -200%;
    }
}
header section {
    overflow: hidden;
    margin: 2rem -2.1875rem;
}
header section figure img {
    width: 33.333333%;
    float: left;
}
header section figure {
    position: relative;
    width: 300%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 18s;
    -webkit-animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation: 18s slidy infinite;
}
a.ins {
    color: #cc1e1c;
    text-decoration: underline;
}
a.apply {
    display: block;
    max-width: 272px;
    padding: 0.5rem;
    background: #cc1e1c;
    color: #fff;
    margin-top: 1rem;
    font-weight: 700;
    text-align: center;
}
@media only screen and (max-width:799px) {
    #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;
    }
    h1 br{
        display: none;
    }
}
@media only screen and (max-width:780px) {
    #wrapper {
        padding: 2rem;
    }
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header section {
        overflow: hidden;
        margin: 2rem -2rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    header section {
        overflow: hidden;
        margin: 1rem -1rem;
    }
}