@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #686868;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
}
#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: 2px solid #007c57;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
  text-align: justify;
}
h1 {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 2.25em;
  line-height: 1.1em;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1rem;
  line-height: 1.3em;
  margin-bottom: 1rem;
}
h1, h2, .icon p, .color {
  color: #007c57;
}
.big {
  font-size: 1rem;
  line-height: 1.3;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding: 0 0 0.625rem 1rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}
article {
  padding: 1.5rem 1.5rem 0;
}
.icon {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0 1rem;
  flex-wrap: wrap;
}
.icon p {
  display: flex;
  align-items: center;
}
.icon img {
  height: 40px;
  margin-right: 0.75rem;
}
.apply {
  display: inline-block;
  transition: all ease-in-out 0.3s;
  color: #FFF;
  width: fit-content;
  background-color: #007c57;
  padding: 10px 55px;
  border: 2px solid #007c57;
  text-decoration: none;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.apply:hover {
  background: #fff;
  color: #007c57;
  text-decoration: none;
}
.center {
  text-align: center;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
    hyphens: auto;
  }
  article {
    padding: 1rem;
  }
  footer {
    padding: 0 1rem 1rem;
    flex-direction: column;
  }
  footer > div {
    width: 100%;
  }
  .avt {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .avt p {
    text-align: center;
  }
  .social {
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .benfit p {
    width: 49%;
  }
  .icon p {
    width: calc(50% - 1rem);
  }
}