@charset "utf-8";

/* Standard */
:root {
   font-size: 16px;
}

* {
   box-sizing: border-box;
   margin: 0;
}

html {
   min-height: 100%;
}

body {
   font: 0.875em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
   color: #000;
}

#wrapper {
   position: relative;
   margin: 1rem auto;
   overflow: hidden;
   max-width: 880px;
   border: solid 1px #000;
   background: #E1F4FC;
}

h1 {
   margin: 0rem 0rem 0rem;
   font-size: 3.1em;
   line-height: 1;
}

h1 small {
   font-size: 0.6em;
}

h2 {
   font-size: 1em;
   line-height: 1.3;
   background: #000;
   color: #fff;
   padding: 0.3rem 4.5rem 0.3rem 0.3rem;
   width: fit-content;
   margin-bottom: 0.3rem;
}

article p {
   font-size: 1.8em;
   line-height: 1.3;
   padding-bottom: 0.5rem;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0;
   list-style: none;
}

li {
   padding: 0 0 0 16px;
}

ul li:before {
   content: "\2022";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -16px;
}

header {
   margin: 0.7rem 0 -168px 1rem;
}

article {
   padding: 0 1rem;
}

.box {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   padding-top: 1rem;
}

footer {
   padding: 0.5rem 2rem 0.5rem 0.5rem;
   background: #6BCFF6;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   align-items: center;
   border: 1px solid #000;
   margin: 1rem;
   position: relative;
}

section:nth-of-type(2) {
   border-left: 1px solid #000;
   border-right: 1px solid #000;
   padding: 0 1rem;
}

footer p {
   font-size: 1.125em;
   line-height: 1.3;
}

footer p span {
   font-size: 1.5em;
   display: block;
   line-height: 1.3;
}

footer:before {
   position: absolute;
   content: "";
   left: 58%;
   height: 77%;
   top: 0.8rem;
   width: 2px;
   background: #000;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:879px) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   p :is(span, a) {
      display: inline-block;
   }

   ul {
      padding-bottom: 1rem;
   }

   .hide_m,
   br,
   footer:before {
      display: none;
   }

   section:nth-of-type(2) {
      border: none;
      padding: 0;
   }

   footer {
      flex-direction: column;
   }

   footer p {
      text-align: center;
      padding-bottom: 0.5rem;
      font-size: 1.063em;
   }

   footer p span {
      font-size: 1.375em;
   }
   article p{
      font-size: 1.250em;
   }

   header {
      margin: 0 0 0 1rem;
   }

   h1 {
      font-size: 2em;
   }

   h1 small {
      font-size: 0.7em;
   }
}
