:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), 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');
}
html {
    min-height: 100%;
}

body {
    color: #000;
    font: 400 1em/1.3 'Roboto', Arial, sans-serif;
}

#wrapper {
    max-width: 910px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
}

article {
    padding: 20px 45px 1px;
}

.iframe_wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.iframe_wrapper iframe {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 15px;
}

p {
    margin: 0 0 16px;
}

h1, h2, strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    color: #B30000;
}

h2 {
    line-height: 22px;
    font-size: 18px;
    color: #20376d;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #467886;
    text-decoration: none;
    white-space: nowrap;
}

.button {
    background: #B30000;
    color: #fff !important;
    border-radius: 5px;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    margin-bottom: 50px;
}

ul {
    padding: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #20376d;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.logo {
    padding: 20px 45px;
    display: flex;
    justify-content: flex-end;
}

.slide {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

.slide img {
    vertical-align: bottom;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    6.6% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
    }

    39.9% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.slide img:nth-of-type(1) {
    position: relative;
}

.slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 15s linear 0s infinite normal forwards;
}

.slide img:nth-child(2) {
    animation-delay: 5s;
}

.slide img:nth-child(3) {
    animation-delay: 10s;
}

@media all and (max-width: 909px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    .logo {
        padding: 16px;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 0 16px 16px;
    }
}