@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v30-latin-500.eot');
    src: url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-500.woff2') format('woff2'), url('../fonts/roboto-v30-latin-500.woff') format('woff'), url('../fonts/roboto-v30-latin-500.ttf') format('truetype'), url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.ins {
    color: #0000ff;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-size: .937rem;
    line-height: 1.4;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: 0.0625rem solid #D2D2D2;
    padding: 0 0.625rem;
    background-color: #fff;
    overflow: hidden;
}

p {
    margin: 0 0 0.625rem;
}

h1 {
    text-align: center;
    color: #fcc514;
    font-size: 22px;
    line-height: 1.1;
    margin: 0 0 .937rem;
    font-weight: 500;
}

h2 {
    color: #fcc514;
    font-size: 1rem;
    line-height: 1.4;
    margin: .937rem 0;
}

h3 {
    font-weight: 400;
    font-style: italic;
    color: #000;
    font-size: 1rem;
}

hr {
    border-top: 0.0625rem solid #fcc514;
    margin: .937rem 0;
}

ul {
    margin: 0.75rem 0 1rem 1.75rem;
}

ul li::marker {
    color: #fcc514;
    font-size: 1.1rem;
}

.center {
    text-align: center
}

main {
    border: 0.0625rem solid #000;
    position: relative;
    z-index: 0;
    background-color: #fff;
}

.logo {
    margin: .937rem auto;
    display: block;
    width: fit-content;
}

article {
    box-shadow: .062rem .062rem .687rem #757070;
    padding: 1.562rem;
    margin: 0 1.25rem;
    z-index: 10;
    background-color: #fff;
}

section {
    padding: 2rem 2.5rem 1rem 2rem;
    margin: 1.875rem 0 0;
    background: #EEEEEE;
}

:is(header, footer) p {
    text-align: center;
}

.button a {
    margin: 1.875rem auto 2.187rem;
    border: solid 0.0625rem #009fe3;
    color: #FFF;
    background: #009fe3;
    border-radius: .187rem;
    cursor: pointer;
    padding: .437rem 3.75rem;
    text-shadow: none;
    font-weight: 500;
    font-size: 1.125rem;
    display: block;
    width: fit-content;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    22% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    47% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    72% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    97% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    z-index: -1;
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: 24s slidy infinite;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
    margin: 0;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure img {
    width: 20%;
    float: left;
}

@media only screen and (max-width:49.9375rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    article {
        padding: 0.625rem 1rem;
        margin: 0 1rem;
    }
}

@media only screen and (max-width:37.4375rem) {
    h1 {
        font-size: 21px;
    }

    .button a {
        margin: 1rem auto 1.25rem;
    }

    section {
        margin: 0.625rem 0 0;
        padding: 0.625rem 0.9375rem;
    }

    section br:last-of-type {
        display: none
    }

    article {
        margin: 0;
    }
}