﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    display: inline-block;
    white-space: nowrap;
    color: #ee1c25;
    text-decoration: underline;
}

a:hover,
a:active,
a:visited {
    text-decoration: none;
}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: .875rem;
    text-align: left;
    text-shadow: none;
}

#wrapper {
    position: relative;
    max-width: 49.375rem;
    margin: 1rem auto;
    border: solid thin #ccc;
    padding: 1.187rem;
    background-color: #fff;
    overflow: hidden;
}

hr {
    margin: 15px 0;
    border-bottom: 1px solid #CCC;
    text-align: left;
    border-top: none;
    border-left: none;
    border-right: none;
}

p {
    text-align: left;
    margin: 0 0 15px;
}

h1 {
    font-size: 23px;
    display: block;
    line-height: 1.4;
    color: #EB0826;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

h2 {
    font-size: 16px;
    color: black;
    margin-bottom: 1em;
    display: inline-block;
    border-left: 2px solid #EB0826;
    border-top: 2px solid #EB0826;
    padding: 4px;
}

h3 {
    background-color: #ee1c25;
    color: white;
    font-size: 20px;
    padding: 10px 50px;
    text-align: center;
    margin-bottom: 1em;
    margin-left: 0;
    font-family: 'Oswald', sans-serif;
    margin-top: -12%;
    font-weight: normal;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: .975rem
}

ul li:before {
    content: "\2022"
        /* ❖ * ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -.975rem;
    font-size: 1.375em;
    line-height: 0.8;
}

ul ul li:before {
    content: "- ";
}

header {
    position: relative;
}

section {
    background: #fff;
    position: relative;
    max-width: 43.312rem;
    width: 100%;
    margin: -10rem auto 0;
    padding: 2.5rem;
}

section:first-of-type p:first-of-type {
    margin-bottom: 25px;
}

section:last-of-type p:first-of-type {
    letter-spacing: -0.1px;
}

article > section:nth-child(3) > a {
    float: right;
    width: 100%;
    max-width: 85px;
    margin-top: -90px;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

.slider {
    position: relative;
    margin: -1.187rem;
}

.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.312rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0 .625rem;
    }

    p a {
        white-space: pre-wrap;
    }

    p,
    ul {
        text-align: left;
        font-size: .875rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 1rem;
        margin-left: -.625rem;
        margin-right: -.625rem;
    }

    section {
        display: block;
        float: none;
        width: auto;
        padding: .625rem;
        margin: -3.125rem auto 0;
    }

    aside {
        display: block;
        float: none;
        width: auto;
    }

    section {
        background: #fff;
        position: relative;
    }

    section:first-of-type p:first-of-type {
        margin-bottom: .625rem;
    }

    section:last-of-type p:first-of-type {
        letter-spacing: 0;
    }

    article > section:nth-child(3) > a {
        float: none;
        display: block;
        margin-top: 0;
    }

    .slider {
        margin: 0 -10px;
    }
}

@media only screen and (max-width:479px) {
    h1 {
        font-size: 1.25rem;
    }
}
