@charset "utf-8";

:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 1em/1.4em "Segoe UI", Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 735px;
   border: solid 1px #009BD8;
   background: #fff url('../images/bg.jpg') no-repeat top;
   padding: 0.75rem 1rem 0.25rem;
}

p {
   padding-bottom: 0.5rem;
}

h1 {
   padding: 0 0 0 1.5rem;
   position: relative;

}

h1:before {
   position: absolute;
   left: 0;
   top: 0;
   content: "\2022";

}
h2 span{
   color: #F89820;
}
h1,
h2 {
   color: #009BD8;
   margin: 0 0 0.5rem;
   font-size: 1.5em;
   line-height: 1.2;
}
h3{
   font-size: 1.313em;
   line-height: 1.3;
   color: #009BD8;
   margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
   color: #009BD8;
   text-decoration: none;
}

header {
  padding: 0 0 3.5rem;
  display: flex;
  justify-content: center;
}

.link {
 position: absolute;
  right: 3rem;
  top: 53px;
  transform: rotate(-16deg);
  font-weight: 700;
  font-size: 0.875em;
}

.link a.white {
   color: #fff;
}

footer {
   position: absolute;
   right: 1rem;
   bottom: 0.75rem;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:734px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: center;
   }

   p :is(a, span) {
      display: inline-block;
   }

   h1 {
      font-size: 1.35em;
   }

   footer {
      position: static;
      display: flex;
      justify-content: center;
   }

   .link {
      position: static;
      text-align: center;
      transform: none;
      padding: 0.5rem;
   }

   .link a.white {
      color: #009BD8;
   }
   .hide_m{
      display: none;
   }

}
