﻿@charset "utf-8";

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Gudea', sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
}

#wrapper {
    position: relative;
    max-width: 55.625rem;
    margin: 1rem auto;
    border: solid .062rem #000;
    background-color: #fff;
    overflow: hidden;
}

article {
    padding: 0 2.5rem;
}

footer {
    padding: 2rem 2.5rem 1rem;
}

article section:nth-of-type(1) {
    display: inline-block;
    width: 48.7%;
    vertical-align: top;
    margin-right: 1.4rem;
}

article section:nth-of-type(2) {
    display: inline-block;
    width: 47.5%;
    vertical-align: top;
}

.logo {
    position: absolute;
    right: 2.5rem;
}

a.link:link,
a.link:visited {
    font-size: 1rem;
    width: 15rem;
    line-height: 2.187rem;
    display: block;
    text-align: center;
    background: #559BD1;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.3125rem;
    margin: 3rem 0 2rem;
}

a.link:hover {
    text-decoration: underline;
}

p {
    text-align: left;
}

h1 {
    font-size: 1.5rem;
    line-height: 1.31em;
    color: #FF6200;
    padding-top: 1.5rem;
}

h1 span {
    color: #646363;
}

h2 {
    font-size: 1.041em;
    line-height: 1.231em;
    margin-bottom: -.625rem;
    color: #FF6200;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
    list-style-type: none;
}

li:before {
    content: "›";
    color: #EB600D;
    float: left;
    margin-left: -.937rem;
}

a:link,
a:active,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.gro {
    font-size: 1.892em;
    font-weight: bold;
}

.text {
    font-size: 1.792em;
    line-height: 1.1em;
}

@media only screen and (max-width:55.562rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    article,
    footer {
        padding: 0;
    }
}

@media only screen and (max-width:47.937rem) {

    article section:nth-of-type(1),
    article section:nth-of-type(2) {
        width: 100%;
        margin-right: 0rem;
    }

    p br {display:none}

    .logo {
        position: static;
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width:31.25rem) {

    p,
    ul {
        hyphens: auto;
    }

    footer a:link,
    a:active,
    a:visited {
        margin: 0.5rem auto;
    }

    h1 {
        padding-top: 0;
    }

    a.link:link,
    a.link:visited {
        margin: 2rem auto;
    }
}