html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  width: 88%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container.portfolio {
  width: 90%;
  max-width: 1920px;
}

[class^='col-'] {
  grid-column: span 1;
}

@media screen and (min-width: 48rem) and (max-width: 64rem) {
  .container {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  .col-3,
  .col-2,
  .col-1 {
    grid-column: span 1;
  }
  .col-6,
  .col-5,
  .col-4 {
    grid-column: span 2;
  }
  .col-12,
  .col-11,
  .col-10,
  .col-9,
  .col-8,
  .col-7 {
    grid-column: span 4;
  }
}

@media screen and (min-width: 64rem) {
  .container {
    -ms-grid-columns: (1fr)[12];
        grid-template-columns: repeat(12, 1fr);
  }
  .col-1 {
    grid-column: span 1;
  }
  .col-2 {
    grid-column: span 2;
  }
  .col-3 {
    grid-column: span 3;
  }
  .col-4 {
    grid-column: span 4;
  }
  .col-5 {
    grid-column: span 5;
  }
  .col-6 {
    grid-column: span 6;
  }
  .col-7 {
    grid-column: span 7;
  }
  .col-8 {
    grid-column: span 8;
  }
  .col-9 {
    grid-column: span 9;
  }
  .col-10 {
    grid-column: span 10;
  }
  .col-11 {
    grid-column: span 11;
  }
  .col-12 {
    grid-column: span 12;
  }
}

@media screen and (max-width: 64rem) {
  .col-8-center {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/ span 4;
  }
}

@media screen and (min-width: 64rem) {
  .col-8-center {
    -ms-grid-column: 3;
    -ms-grid-column-span: 8;
    grid-column: 3 / span 8;
  }
}

@media screen and (max-width: 64rem) {
  .col-10-center {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/ span 4;
  }
}

@media screen and (min-width: 64rem) {
  .col-10-center {
    -ms-grid-column: 2;
    -ms-grid-column-span: 10;
    grid-column: 2 / span 10;
  }
}

.container .container {
  width: 100%;
}

@media screen and (max-width: 48rem) {
  .lg {
    display: none;
    visibility: hidden;
  }
  .small {
    display: block;
    visibility: visible;
  }
}

@media screen and (min-width: 48rem) {
  .small {
    display: none;
    visibility: hidden;
  }
}

section {
  position: relative;
  z-index: 0;
  padding: 6rem 0;
  text-align: center;
}

@media screen and (min-width: 64rem) {
  section {
    padding: 8rem 0;
  }
}

section.bg-gray {
  background: #F7F7F7;
}

section.no-bottom {
  padding-bottom: 0;
}

section.no-top {
  padding-top: 0;
}

.portfolio {
  display: -ms-grid;
  display: grid;
  grid-gap: 2rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  padding: 0 5%;
      grid-template-areas: "text" "image" "more";
}

@media screen and (min-width: 768px) {
  .portfolio {
    text-align: left;
  }
  .portfolio.image-left {
        grid-template-areas: "image text" "more more";
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .portfolio {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "text image" "more more";
  }
}

@media screen and (min-width: 1024px) {
  .portfolio {
    -ms-grid-columns: 1fr 1.5fr;
        grid-template-columns: 1fr 1.5fr;
        grid-template-areas: "text image" "more more";
  }
  .portfolio.image-left {
    -ms-grid-columns: 1.5fr 1fr;
        grid-template-columns: 1.5fr 1fr;
  }
}

.portfolio .text, .portfolio .image {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.portfolio .text {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: text;
}

.portfolio .image {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: image;
}

.portfolio .more {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: more;
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .portfolio .more {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}

#peepps, #apmex {
  color: #F7F7F7;
}

#peepps h2, #apmex h2 {
  color: #ffffff;
}

#peepps {
  background: #212529;
}

#apmex {
  background: #2B495A;
}

