@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
}

#wrapper {
    background-color: #fff;
    margin: 1rem auto;
    max-width: 46.25rem;
    overflow: hidden;
    position: relative;
}

p + p {
    margin: 1rem 0 0 0;
}

h1 {
    font-size: 2rem;
    line-height: 1.1em;
    color: #FA6E39;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 2.21rem;
}

h1 span {
    font-size: .875rem;
    color: #000;
    display: block;
    margin-top: 0.625rem;
}

h2 {
    font-size: 1.6rem;
    line-height: 1.231em;
    color: #00594E;
    text-transform: uppercase;
    border-bottom: 0.25rem solid #00594E;
    display: inline-block;
    margin-bottom: 1rem;
}

h2 img {
    display: inline-block;
}

h3 {
    font-size: 1.45rem;
    line-height: 1.231em;
    margin: 1.25rem 0;
    font-weight: normal;
    text-align: center;
}

h3 + p,
h3 + p + p,
h3 + p + p + p {
    text-align: center;
}

h4 {
    font-size: 1.5rem;
    color: #FA6E39;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h5 {
    position: relative;
    border: 0.125rem solid #fb6f3a;
    z-index: 1;
    margin-top: 1rem;
}

h5 > section:first-of-type {
    width: 40%;
    float: left;
}

h5 > section:last-of-type {
    width: 60%;
    float: right;
    padding: 0 1.25rem;
}

h5 section:last-of-type p img {
    display: inline-block;
    margin-right: 0.5rem;
}

h5 section:last-of-type p {
    font-size: 1rem;
    font-weight: normal;
}

h5 a:link,
h5 a:active,
h5 a:visited {
    color: #FA6E39;
    font-size: 1.25rem;
    text-decoration: none;
}

h5 a:hover {
    color: #FA6E39;
    text-decoration: underline;
}

h5 > img:first-of-type {
    position: absolute;
    left: -0.45rem;
    bottom: -0.3rem;
    z-index: 2;
    width: 2.5rem;
}

h5 > img:last-of-type {
    position: absolute;
    right: -0.4rem;
    top: -0.5rem;
    z-index: 2;
    width: 2.5rem;
}

h5 p span {
    font-size: 1.25rem;
    color: #FA6E39;
}

h6 {
    margin: 0;
}

h6:first-of-type a {
    margin: 1.375rem;
    max-width: 6rem;
    display: inline-block;
}

h6:last-of-type a {
    position: absolute;
    left: 75%;
    bottom: 27%;
}

a:link,
a:active,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    border: none;
    border-top: 0.063rem solid #000;
}

ul {
    padding-left: 1.5rem;
}

ul + h2 {
    margin-top: 1.5rem;
}

ul li {
    padding-bottom: 0.6rem;
    list-style-type: none;
    list-style-image: url();
}

ul li::before {
    content: "\25A0";
    color: #00594E;
    float: left;
    margin-left: -1.25rem;
    margin-top: -0.18rem;
    font-size: 1.431em;
}

ul li img {
    display: inline-block;
    vertical-align: middle;
}

article {
    padding: 0 1.188rem;
}

article aside {
    display: flex;
    justify-content: space-between;
}

article aside section {
    width: 48%;
}

article aside section > a {
    max-width: 15rem;
    display: block;
    margin: 0.625rem auto 0;
}

footer {
    display: flex;
    justify-content: space-between;
    background-color: #015850;
    padding: 1.5rem;
    margin-top: 1.5rem;
    align-items: flex-end;
}

footer section:first-of-type p {
    color: #fff;
}

footer section:first-of-type p:first-of-type {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

footer section:first-of-type p a:link,
footer section:first-of-type p a:active,
footer section:first-of-type p a:visited {
    color: #fff;
    font-size: 1.25rem;
}

footer > section:first-of-type > a:hover {
    text-decoration: none;
}

footer section:first-of-type img {
    display: inline-block;
    margin: 1rem 0.3rem;
}

footer section:last-of-type {
    display: block;
    text-align: right;
    margin: 0 2.375rem 0 0;
}

footer section:last-of-type img {
    padding: 0;
    max-width: 14.562rem;
    width: 100%;
}

header {
    overflow: hidden;
    background-color: #00594E;
}

header div {
    display: flex;
    padding: 0;
    width: 500%;
    animation: slider 15s infinite linear;
}

header img {
    width: 100%;
}

iframe {
    width: 100%;
    height: 25rem;
}

@keyframes slider {
    0% {
        margin-left: 0;
    }

    17% {
        margin-left: 0;
    }

    25% {
        margin-left: -100%;
    }

    40% {
        margin-left: -100%;
    }

    48% {
        margin-left: -200%;
    }

    63% {
        margin-left: -200%;
    }

    71% {
        margin-left: -300%;
    }

    86% {
        margin-left: -300%;
    }

    94% {
        margin-left: -400%;
    }

    100% {
        margin-left: -400%;
    }
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

aside section:first-of-type ul:first-of-type ul:first-of-type {
    margin-top: 1.25rem;
}

@media only screen and (max-width:45.625rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    br {
        display: none;
    }

    h1 {
        padding: 0;
    }

    h5 {
        flex-direction: column;
    }

    h5 > section:first-of-type {
        width: auto;
        float: none;
    }

    h5 > section:last-of-type {
        width: auto;
        float: none;
        padding: 0 .625rem 0.625rem;
    }

    h5 section:first-of-type > img {
        width: 100%;
        max-width: 17.437rem;
        height: auto;
        margin: .625rem auto 0;
        text-align: center;
        display: block;
    }

    h5 > img:first-of-type {
        display: none;
    }

    h5 > img:last-of-type {
        display: none;
    }

    h5 p span {
        color: #FA6E39;
    }

    h6:first-of-type a {
        margin: 0 auto 0.625rem;
        max-width: 6rem;
        display: block;
        text-align: center;
    }

    h6:last-of-type {
        text-align: center;
    }

    h6:last-of-type a {
        position: static;
        display: inline-block;
    }

    article {
        padding: 0 0.625rem;
    }

    article aside {
        flex-direction: column;
    }

    article aside section {
        width: 100%;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: .625rem;
    }

    footer section:first-of-type p {
        color: #fff;
    }

    footer section:first-of-type p:first-of-type {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    footer section:first-of-type p a:link,
    footer section:first-of-type p a:active,
    footer section:first-of-type p a:visited {
        color: #fff;
        font-size: 1.25rem;
    }

    footer section:first-of-type img {
        margin: 1rem 0.3rem;
    }

    footer section:last-of-type img {
        padding: 0;
    }

    a:link,
    a:active,
    a:visited {
        font-size: 1rem;
    }

    a:hover {
        text-decoration: none;
    }

    iframe {
        height: 50vw;
    }
}

@media only screen and (max-width:23.437rem) {
    header {
        display: none;
    }

    nav {
        display: none;
    }
}