@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3C3C3C;
    font: 400 1em/1.5em Arial, sans-serif;
        background: #EDEDEB url('../images/bg.jpg') no-repeat fixed;
        background-size: cover;
}
#wrapper {
    position: relative;
    max-width: 790px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #009fe3;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1em;
    line-height: 1.3;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin: 1rem 0 0.5rem;
    color: #009fe3;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    position: relative;
}
.logo {
    padding: 1rem;
}
header > img {
    opacity: 0;
}
.slideshow {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: 0;
    padding:0;
}
.slideshow li {
    padding:0;
}
.slideshow li:before {
    display:none;
}
.slideshow li span {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    opacity: 0;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation: image 15s linear infinite;
    animation: image 15s linear infinite;
}
@keyframes image {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        opacity: 1;
    }
    42% {
        opacity: 0;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes image {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        opacity: 1;
    }
    42% {
        opacity: 0;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        opacity: 0;
    }
}
.slideshow li {
    margin:0;
    padding:0;
    list-style: none;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
}
.slideshow li:nth-child(1) span {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.slideshow li:nth-child(2) span {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
.slideshow li:nth-child(3) span {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}
main {
    padding: 3.75rem;
}
a.apply {
    padding: 0.625rem 1.25rem;
    background: #009fe3;
    color: #fff;
    display: block;
    margin: 1rem 0 0;
    width: fit-content;
}
@media only screen and (max-width:789px) {
    #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;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    main {
        padding: 2rem;
    }
    a.apply {
        margin: 1rem auto 0;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem;
    }
}