@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 17px;
    line-height: 143%;
    background-color: #EEEEEE;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    overflow: hidden;
    background: #eee;
    display: block;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.red {
    color: #cc1e1c;
    text-decoration: underline 0.992px dotted #333;
}

a.red:hover {
    color: #cc1e1c;
    text-decoration: underline 0.992px solid #cc1e1c;
}

a.logo_link:hover {
    opacity: 0.6;
}

p {
    margin: 0 0 26px;
}

.nowrap {
    white-space: nowrap;
}

.last {
    margin: 0;
}

p,
ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

h1 {
    font-size: 20.992px;
    margin: 0 0 26px;
}

h2 {
    font-size: 20px;
    color: #cc1e1c;
    margin-bottom: 8px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    padding: 0 0 8px 18px;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -18px;
    font-size: 1.375em;
    line-height: 1.1;
}

.logo {
    max-width: 1012px;
    margin: 16px auto;
    padding: 16px;
    display: flex;
}

.images {
    max-width: 1012px;
    margin: 16px auto 26px;
    padding: 0 16px;
}

.slider {
    position: relative;

}

.slider:before {
    content: " ";
    width: 200%;
    height: 44%;
    background-color: #cc1e1c;
    position: absolute;
    top: 30%;
    left: -50%;
}

.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

article {
    max-width: 1012px;
    margin: 16px auto;
    padding: 0 16px;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 51%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section {
    background-color: #fff;
    border: 0.992px solid #bbb;
    padding: 26px;
    margin-bottom: 26px;
}

footer {
    max-width: 1012px;
    margin: 16px auto;
    padding: 0 16px;
    display: block;
}

a.apply {
    display: block;
    line-height: 26px;
    text-decoration: none;
    background-color: #cc1e1c;
    border: 2px solid #cc1e1c;
    padding: 8px 17%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 26px auto 52.992px;
    border-radius: 0.992px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    width: fit-content;
}

a.apply:hover {
    color: #cc1e1c;
    background-color: transparent;
    border: 2px solid #cc1e1c;
    text-decoration: none;
}

@media only screen and (max-width: 1011px) {
    body {
        font-size: 16px;
    }

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    a.apply {
        margin: 1rem auto 0;
    }
}

@media only screen and (max-width: 768px) {
    .logo {
        justify-content: center;
    }

    p,
    h1 {
        margin: 0 0 20px;
    }

    h2 {
        font-size: 17px;
    }

    .images {
        margin: 0 0 16px;
    }

    .section {
        margin-bottom: 16px;
        padding: 16px;
    }

}