@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 930px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 2rem 3rem 6rem 2rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 2.5em;
  line-height: 1.1em;
  font-weight: 400;
}
h2 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-bottom: 0.3rem;
  font-weight: 400;
}
article > h2:first-of-type {
  margin-bottom: 1rem;
}
.big {
  font-size: 1.1em;
  line-height: 1.3;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
a.link {
  color: #0000ff;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding: 0 0 0.3rem 3.4rem;
}
ul li:before {
content: "•";
  font-size: 0.875em;
  float: left;
  margin-left: -1.9rem;
}
footer ul {
  counter-reset: css-counters 0;
}
footer li:before {
  font-size: 1em;
  counter-increment: css-counters;
  content: counters(css-counters, "") ")";
  float: left;
  margin-left: -1.7rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
.left {
  width: 428px;
}
.right {
  width: 419px;
}
footer {
  width: 428px;
  position: absolute;
  bottom: 80px;
  left: 479px;
}
@media only screen and (max-width:929px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 2rem;
  }
  .hide_m {
    display: none;
  }
  .left, .right {
    width: 49%;
  }
  article > .left, footer {
    width: 100%;
  }
  footer {
    position: static;
  }
}
@media only screen and (max-width:780px) {
.left, .right {
    width: 100%;
  }
  .flex {
    flex-direction: column;
    padding: 0;
  }
}
@media only screen and (max-width:480px) {
  #wrapper {
    padding: 1rem;
  }
  li {
    padding-left: 1.9rem;
  }
}