@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: 600;
    src: url('../fonts/open-sans-v44-latin-600.eot');
    src: url('../fonts/open-sans-v44-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-600.woff') format('woff'), url('../fonts/open-sans-v44-latin-600.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-600.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');
}
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #333;
    font: 1.0625em/1.4em 'Open Sans', Arial, sans-serif;
}
h1, strong {
    font-weight: 600;
}
#wrapper {
    position: relative;
    max-width: 845px;
    margin: 1rem auto;
    border: 1px solid #ee7202;
    background-color: #fff;
    box-shadow: 0 0 8px #666;
    overflow: hidden;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0 0 2rem;
    font-size: 1em;
    line-height: 1.1;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h2, p a.orange {
    color: #ee7202;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #ee7202;
    text-decoration: underline 1px dotted #ee7202;
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

li {
    padding: 0 0 0.5rem 1rem;
}

li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: -1px 0 0 -1rem;
    color: #ee7202;
}
@-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%; }
}
.slides { overflow: hidden; }
.slides figure img { width: 25%; float: left; }
.slides 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; 
}
.content {
    padding: 30px 50px 30px;
}
header{
    position: relative;
    padding: 0;
    background: #ededee;
}
.logo {
    padding: 1rem 50px;
}
img {
  max-width: 100%;
  height: auto;
}
a.apply {
    display: block;
    width: fit-content;
    margin: 1rem 0;
    padding: 0.5rem 1.5rem;
    border: 1px solid #ee7202;
    background: #ee7202;
    color: #fff;
}
@media only screen and (max-width:844px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    :is(p, ul) {
        hyphens: auto;
    }

    a.apply {
        margin: 1rem auto;
    }
}

@media only screen and (max-width:480px) {
    .content {
        padding: 1rem;
    }
}