@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v18-latin-regular.eot');
    src: url('../fonts/inter-v18-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v18-latin-regular.woff2') format('woff2'), url('../fonts/inter-v18-latin-regular.woff') format('woff'), url('../fonts/inter-v18-latin-regular.ttf') format('truetype'), url('../fonts/inter-v18-latin-regular.svg#Inter') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v18-latin-700.eot');
    src: url('../fonts/inter-v18-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v18-latin-700.woff2') format('woff2'), url('../fonts/inter-v18-latin-700.woff') format('woff'), url('../fonts/inter-v18-latin-700.ttf') format('truetype'), url('../fonts/inter-v18-latin-700.svg#Inter') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #474749;
    font: 400 1em/1.3em 'Inter', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0 3rem ;
}
h1,h2,h3,strong{
    font-weight: 700;
}
p {
    padding-bottom: 1.5rem;
}
p.big {
    font-size: 1.2em;
    line-height: 1.3em;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 3em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #474749;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding: 0 0 1rem 2rem;
}
ul li:before {
    content: "•";
    float: left;
    margin: -2px 0 0 -1rem;
}
header figure {
    margin: 0 -3rem 2rem;
}
header {
    position: relative;
}
.logo {
    position: absolute;
    top: 0.5rem;
    right: -2rem;
}
.center :is(p, h1) {
    text-align: center;
}
.bg {
    background: #F9F9F9;
    padding: 1rem 2rem 0;
    margin: 0 -2rem 2rem;
}
.bg p {
    display: flex;
    justify-content: start;
    gap: 0 5rem;
    margin-left: 5rem;
}
.bg p span {
    width: 30%;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2rem;
    margin: 2rem 0;
}
.ttu {
    text-transform: uppercase;
}
p a.big {
    font-size: 1.3em;
    line-height: 1.3em;
}
.button {
    text-align: center;
    margin: 1rem 0;
}
.button a {
    padding: 1rem 3rem;
    background: #36B0A4;
    color: #FFF !important;
    border-radius: 30px;
}
.button a:hover {
    border: 3px solid #FFF;
    box-shadow: -0.1rem 0.1rem 1rem #999;
}
footer {
    background: #36B0A4;
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 2rem -3rem 0;
}
footer div {
    width: 50%;
}
footer iframe {
    display: block;
}
.iframe {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.iframe iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
.box :is(h3, p) {
    text-align: center;
    color: #FFF;
}
.box {
    padding: 1rem;
}
@media only screen and (max-width:999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0 2rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1{
        font-size: 2em;
    }
    .logo{
        right: 0;
    }
    .bg p{
        margin: 0;
        gap: 0 1rem;
    }
    .bg p span{
        width: 48%;
    }
}
@media only screen and (max-width: 780px) {
    .logo img{
        width: 80px;
    }
}
@media only screen and (max-width: 480px) {
     #wrapper {
        padding: 0 1rem;
    }
    .logo{
        position: static;
        display: flex;
        justify-content: center;
        margin: 1rem;
    }
    ul li{
        padding-left: 1rem;
    }
    h3{
        font-size: 1.3em;
    }
}