@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #4F6B79;
  font-family: Calibri, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
}
#wrapper {
  position: relative;
  max-width: 700px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 1.692em;
  line-height: 1.1em;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  font-weight: normal;
}
a {
  color: inherit;
  text-decoration: none;
}
a ins {
  color: #0563C1;
  font-size: 1.25em;
}
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: 1rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}
main {
  padding: 1rem 2rem;
  position: relative;
}
.cricle {
  width: 150px;
  height: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #6A8592;
  color: #fff;
  gap: 0.75rem;
  border-radius: 100%;
  padding: 1rem;
  font-size: 0.9375em;
  line-height: 1.3;
  position: absolute;
  top: -1rem;
  right: 2rem;
  transform: rotate(10deg);
}
.cricle p {
  padding: 0;
}
article > p:first-of-type {
  width: 74%;
  font-size: 0.875em;
  line-height: 1.3;
}
footer {
  font-size: 1.25em;
  text-align: right;
}
@media only screen and (max-width:699px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  main {
    padding: 1rem;
  }
  article > p:first-of-type {
    width: auto;
  }
  .cricle {
    position: static;
    transform: none;
    margin: 0 auto 1rem;
  }
}