section.services {
  margin-top: 0.5rem;
  width: 100vw;
  -ms-flex-item-align: center;
      align-self: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.services .textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.services .textbox h2 {
  color: #3D89BF;
  margin-bottom: 1rem;
}

section.services .textbox pre {
  white-space: pre-wrap;
  /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  width: 70vw;
  max-width: 30rem;
  text-align: center;
  margin-bottom: 2rem;
}

section.services .service-tiles {
  width: 70vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

section.services .service-tiles .service-tile {
  background-color: white;
  max-width: 100%;
  max-width: 16rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1rem 2rem 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 12px;
  margin: 1rem;
}

section.services .service-tiles .service-tile ion-icon {
  font-size: 6rem;
  color: #2ABF59;
  margin-bottom: 2rem;
}

section.services .service-tiles .service-tile pre {
  max-width: 12rem;
  white-space: pre-wrap;
  /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  text-align: center;
  color: #797979;
  margin-bottom: 2rem;
}

section.services .service-tiles .service-tile button {
  background-color: #34BFAF;
  color: whitesmoke;
  border: none;
  padding: 1rem;
  width: 12rem;
  font-weight: bold;
  border-radius: 12px;
}

section.services .service-tiles .service-tile button:hover {
  background-color: #2ABF59;
}

@media only screen and (max-width: 600px) {
  section.services .service-tiles {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
    width: 100vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  section.services .service-tiles .service-tile {
    margin: 1rem;
  }
}
/*# sourceMappingURL=services.css.map */