@charset "utf-8";

@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');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.5;
    background-color: #363636;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    background: #363636;
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    border: none;
    padding: 0.5rem 0;
}

h1 {
    font-size: 1.7em;
    line-height: 1.2;
    margin: 0.625rem 0;
}

h2 {
    color: #1a4f7a;
    font-size: 1.231em;
    line-height: 1.231em;
    margin: 0 0 .875rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

p:not(:last-child) {
    margin: 0 0 .625rem;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

header {
    background-color: #363636;
}

header section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top {
    width: 75%;
}

.top p:last-of-type {
    padding: .625rem 0 0;
}

i {
    color: #7092BE;
    margin-right: .312rem;
}

i:last-of-type {
    margin-left: .625rem;
}

article,
footer {
    background-color: #363636;
}

section {
    margin: 1rem 0;
    background-color: #FFF;
    padding: 1rem 1.5rem;
}

.color {
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    background-color: #d9eaf7;
}

article img {
    padding: 1.25rem;
}

a.btn {
    color: #fff;
    background: #e1c348;
    padding: 0.5rem 1rem;
    margin: 1rem auto;
    display: block;
    width: 30%;
    text-align: center;
    font-size: 1.05rem;
}

footer {
    text-align: center;
}

.slider {
    position: relative;
}

.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;
    }
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header section {
        margin-top: 0;
        flex-direction: column;
        text-align: center;
    }

    header img {
        margin: .625rem 0;
    }

    .flex {
        flex-direction: column;
        gap: .5rem;
    }

    .flex div {
        width: 100%;
    }

    .top {
        width: auto;
    }

    article img {
        padding: .625rem;
    }

    footer .color {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 40rem) {

    section,
    .color {
        padding: 1rem;
    }
}

@media only screen and (max-width: 37.5rem) {
    a.btn {
        width: 70%;
    }
}