@charset "utf-8";

@font-face {
    font-family: "Dk cinnabar brush";
    src: url("../fonts/xak1347dex_e009.ttf") format("truetype");
    font-weight: 100;
}

@font-face {
    font-family: "Spartan_ff";
    src: url("../fonts/l7gfbjR61M69yt8Z2QKtlA.woff2") format("woff");
}

* {
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

body {
    color: #534f4c;
    font-family: 'Spartan', 'Spartan_ff', Arial, sans-serif;
    font-size: 0.813em;
    line-height: 1.431em;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    background-color: #CACDCE;
    overflow: hidden;
    box-shadow: 0 0 1.625rem #666;
}

header {
    padding: 1rem 2rem;
    background-color: #383c41;
}

article {
    padding: 0 3rem;
}

footer {
    padding: 0 3rem 1rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

p {
    text-align: justify;
}

p strong {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

span {
    white-space: nowrap
}

h1 {
    font-size: 2.292em;
    line-height: 1.231em;
    font-family: 'Dk cinnabar brush';
    text-transform: uppercase;
    color: #853e29;
    padding-bottom: 1rem;
    font-weight: 400;
}

h2 {
    font-size: 1.531em;
    line-height: 1.231em;
    margin-bottom: 0;
    font-family: "Dk cinnabar brush";
    position: relative;
    font-weight: 400;
}

a:link,
a:active,
a:visited {
    color: #534f4c;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
}

.italic {
    font-style: italic;
}

.secondary_color {
    color: #853e29;
    font-weight: bold;
}

span {
    display: inline-block;
}

.slider {
    position: relative;
    margin: 0 0 1.25rem;
}

.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;
    }
}

@media only screen and (max-width:49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
        padding: 1rem;
    }

    .flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .flex > p {
        margin: 1rem 0 0;
    }

    article,
    footer {
        padding: 0;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    p {
        text-align: left;
    }
}

@media only screen and (max-width:31.875rem) {
    h1 {
        font-size: 1.692em;
        text-align: center;
        padding-bottom: 0
    }
}

@media only screen and (max-width:23.4375rem) {
    header img {
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}