@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/open-sans-v44-latin-500.eot');
    src: url('../fonts/open-sans-v44-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-500.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-500.woff') format('woff'), url('../fonts/open-sans-v44-latin-500.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-500.svg#OpenSans') format('svg');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-700.woff') format('woff'), url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3C3C3C;
    font: 400 1em/1.4em 'Open 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: 790px;
    margin: 1.5rem auto;
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 0px 25px -12px rgba(0,0,0,0.5);
    padding: 2rem 3.75rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 1em;
    line-height: 1.3;
}
h1 span {
    font-weight: 400;
    display: block;
}
h2 {
    font-size: 1.125em;
    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 -3.75rem;
}
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: inline-block;
    padding: 0.5rem 1.5rem;
    background: #cc1e1c;
    color: #fff;
    margin-top: 1rem;
}
@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;
    }
}
@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;
    }
}