@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 Slab';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-slab-v34-latin-regular.eot');
    src: url('../fonts/roboto-slab-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v34-latin-regular.woff2') format('woff2'), url('../fonts/roboto-slab-v34-latin-regular.woff') format('woff'), url('../fonts/roboto-slab-v34-latin-regular.ttf') format('truetype'), url('../fonts/roboto-slab-v34-latin-regular.svg#RobotoSlab') 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: .937rem;
    line-height: 1.5;
    font-weight: 400
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    border: none;
    padding: .5rem 0 0;
    overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

span {
    white-space: nowrap
}

h1 {
    font-family: 'Roboto Slab', "Times New Roman", serif;
    text-align: center;
    font-size: 1.625rem;
    line-height: 1.3;
    margin: 0.625rem 0;
    color: #CB4249;
    font-weight: 400;
}

h2 {
    font-size: 1.062rem;
    color: #018BB9;
    font-weight: 400;
    font-family: 'Roboto Slab', "Times New Roman", serif;
    margin: .875rem 0
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\25A0";
    float: left;
    margin: 0.044rem 0 0 -1.375rem;
    font-size: .75rem;
    line-height: 1.5;
    color: #CB4249;
}

header {
    padding: 1rem 1.187rem 2.25rem;
    display: flex;
    justify-content: flex-start;
    max-width: 50rem;
    margin: 0 auto;
}

@keyframes slidy {
    0% {
        margin-left: 0;
    }

    20% {
        margin-left: 0;
    }

    25% {
        margin-left: -100%;
    }

    45% {
        margin-left: -100%;
    }

    50% {
        margin-left: -200%;
    }

    70% {
        margin-left: -200%;
    }

    75% {
        margin-left: -300%;
    }

    100% {
        margin-left: -300%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    animation: slidy 20s infinite alternate linear;
}

figure img {
    width: 20%;
    float: left;
}

article {
    max-width: 50rem;
    margin: 1rem auto;
}

article,
footer {
    padding: 0 1.187rem;
}

article p:first-of-type {
    margin: 1.25rem 0
}

.flex {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0 0 1.25rem;
}

.flex p {
    width: 50%;
}

.button {
    display: flex;
    justify-content: center;
    margin: 1.25rem 0 2.4rem;
}

.button a {
    background-color: #018BB9;
    color: #fff;
    width: 10.625rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
}

.button a:hover {
    color: #EE2627;
}

footer {
    position: relative;
    background-color: #018BB9;
    padding: 1.5rem 1rem;
}

.blue {
    max-width: 50rem;
    margin: 0 auto;
}

footer p {
    color: #FFF;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        font-size: 1.375rem;
        line-height: 1.2
    }

    br {
        display: none
    }
    
    .block, h1 br {
        display: block
    }

    h2 {
        margin: .875rem 0 .312rem
    }

    header {
        justify-content: center;
        padding: 0 0 1rem
    }

    article {
        padding: 0;
    }

    article p:first-of-type {
        margin: 1rem 0;
    }

    .flex p {
        width: 80%;
    }

    .button {
        margin: 1.25rem 0 1.5rem;
    }

    footer {
        padding: 1rem 1rem .5rem;
        margin: 0
    }

    footer p {
        text-align: center;
    }
}

@media only screen and (max-width: 400px) {
    .flex {
        flex-direction: column;
        gap: 0;
    }

    .flex p {
        width: 100%
    }
}