@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
}
#wrapper {
  position: relative;
  max-width: 1024px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 19.25rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 1.25em;
  line-height: 1.1em;
  text-align: center;
  color: #0070C0;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
h3 {
  font-size: 2em;
  line-height: 1.3em;
  color: #0070C0;
  position: relative;
  font-weight: 300;
  width: fit-content;
  margin: 1rem 0 0 -16rem;
}
h3:before {
  content: "";
  width: 5rem;
  height: 5px;
  background: #73AD28;
  position: absolute;
  bottom: 96%;
  right: 7px;
}
a {
  color: inherit;
  text-decoration: none;
}
a.ins {
  color: #0070C0;
  text-decoration: underline;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -1.3rem;
}
header {
  padding-bottom: 2rem;
}
header figure {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}
footer p {
  position: absolute;
  top: 8rem;
  left: 2rem;
}
@media only screen and (max-width:1023px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }
  h3 {
    margin: 1rem 0;
  }
  header figure {
    position: static;
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
  }
  footer p {
    position: static;
  }
}