@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #40444C;
  font: 1em/1.3em "Jost", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 630px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #EAE9EA;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1 {
  text-transform: uppercase;
  margin: 0.5rem 0 2rem;
  font-size: 3em;
  line-height: 1.1em;
  color: #8DC73F;
}
h1 span {
  font-size: 1.5rem;
  line-height: 1.3;
  display: block;
  font-weight: 300;
  color: #40444C;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
p a {
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 0.75rem;
}
ul li:before {
  content: "\2022";
  color: #8DC73F;
  float: left;
  font-family: Calibri, sans-serif;
  margin: -1px 0 0 -0.75rem;
}
.color, .big {
  color: #8DC73F;
}
.big {
  font-size: 1.125em;
  line-height: 1.3;
  font-weight: 700;
  display: block;
}
hr {
  border: 1px solid #40444C;
  margin-bottom: 1.5rem;
}
main {
  padding-left: 4rem;
}
article {
  padding: 0 4rem 1rem 0;
}
article p:last-of-type {
  font-size: 1.25em;
  line-height: 1.3;
}
footer {
  padding: 2rem 3rem 2rem 4rem;
  background: #40444C;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 1.5rem;
  border-top: 0.5rem solid #fff;
}
.ffml {
  font-family: Arial, sans-serif;
}
footer p {
  padding: 0;
  flex: 1;
  font-size: 0.75em;
  line-height: 1.3;
}
figure a {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #8DC73F;
  text-align: center;
  border-radius: 0.25rem;
  text-box-trim: trim-both;
  padding-top: 0.125rem;
}
footer a {
  color: #fff;
}
@media only screen and (max-width:629px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  h1 {
    font-size: 2em;
  }
  main {
    padding: 0;
  }
  article {
    padding: 0 1rem;
  }
  footer {
    padding: 1rem;
    flex-direction: column;
    align-items: center;
  }
  footer p {
    text-align: center;
    font-size: 0.875em;
    line-height: 1.3;
  }
}