@charset "utf-8";
:root {
    font-size: 15px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #5E767B;
    font: 1em/1.6em Arial, sans-serif;
    background: #ebebeb;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    overflow: hidden;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.467em;
    line-height: 1.182;
    color: #09BBEC;
}
h2 {
    font-size: 1.267em;
    line-height: 1.263;
    color: #09BBEC;
}
h3 {
    font-size: 1.267em;
    line-height: 1.263;
}
.pb {
    padding-bottom: 0.75rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0.5rem 0 0 1rem;
    list-style: none;
}
ul li:before {
    content: "\25A0";
    color: #09BBEC;
    font-size: 0.667rem;
    float: left;
    margin: 2px 0 0 -0.9375rem;
}
header {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    background: #DDDDDD;
}
a.apply:hover {
    background: #fff;
    color: #09BBEC;
}
a.apply {
    background: #09BBEC;
    font-size: 1.2em;
    line-height: 1.333;
    text-align: center;
    color: #fff;
    border: solid 2px #09BBEC;
    padding: .7rem 2rem;
    display: block;
    width: 230px;
    margin: 2rem auto 1rem;
    text-transform: uppercase;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    12.5% {
        left: 0%;
    }
    25% {
        left: -100%;
    }
    37.5% {
        left: -100%;
    }
    50% {
        left: -200%;
    }
    62.5% {
        left: -200%;
    }
    75% {
        left: -300%;
    }
    87.5% {
        left: -300%;
    }
    100% {
        left: -400%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    12.5% {
        left: 0%;
    }
    25% {
        left: -100%;
    }
    37.5% {
        left: -100%;
    }
    50% {
        left: -200%;
    }
    62.5% {
        left: -200%;
    }
    75% {
        left: -300%;
    }
    87.5% {
        left: -300%;
    }
    100% {
        left: -400%;
    }
}
.slider {
    overflow: hidden;
}
.slider figure img {
    width: 20%;
    float: left;
}
.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 20s;
    -webkit-animation-delay: 3s;
    -webkit-animation-iteration-count: infinite;
    animation: 20s slidy infinite;
}
i {
    margin-right: 0.625rem;
}
.title {
    background: #fff;
    padding: 2rem;
}
.box-white {
    background: #fff;
    margin: 0 0 0.5rem;
    padding: 1rem 1.5rem;
}
.fa-solid {
    font-size: 3.2em;
}
.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
footer p {
    text-align: center;
}
footer {
    background: #fff;
    padding: 1rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1, .title p, h3 {
        text-align: center;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    .title, .box-white, footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}