@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot');
    src: url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

h1 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: normal;
    line-height: 1.1;
    margin: 1.75rem 0 0.625rem;
    color: #000;
}

h2 {
    text-align: center;
    font-weight: normal;
    font-size: 1.125rem;
    margin: 0.625rem 0 1.875rem;
    color: #000;
}

h3 {
    color: #000;
    font-size: 1.5625rem;
    font-weight: normal;
    margin: 2.5rem 0 0.625rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: bold;
}

:is(a:link,a:visited,a:hover,a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;    
}

p {
    margin: 0 0 0.625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 0;
    margin: 0 0 1.25rem;
}

ul li:before {
    content: "\#";
    margin-left: 0;
    font-size: 0.9375rem;
    line-height: 1.4;
}

a.button {
    color: #fff;
    background-color: #f0ad4e;
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    border-radius: 0.25rem;
    width: 12.5rem;
    margin: 1.875rem auto;
}

article section {
    font-weight: bold;
    color: #808080;
    display: block;
    text-align: center;
    margin: 3.125rem 0 0.625rem;
}

article section a {
    margin: 0 0.625rem;
}

footer {
    background-color: #282828;
    color: #999;
    padding: 1.25rem;
}

footer p {
    font-size: 0.875rem;
}

footer aside {
    max-width: 50rem;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer section {
    width: 49%;
}

footer section:first-of-type p {
    display: flex;
    column-gap: 0.625rem;
    align-items: flex-start;
}

footer i {
    margin: 0.1875rem 0 0;
    color: #444;
}

footer h3 {
    color: #fff;
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

footer a:hover {
    color: #337ab7;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    body {
        font-size: 0.875rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
        margin: 0.625rem 0 1.25rem;
    }

    h3 {
        font-size: 1.25rem;
        margin: 1.25rem 0 0.625rem;
    }

    h4 {
        font-size: 1rem;
    }

    ul {
        list-style: none;
        margin: 0 0 0.625rem;
        padding: 0;
    }

    ul li {
        margin: 0 0 0.625rem;
    }

    .button {
        margin: 1.25rem auto;
    }

    article section {
        margin: 1.25rem 0 0;
    }

    footer {
        background-color: #282828;
        padding: 1rem;
    }

    footer section {
        width: 49%;
    }
}

@media only screen and (max-width: 31.25rem) {
    footer aside {
        display: block;
    }

    footer section {
        width: 100%;
    }
}