.steps {
  background: lightgreen;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.content {
  background: #ffffff;
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 100%;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: (auto)[1];
      grid-template-rows: repeat(1, auto);
  grid-gap: 4rem;
  text-align: center;
}

.content section {
  display: -ms-grid;
  display: grid;
  padding: 0;
  grid-gap: 2rem;
}

@media screen and (min-width: 720px) {
  .content section {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .content section {
    max-width: 1024px;
    margin: 0 auto;
  }
}

.content div {
  width: 100%;
  max-width: 41.5rem;
  -ms-grid-column-align: center;
      justify-self: center;
}

.content div.large {
  max-width: 53rem;
}

@media screen and (max-width: 850px) {
  .content {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1440px) {
  .content, .portfolio {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }
}

body {
  color: rgba(0, 0, 0, 0.72);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.765;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: #000000;
}

h1 {
  font-size: 2.36859rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.77689rem;
}

h3 {
  font-size: 1.333rem;
}

h4 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.525;
  margin-bottom: 2rem;
}

@media screen and (min-width: 960px) {
  h1 {
    font-size: 2.66467rem;
  }
  h2 {
    font-size: 1.999rem;
  }
  h3 {
    font-size: 1.49962rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  p {
    font-size: 1.125rem;
    line-height: 1.765;
  }
}

.text-center {
  text-align: center;
}

ul.list {
  padding-left: 1rem;
  list-style: disc outside none;
  text-align: left;
}

.btn, a.btn, button.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem;
  background: #228BE6;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.765;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(22, 83, 166, 0);
          box-shadow: 0px 0px 0px 0px rgba(22, 83, 166, 0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  transition: -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out, -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.btn:hover, a.btn:hover, button.btn:hover {
  -webkit-box-shadow: 0px 9px 18px 0px rgba(22, 83, 166, 0.3), 0px 3px 6px 0px rgba(22, 83, 166, 0.45);
          box-shadow: 0px 9px 18px 0px rgba(22, 83, 166, 0.3), 0px 3px 6px 0px rgba(22, 83, 166, 0.45);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-transition: -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  transition: -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out, -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.btn:focus, .btn:active, a.btn:focus, a.btn:active, button.btn:focus, button.btn:active {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  transition: -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out, -webkit-box-shadow 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(22, 83, 166, 0.3), 0px 1px 3px 0px rgba(22, 83, 166, 0.45);
          box-shadow: 0px 3px 6px 0px rgba(22, 83, 166, 0.3), 0px 1px 3px 0px rgba(22, 83, 166, 0.45);
}

.btn.secondary, a.btn.secondary, button.btn.secondary {
  background: #ffffff;
  color: #228BE6;
  border: 1px solid #228BE6;
}

.tap-target li a, .inline.text li a,
.tap-target li,
.inline.text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 48px;
  min-width: 48px;
}

.tap-target li a, .inline.text li a {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.tap-target li a svg path, .inline.text li a svg path {
  -webkit-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}

.tap-target li a:hover, .inline.text li a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

.tap-target li a:hover svg path, .inline.text li a:hover svg path {
  fill: #228BE6 !important;
  -webkit-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}

.hero {
  background-color: #F7F7F7;
  padding: 2rem 0;
  text-align: center;
}

.hero img {
  display: block;
  margin: 0 auto;
  width: 50%;
  border-radius: 1000px;
}

@media screen and (min-width: 48rem) {
  .hero {
    text-align: left;
    padding-bottom: 0;
    padding-top: 1.5rem;
  }
  .hero img {
    border-radius: 0;
    width: 100%;
    max-width: 100%;
  }
  .hero .text {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer {
  font-size: 0.875rem;
  position: relative;
  z-index: 0;
  padding: 6rem 0;
  text-align: center;
  background: #333A40;
  color: #F7F7F7;
}

@media screen and (min-width: 64rem) {
  footer {
    padding: 8rem 0;
  }
}

footer a {
  color: #F7F7F7;
  opacity: 1;
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}

footer a:hover {
  opacity: .72;
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}

html, body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

section:focus {
  outline: 0;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 2rem 0;
}

.inline li {
  margin-right: 0.5rem;
}

.inline li:last-child {
  margin-right: 0;
}

.inline.text {
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 45rem) {
  .inline.text {
    -ms-grid-columns: auto auto auto auto auto;
        grid-template-columns: auto auto auto auto auto;
  }
}
/*# sourceMappingURL=master.css.map */