@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v47-latin-regular.eot');
    src: url('../fonts/roboto-v47-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v47-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v47-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v47-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v47-latin-regular.svg#Roboto') format('svg');
}


@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v47-latin-700.eot');
    src: url('../fonts/roboto-v47-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v47-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v47-latin-700.woff') format('woff'),
        url('../fonts/roboto-v47-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v47-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #383737;
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 10pt;
    line-height: 1.5;
    background-color: #ededed;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #cbcaca;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

a.link {
    color: #F59C00;
    text-decoration: underline;
}

h1 {
    font-size: 36Pt;
    line-height: 1.2;
    color: #F59C00;
    margin-bottom: 1rem;
}

h1 span {
    font-size: 1.4rem;
    display: block;
    padding-top: .3rem;
}

h2 {
    font-size: 1rem;
    color: #F59C00;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}

.color {
    color: #F59C00;
}

.center {
    text-align: center;
}

.bigger {
    font-size: 20px;
}

article {
    padding: 0 2rem;
    margin: -4rem 0 0;
}

.info {
    display: flex;
    align-items: center;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.info i {
    color: #F59C00;
    font-size: 1.5rem;
    margin-right: 0.3rem;
}

.info p {
    margin: 0;
    font-size: 12pt;
}

.content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.content section {
    width: 48%;
}

.margin {
    margin: 2rem 0;
    text-align: center;
}

footer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

@media only screen and (max-width: 56.188rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

}

@media only screen and (max-width: 52.5rem) {
    .content {
        display: block;
    }

    .content section {
        width: 100%;
    }

    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 2rem 1rem;
    }
}

@media only screen and (max-width: 40rem) {

    h1 {
        text-align: center;
    }

    .info {
        flex-direction: column;
    }

    article {
        padding: 0 1rem;
        margin: 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}