@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.eot');
    src: 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: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    src: 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');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/open-sans-v44-latin-800.eot');
    src: url('../fonts/open-sans-v44-latin-800.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-800.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-800.woff') format('woff'), url('../fonts/open-sans-v44-latin-800.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-800.svg#OpenSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333;
    font: 400 0.875em/1.3em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1170px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #666;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.25em;
    line-height: 1.1em;
    background: #fc0;
    padding: 10px;
    font-weight: 800;
}
h2 {
    font-size: 1rem;
    line-height: 1.3em;
    margin-bottom: 0.75rem;
    color: #666;
}
h2 span {
    color: #ffcc00;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2.5rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
.logo {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}

@keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
header section {
    overflow: hidden;
    margin-bottom: 1rem;
}
header section figure img { width: 25%; float: left; }
header section figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 15s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 15s slidy infinite; 
}
article {
    display: flex;
    justify-content: space-between;
}
.left {
    width: 66.66667%;
}
.right {
    width: calc(33.33333% - 2rem);
}
.box {
    padding: 1rem 1rem 0;
    margin-bottom: 1rem;
    background: #f3f2f2;
}
i {
    font-size: 2em;
    margin: 0.75rem;
}
.social {
    margin-bottom: 1rem;
}
a.apply {
    display: block;
    width: fit-content;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border: 1px solid #ffcc00;
    background: #ffcc00;
    color: #333;
}
a.apply.grey {
    border: 1px solid #666;
    background: #666;
    color: #fff;
}
@media only screen and (max-width: 1169px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -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) {
    .logo {
        justify-content: center;
    }
    article {
        flex-direction: column;
    }
    .left, .right {
        width: auto;
    }
    a.apply {
        margin: 1rem auto;
    }
}
@media only screen and (max-width:480px) {
    h1 {
        font-size: 1.75em;
    }
    li {
        padding-left: 1rem;
    }
}