body,
body * {
  margin: 0;
  padding: 0;
}
#ag,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  color: #000;
  font-size: 13px;
  line-height: 18px;
  margin: 15px 0;
}
#ag {
  width: 100%;
  max-width: 778px;
  margin: min(20px, max(0px, calc(50vw - 389px))) auto;
  text-align: left;
  background: #fff;
  border: 1px solid #999;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
}
h1,
h2 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  margin: 0;
  display: inline-block;
  padding: 0 25px;
}
h1 {
  font-size: 36px;
  line-height: 55px;
}
h2 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
}
.title h1 span.background,
.title h2 span.background {
  display: inline;
  background-color: #63b32e;
  -webkit-box-shadow: 10px 0 0 #63b32e, -10px 0 0 #63b32e;
          box-shadow: 10px 0 0 #63b32e, -10px 0 0 #63b32e;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 3px 0;
}
.title h1 span:not(.background) {
  font-size: 25px;
  font-weight: 400;
}
h3,
p[role="heading"][aria-level="3"] {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 700;
}
h3 + p,
p[role="heading"][aria-level="3"] + p,
h3 + ul,
p[role="heading"][aria-level="3"] + ul {
  margin-top: 0;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #63b32e;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.apply {
  font-weight: 700;
  text-decoration: underline;
  color: #63b32e;
}
ul {
  list-style-type: none;
}
ul li {
  position: relative;
  padding-left: 13px;
}
ul li:before {
  position: absolute;
  top: 6px;
  left: 1px;
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #000;
}
ul ul {
  margin: 0;
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background-color: #63b32e;
}
header .logo {
  display: block;
  width: calc(100% / 3 - 50px);
  padding: 25px;
  background-color: #fff;
}
header .hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100px;
}
header .hero-wrapper .hero {
  display: block;
  width: 100%;
}
header .hero-wrapper .title {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(200% / 3 - 50px);
  padding: 20px 25px;
}
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
main .left,
main .right {
  padding: 0 25px;
}
main .left {
  width: calc(200% / 3 - 50px);
}
main .left .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  row-gap: 6px;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  margin: 15px 0 20px 0;
}
main .left .info p {
  background-color: #ededed;
  padding: 5px 10px 5px 8px;
  display: inline-block;
  letter-spacing: -0.2px;
  font-weight: 700;
  margin: 0;
}
main .left .info img {
  width: 17px;
  display: inline-block;
  margin-bottom: -4px;
}
main .right {
  width: calc(100% / 3 - 50px);
  background-color: #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
main .right .top p {
  color: #63b32e;
}
main .right .top p:last-of-type {
  margin-bottom: 0;
}
main .right .bottom .social-media {
  margin-top: 30px;
}
main .right .bottom .social-media img {
  display: inline-block;
  width: 40px;
}
@media all and (max-width: 778px) {
  #ag {
    border: none;
  }
}
@media all and (max-width: 679px) {
  h1,
  h2 {
    display: block;
    padding: 0;
  }
  h1 {
    font-size: 25px;
    line-height: 32px;
  }
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .title h1 span:not(.background) {
    font-size: 20px;
  }
  header {
    background-color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .logo {
    width: 80%;
    max-width: 200px;
  }
  header .hero-wrapper .title {
    position: relative;
    background-color: #63b32e;
    padding: 15px 25px;
    width: calc(100% - 50px);
  }
  main .left,
  main .right {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #ag {
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
  h1 {
    font-size: 20px;
    line-height: 25px;
  }
  .title h1 span:not(.background) {
    font-size: 16px;
  }
  h2 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media print {
  #ag {
    margin: 0;
    max-width: 100%;
    border-width: 0;
  }
  header,
  [itemprop] {
    page-break-inside: avoid;
  }
}
