@charset "utf-8";

/* Standard */
: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: 860px;
   border: solid 1px #000;
   background: #fff;
   padding: 1.5rem;
}

p {
   padding-bottom: 1rem;
}

h1,
h2 {
   color: #B8312F;
   margin: 0 0 1rem;
}

h1 {

   font-size: 2.3em;
   line-height: 1.1em;
}

h1 span {
   font-size: 0.7em;
   color: rgb(26, 35, 126);
   display: block;
   font-weight: 400;
   font-family: Calibri Light, Arial, sans-serif;


}

h2 {
   font-size: 1em;
   line-height: 1.3;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
}

ul {
   padding: 0rem 0rem 1rem 0rem;
   list-style: none;
}

li {
   padding: 0 0 0 30px;
}

ul li:before {
   content: "\2022";
   font-size: 1em;
   float: left;
   margin: 0 0 0 -20px;
}


.banner {
   border-bottom: 1px solid #cccccc;
   border-top: 1px solid #cccccc;
   margin: 1rem 0;
   padding: 1rem 0;
}

.box {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.box section p span:first-of-type{
   width: 50px;
}

.box section p {
   display: flex;
  
   align-items: center;
}

img {
   max-width: 100%;
   height: auto;
}

@media only screen and (max-width:859px) {
   #wrapper {
      border: none;
      hyphens: auto;
      margin: 0 auto;
   }

   p {
      text-align: left;
   }

   p :is(span, a) {
      display: inline-block;
   }

   .hide_m {
      display: none;
   }
}
