@charset "utf-8";
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v34-latin-regular.eot'); 
  src: local(''),
       url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), 
       url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), 
       url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), 
       url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); 
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v34-latin-700.eot'); 
  src: local(''),
       url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), 
       url('../fonts/open-sans-v34-latin-700.woff') format('woff'), 
       url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), 
       url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg'); 
}

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em 'Open Sans', Arial, sans-serif;
}
h1, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #0B0C0E;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: -7rem 0 1.5rem;
    font-size: 1.7em;
    line-height: 1.3;
    text-align: center;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2rem 1rem 1rem;
    text-align: center;
    font-weight: 400;
}
h2 span{
    letter-spacing: 1.5px;
}
.qrc {
    display: flex;
    gap: 1rem 2rem;
}
.qrc p {
    flex: 1;
    font-size: 1.25em;
    line-height: 1.3;
}
article {
    padding: 0 3rem;
}
a.color, h2 span, h1 {
    color: #2FAEAB;
    display: block;
}
hr {
    border: 0;
    border-bottom: 1px solid #54585B;
    margin-bottom: 0.5rem;
}
figure {
    display: flex;
    justify-content: flex-end;
    margin: -2rem 0 0.5rem;
}
footer p {
    padding: 0 3rem 2rem;
    text-align: justify;
    text-align-last: justify;
    letter-spacing: 0.3px;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        margin: -2rem 0 1.5rem;
    }
    footer p {
        text-align: left;
        text-align-last: left;
        letter-spacing: 0;
    }
    .qrc {
        flex-direction: column;
        align-items: center;
    }
    figure {
        margin: 0 0 0.75rem;
        justify-content: center;
    }
    .hide_m{
        display: none;
    }
}
@media only screen and (max-width:480px) {
    footer p, article {
        padding-inline: 1rem;
    }
    .qrc p {
        font-size: 1.125em;
        line-height: 1.3;
    }
}