@charset "utf-8";
@font-face {
   font-display: swap;
   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
   font-family: 'PT Sans';
   font-style: normal;
   font-weight: 400;
   src: url('../fonts/pt-sans-v17-latin-regular.eot');
   /* IE9 Compat Modes */
   src: url('../fonts/pt-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
      /* IE6-IE8 */
      url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'),
      /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url('../fonts/pt-sans-v17-latin-regular.woff') format('woff'),
      /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
      url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'),
      /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
      url('../fonts/pt-sans-v17-latin-regular.svg#PTSans') format('svg');
   /* Legacy iOS */
}
@font-face {
   font-display: swap;
   /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
   font-family: 'PT Sans';
   font-style: normal;
   font-weight: 700;
   src: url('../fonts/pt-sans-v17-latin-700.eot');
   /* IE9 Compat Modes */
   src: url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'),
      /* IE6-IE8 */
      url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'),
      /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url('../fonts/pt-sans-v17-latin-700.woff') format('woff'),
      /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
      url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'),
      /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
      url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
   /* Legacy iOS */
}
:root {
   font-size: 16px;
}
* {
   box-sizing: border-box;
   margin: 0;
}
html {
   min-height: 100%;
}
body {
   font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
   color: #fff;
}
#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 630px;
   border: solid 2px #2B56A2;
   background: #2E57A1;
}
p {
   padding-bottom: 0.7rem;
}
p.big{
   font-size: 1.1em;
   line-height: 1.3em;
}
h1 {
   padding-top: 2rem;
   margin: 0 0 12rem;
   font-size: 1.6em;
   line-height: 1.3em;
   text-align: center;
   text-shadow:   1px 1px 4px #333;
}
h1 span {
   font-weight: 700;
   font-family: 'PT Sans', Arial, sans-serif;
   font-size: 1.2em;
   text-transform: uppercase;
}
h1 small, h2 small {
   font-size: 1.2em;
}
h1 span.fwn{
   font-size: 0.8em;
   font-weight: 400;
   text-transform: none;
}
h2{
   font-size: 1em;
   line-height: 1.3em;
   text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}
.bottom {
   padding-bottom: 0;
}
.flex {
   display: flex;
   align-items: center;
   gap: 0.5rem;
}
main {
   background: url('../images/bg.jpg') no-repeat bottom;
   padding: 0 1.5rem 1rem;
   position: relative;
}
figure {
   margin: 0 -1.5rem 0;
}
header {
   padding: 1rem 0.7rem 0.5rem;
   background: #fff;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}
header p {
   font-family: 'PT Sans', Arial, sans-serif;
   padding-bottom: 0;
   color: #2B56A2;
   font-size: 1.16em;
   line-height:   1.3em;
}
header p small {
   display: block;
   font-size: 0.75em;
   line-height: 1.3em;
}
article {
   padding: 0;
}
article figure{
   display: none;
}
.fa-brands {
   font-size: 1.5em;
}
footer span {
   display: block;
   padding-bottom: 0.3rem;
   display: flex;
   justify-content: end;
}
footer {
   position: absolute;
   right: 1.5rem;
   bottom: 1.5rem;
}
img {
   max-width: 100%;
   height: auto;
}
@media only screen and (max-width:559px) {
   #wrapper {
      border: none;
      margin: 0 auto;
      background: #325FA3;
   }
   p {
      text-align: left;
   }
   p :is(span, a) {
      display: inline-block;
   }
   h1 {
      position: static;
      margin-bottom: 1rem;
   }
   main {
      background-image: none;
      height: auto;
   }
   article figure{
      display: block;
   }
   footer span {
      justify-content: center;
   }
   footer {
      position: static;
   }
   .hide_m,
   br {
      display: none;
   }
}