@charset "utf-8";

: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: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 800px;
   border: solid 1px #000;
   background: #fff;
   padding: 1.5rem 2.5rem;
}

#wrapper:before {
   position: absolute;
   top: 0;
   left: 0;
   height: 23%;
   width: 1rem;
   content: "";
   background: #0A8D9F;
}

p {
   padding-bottom: 1rem;
}

h1 {
   margin: 0 0 1rem;
   font-size: 1.592em;
   line-height: 1.1em;
}

h2 {
   font-size: 1em;
   line-height: 1.3;
   padding-bottom: 1rem;
}
h3 {
   font-size: 1em;
   line-height: 1.3;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}
a.ins {
   text-decoration: underline;
   color: #0000EE;
}
ul {
   padding: 0 0 1rem;
   list-style: none;
}

li {
   padding: 0 0 0 3rem;
}

li:before {
   content: "\2022";
   margin: 0 0 0 -1.5rem;
   float: left;
}

header {
   display: flex;
   justify-content: end;
   padding: 0 0 2rem;
}

footer {
   margin: 0 -2.5rem;
}

img {
   max-width: 100%;
   height: auto;

}

@media only screen and (max-width:799px) {
   #wrapper {
      border: none;
      margin: 0 auto;
      padding: 1rem;
   }

   p :is(a, span) {
      display: inline-block;
   }
   header {
      justify-content: center;
   }
   footer {
      margin: 0 -1rem;
   }

   #wrapper:before {
      display: none;
   }
}

@media only screen and (max-width: 480px) {
   li {
      padding-left: 1rem;
   }
   li:before {
      margin-left: -1rem;
   }
}