* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

body {
    color: #000;
    font-size: 1rem;
    line-height: 21px;
    font-family: 'Roboto Condensed', sans-serif;
    background: url("../images/background.jpg") top center no-repeat;
    background: linear-gradient(to bottom, #ffffff03 300px, #fff 700px), url("../images/background.jpg") top center no-repeat;
}

#wrapper {
    position: relative;
    max-width: 834px;
    margin: 1rem auto;
    border: 1px solid #E3E5E8;
    overflow: hidden;
    background-color: #fff;
}

.info {
    padding: 10px 24px 20px;
}

header p {
    margin: 0 0 4px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

header p span {
    min-width: 22px;
    display: flex;
    justify-content: center;
    font-size: 14px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex section:first-of-type {
    width: 41%;
}

.flex section:last-of-type {
    width: 59%;
}

article {
    padding: 10px 24px 0;
}

.box {
    padding: 0 0 34px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.color {
    color: #920c2f;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding: 30px 0 40.82%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    padding: 0 24px;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

footer p {
    text-align: right;
}

.button {
    margin: 0 0 22px;
}

.button a {
    display: inline-block;
    padding: 10px 20px;
    background: #444648;
    color: #fff !important;
}

.button a:hover {
    background: #7C878E;
    text-decoration: none;
    color: #FFF;
}

:is(h1, h2) {
    font-weight: 400;
    color: #920c2f;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 50px;
    line-height: 50px;
}

h2 {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 40px;
    padding-top: 15px;
}

p:not(.box p) {
    margin: 0 0 1.5rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 20px 16px;
    list-style: none;
}

ul li {
    padding-left: 18px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-indent: -18px;
}

.slide {
    position: relative;
    border: 1px solid rgba(220, 223, 226, 0.8);
    margin: 16px 0;
}

.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:834px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    .info {
        padding: 16px;
    }

    :is(article, footer) {
        padding: 0 16px;
    }

    .iframe-wrapper {
        padding: 30px 0 56.25%;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    :is(p, ul, h1) {
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media all and (max-width:600px) {
    .link {
        white-space: normal !important;
        word-break: break-all;
    }
}

@media all and (max-width:480px) {
    .flex {
        flex-direction: column;
    }

    .flex section {
        width: 100% !important;
    }

    h1 {
        margin-top: 0;
        font-size: 30px;
        line-height: 34px;
    }

    ul {
        margin-left: 0;
    }
}