@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;
}

* {
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.431em;
    background-image: linear-gradient(#ccc, #000);
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    overflow: hidden;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
    color: #C1001F;
}

a.link {
    max-width: 12.5rem;
    line-height: 3.125rem;
    display: block;
    text-align: center;
    background: #C1001F;
    margin: 1.5rem auto 1rem;
    color: #fff;
    text-decoration: none;
}

a.link:hover {
    background-color: #666;
}

a.color {
    color: #0000FF;
    background: none
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    text-align: left;
}

.nowrap {
    white-space: nowrap;
}

h1 {
    font-size: 1.612em;
    line-height: 1.1;
    hyphens: none;
}

h2 {
    text-align: center;
    font-size: 1.992em;
    line-height: 1.1;
    margin: 0 0 1rem;
}

h3 {
    font-size: 1.231em;
    line-height: 1.231em;
    margin-bottom: 0;
    color: #C1001F;
}

ul {
    padding-left: 1.5rem;
}

ul li {
    padding-bottom: 0.2rem;
    list-style-type: none;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    top: 0.5rem;
    margin-left: -1.25rem;
    border-left: 0.25rem solid #C1001F;
    border-top: 0.25rem solid transparent;
    border-bottom: 0.25rem solid transparent;
}

.center {
    text-align: center;
    margin: 0.375rem 0
}

header {
    padding: 0.5rem 1.5rem;
    margin: 0 1rem 1rem;
    background-color: #fff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: start;
}

.title {
    width: 68%;
}

.title p span {
    display: inline-block;
    margin-right: 1.5rem;
}

.fa-location-dot,
.fa-clock {
    font-size: 1.131em;
    padding-right: 0.5rem;
}

.logo {
    margin: 1rem 0 0 1.25rem;
}

.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;
    }
}

article {
    padding: 0 1rem;
}

article section {
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    background-color: #fff;
}

.color {
    background-color: #EFEFEF;
}

footer {
    padding: 0.5rem 1.5rem;
    margin: 1rem;
    background-color: #EFEFEF;
}

footer p {
    text-align: center;
}

span {
    display: inline-block;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 43%;
    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.9375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul {
        padding-left: 1.125rem;
    }

    ul li:before {
        margin-left: -1rem;
    }

    header {
        margin: 0 0 0.5rem;
    }

    article {
        padding: 0
    }

    article section {
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
    }

    footer {
        padding: 0.5rem 1rem;
        margin: 0.5rem 0 0;
    }
}

@media only screen and (max-width: 43.75rem) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        margin: 0;
        padding: 0.625rem 0 0;
        font-size: 1.7rem;
        line-height: 1.3
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .title {
        width: 100%
    }

    .title p,
    h1 {
        text-align: center;
        line-height: 1.3
    }

    .title p span {
        display: block;
        margin: 0
    }

    .title p span:first-of-type {
        margin-bottom: 0.625rem
    }

    .logo {
        margin: 1rem 0 0;
    }
}