@charset "utf-8";

:root {
    font-size: 15px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: rgb(94, 118, 123);
    font: 400 1em/1.6 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: #632F8B;
}

h2 {
    font-size: 1.267em;
    line-height: 1.263;
    margin-bottom: 0;
    color: #632F8B;
}

.padding-bottom {
    padding-bottom: 0.75rem;
}

:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    padding: 0.5rem 0 0 1rem;
    list-style: none;
}

ul li:before {
    content: "\25A0";
    color: #632F8B;
    font-size: 0.667rem;
    float: left;
    margin: 2px 0 0 -0.9375rem;
}

header {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    background: #DDDDDD;
}

article a.apply:hover {
    background: #fff;
    color: #632F8B;
}

article a.apply {
    background: #632F8B;
    font-size: 1.2em;
    line-height: 1.333;
    text-align: center;
    color: #fff;
    border: solid 2px #632F8B;
    padding: .7rem 2rem;
    display: block;
    width: 230px;
    margin: 2rem auto 1rem;
}

@-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%;
    }
}

section {
    overflow: hidden;
}

section figure img {
    width: 20%;
    float: left;
}

section figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 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 {
    background: #fff;
    margin: 0 0 .5rem;
    padding: 1rem 1.5rem;
}

h3 {
    font-size: 1.267em;
    line-height: 1.263;
    margin-bottom: 0;
}

.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%;
    border: none;
    display: block;
}

footer p {
    text-align: center;
}

footer {
    background: #fff;
    padding: 1rem;
}

@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    :is(h1, .title p) {
        text-align: center;
    }

    p span {
        display: inline-block;
    }
}

@media only screen and (max-width:480px) {

    .title,
    .box,
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}