@charset "utf-8";
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v48-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v48-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v48-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v48-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v48-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v48-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v48-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v48-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v48-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v48-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v48-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v48-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 868px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #010408 url('../images/bg.jpg') no-repeat top center;
    overflow: hidden;
}
p {
    padding-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
    font-size: 0.75em;
    line-height: 1.3;
}
h1 {
    margin: -1.25rem 2.5rem 6rem auto;
    font-size: 2.125em;
    line-height: 1.1em;
    color: #0D66AF;
    text-transform: uppercase;
    width: fit-content;
}
h1 small {
    font-size: 0.75rem;
    text-align: right;
    line-height: 1.1;
    margin-right: -1.25rem;
}
h1 span {
    font-size: 0.66em;
    line-height: 1.1;
    text-align: center;
    margin-top: -0.5rem;
}
h1 :is(span, small) {
    text-transform: initial;
    font-weight: 400;
    display: block;
}
h1, strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    padding: 2rem 3rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 32%;
}
.hide_d {
    display: none;
}
.center {
    text-align: center;
    font-size: 0.85em;
    line-height: 1.75;
}
footer {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}
.flex1 {
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 867px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #010408;
    }
    h1 {
        margin: 0 auto 2rem;
        border: 5px solid #fff;
        background-color: #F6E20A;
        padding: 0.5rem 1rem;
    }
    h1 small {
        margin: 0;
        text-align: center;
    }
    h1 span {
        margin-top: 0.25rem;
    }
    .flex {
        display: block;
    }
    .flex div {
        width: auto;
    }
    .hide_d {
        display: initial;
    }
    .hide_m {
        display: none;
    }
    .flex1 {
        justify-content: center;
        gap: 2rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    p {
        text-align: left;
    }
}
@media only screen and (max-width: 780px) {
    main {
        padding: 2rem;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }
    h1 {
        font-size: 1.75em;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }
}