@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot'); 
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
         url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
         url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'), 
         url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #454242;
    font: 400 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
}
:is(h1, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1.25rem;
}
.center {
    text-align: center;
}
h2, h3 {
    color: #707070;
}
h1 {
    margin: 0 -2rem 1.25rem;
    padding: 1rem 2rem;
    font-size: 2em;
    line-height: 1.1;
    font: 700 2em/1.1 'Roboto Condensed', Arial, sans-serif;
    background: #959595;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
h2 {
    font: 400 1.7em/1.1em 'Roboto Condensed', Arial, sans-serif;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}
h3 {
    font: 400 1.125em/1.3em 'Roboto Condensed', Arial, sans-serif;
    margin-bottom: 1.25rem;
    font-weight: 400;
}
ul {
    padding: 0 0 1rem 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.ml {
    margin-left: 2.5rem;
}
.info {
    display: flex;
    justify-content: space-around;
    gap: 0 1rem;
    margin-bottom: 2rem;
}
.info p {
    text-align: center;
    hyphens: none;
}
.info p strong {
    color: #848484;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.left, .right {
    width: 48%;
    box-shadow: 0px 2px 14px #00000029;
    border-radius: 10px;
    padding: 1rem 1rem 0;
    margin-bottom: 2rem;
}
.logo {
    padding: 1rem;
    display: flex;
    justify-content: center;
}
.bg{
    background: #E3E3E3;
    transform: rotate(-3deg);
    margin: 0 -3rem 2rem;
    padding: 3rem 3rem 0;
}
.bg :is(p, h2, h3){
    transform: rotate(3deg);
}
article {
    padding: 0 2rem;
}
footer {
    padding: 0 2rem 1rem;
}
.button {
    text-align: center;
    margin-top: 1rem;
}
.button a {
    display: inline-block;
    background: #333333;
    color: #fff;
    text-transform: uppercase;
    padding: 0.5rem 2rem;
    border-radius: 5px;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .info {
        flex-wrap: wrap;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding-inline: 1rem;
    }
    h1 {
        font-size: 1.7em;
    }
    h2 {
        font-size: 1.313em;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
    .ml {
        margin-left: 0;
    }
}