@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-latin-regular.eot');
    src: url('../fonts/nunito-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'), url('../fonts/nunito-v32-latin-regular.woff') format('woff'), url('../fonts/nunito-v32-latin-regular.ttf') format('truetype'), url('../fonts/nunito-v32-latin-regular.svg#Nunito') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-v32-latin-700.eot');
    src: url('../fonts/nunito-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-700.woff2') format('woff2'), url('../fonts/nunito-v32-latin-700.woff') format('woff'), url('../fonts/nunito-v32-latin-700.ttf') format('truetype'), url('../fonts/nunito-v32-latin-700.svg#Nunito') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: "Nunito", Arial, Helvetica, sans-serif;
    font-size: 1.063rem;
    line-height: 1.4;
    background: linear-gradient(to top, #fff 0%, transparent 80%), url(../images/bg.jpg) top center /cover no-repeat;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.26);
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: underline 1px dotted #f93822;
    white-space: nowrap;
}

article a:hover {
    color: #f93822;
    text-decoration: underline;
}

a.link {
    color: #f93822;
    text-decoration: none;
}

a.link:hover {
    opacity: 0.62;
}

article p {
    margin-bottom: 1.625rem;
}

h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    text-align: center;
    padding-bottom: 1.625rem;
    text-transform: uppercase;
}

h2 {
    color: #003a42;
    font-size: 1.313rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

ul {
    list-style: none;
    margin: 0 0 1.625rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: '\25A0';
    float: left;
    margin-left: -1rem;
    font-size: .7rem;
    line-height: 2;
}

.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;
    }
}

.button {
    display: flex;
    justify-content: center;
}

.button a {
    display: inline-block;
    font-size: 15px;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    background-color: #f93822;
    border: 2px solid #f93822;
    padding: 8px 30px;
    transition: all 0.5s;
    margin-top: 26px;
    margin-bottom: 53px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.button a:hover {
    color: #f93822;
    background-color: #fff;
    text-decoration: none;
}

header {
    display: flex;
    padding: 1.063rem 2.188rem;
}

article {
    padding: 2.188rem 2.188rem 0;
}

footer {
    padding: 2.188rem;
    background-color: #edf8f3;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.26);
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    body {
        background: none;
        font-size: 1rem;
    }

    header {
        padding: 1.063rem 2rem;
    }

    article {
        padding: 2rem 2rem 0;
    }

    footer {
        padding: 2rem;
    }
}

@media only screen and (max-width: 40rem) {

    header {
        justify-content: center;
        padding: 1.063rem 1rem;
    }

    article {
        padding: 1.563rem 1rem 0;
    }

    footer {
        padding: 1rem;
        text-align: center;
    }

    h1 {
        font-size: 1.4rem;
        padding: 0 0 1.25rem;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
        margin-bottom: .625rem;
    }

    article p,
    ul {
        margin-bottom: 1.25rem;
    }

    .button a {
        margin: 0.5rem 0 2rem;
    }
}