/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Overpass:100,400&display=swap");
/* line 6, Users/markjeater/Sites/markjeater/scss/styles/_reset.scss */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 27, Users/markjeater/Sites/markjeater/scss/styles/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 31, Users/markjeater/Sites/markjeater/scss/styles/_reset.scss */
body {
  line-height: 1;
}

/* line 34, Users/markjeater/Sites/markjeater/scss/styles/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 37, Users/markjeater/Sites/markjeater/scss/styles/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 40, Users/markjeater/Sites/markjeater/scss/styles/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 45, Users/markjeater/Sites/markjeater/scss/styles/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 3, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
h1 {
  font-family: 'Overpass', sans-serif;
  font-size: 3em;
  font-weight: Thin;
  text-align: left;
  padding: 50px;
}

/* line 11, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
h2 {
  font-family: 'Overpass', sans-serif;
  font-size: 3em;
  font-weight: 600;
}

/* line 17, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
h3 {
  font-family: 'Overpass', sans-serif;
  font-size: .5em;
  font-weight: 600;
  color: black;
  margin: 15px;
}

/* line 25, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
h4 {
  font-family: 'Overpass', sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding-top: 3px;
  color: white;
}

/* line 35, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
p {
  font-family: 'Overpass', sans-serif;
  font-size: 1.2em;
  line-height: 1.3;
  font-weight: 600;
}

/* line 42, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
.articleHolder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* line 46, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
.articleLeftsml, .articleRightsml {
  width: 40%;
}

/* line 50, Users/markjeater/Sites/markjeater/scss/styles/_fonts.scss */
.articlerightlge, .articleRightlge {
  width: 60%;
}

/* line 1, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
html, body {
  width: 100vw;
  min-height: 100vh;
  font-size: 100%;
  font-weight: 100;
}

/* line 8, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ##################### Section Home ##################### */
/* line 16, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
section.home {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-directon: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  min-height: 100vh;
  background: black;
  overflow: hidden;
}

/* line 25, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
section.home video {
  width: 90vw;
}

/* line 28, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
section.home .scrollarrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 50px;
}

/* line 37, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
section.parallax1 {
  position: relative;
  width: 100vw;
  height: 75vh;
  background: url(../img/paralax_intro.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

/* line 45, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
section.parallax2 {
  position: relative;
  width: 100vw;
  height: 75vh;
  background: url(../img/paralax_skills.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

/* line 53, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
section.parallax3 {
  position: relative;
  width: 100vw;
  height: 75vh;
  background: url(../img/paralax_services.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

/* ##################### Section Intro ##################### */
/* line 63, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
section.intro,
section.services {
  display: relative;
  width: 100vw;
  min-height: 100vh;
  background: white;
  overflow: hidden;
}

/* ##################### FlexHolder ##################### */
/* line 74, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
article.flexholderlft {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80vh;
  padding: 50px;
}

@media only screen and (min-width: 1000px) {
  /* line 74, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  article.flexholderlft {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* line 85, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
article.flexholderrgt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80vh;
  padding: 50px;
}

@media only screen and (min-width: 1000px) {
  /* line 85, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  article.flexholderrgt {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* line 96, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.articlesml {
  width: 100%;
  height: 100%;
  text-align: center;
}

/* line 100, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.articlesml img {
  width: 50%;
}

@media only screen and (min-width: 1000px) {
  /* line 96, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  .articlesml {
    width: 40%;
  }
  /* line 105, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  .articlesml img {
    width: 100%;
  }
}

/* line 111, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.articlelrg {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1000px) {
  /* line 111, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  .articlelrg {
    width: 60%;
  }
}

/* line 119, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.introsubhead, .introtext {
  max-width: 100%;
  padding: 30px 0px 30px 30px;
}

/* line 124, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.introtext span {
  padding: 8px 12px;
  line-height: 1;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  text-transform: uppercase;
}

/* line 131, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.introsubhead span {
  background: #f06d06;
  padding: 8px 12px;
  line-height: 1.3;
  color: white;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  text-transform: uppercase;
}

/* line 140, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.servicesHolder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 147, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.servicesMain {
  width: 100%;
  margin-bottom: 20px;
  margin-right: 20px;
}

@media only screen and (min-width: 1000px) {
  /* line 147, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  .servicesMain {
    width: 45%;
  }
}

@media only screen and (min-width: 1600px) {
  /* line 147, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  .servicesMain {
    width: 20%;
  }
}

/* line 159, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.servicesDirection {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (min-width: 1000px) {
  /* line 159, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  .servicesDirection {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 167, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.servicesicon {
  text-align: center;
}

/* line 169, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.servicesicon img {
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 1000px) {
  /* line 169, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
  .servicesicon img {
    width: 50%;
  }
}

/* line 177, Users/markjeater/Sites/markjeater/scss/styles/_layout.scss */
.servicesText {
  padding: 10px;
}

/* line 1, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color1 {
  color: #2ca198;
}

/* line 5, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color2 {
  color: #f7c297;
}

/* line 9, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color3 {
  color: #6700AA;
}

/* line 13, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color4 {
  color: #C7CEEA;
}

/* line 17, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color5 {
  color: #a12c3e;
}

/* line 21, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color6 {
  color: #a02ca1;
}

/* line 25, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color7 {
  color: #2c57a1;
}

/* line 29, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color8 {
  color: #90d2d8;
}

/* line 33, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color9 {
  color: #fe5e51;
}

/* line 37, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.color10 {
  color: #006600;
}

/* line 43, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor1 {
  background-color: #2ca198 !important;
}

/* line 47, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor2 {
  background-color: #f7c297 !important;
}

/* line 51, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor3 {
  background-color: #6700AA !important;
}

/* line 55, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor4 {
  background-color: #C7CEEA !important;
}

/* line 59, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor5 {
  background-color: #a12c3e !important;
}

/* line 63, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor6 {
  background-color: #a02ca1 !important;
}

/* line 67, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor7 {
  background-color: #2c57a1 !important;
}

/* line 71, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor8 {
  background-color: #90d2d8 !important;
}

/* line 75, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor9 {
  background-color: #fe5e51 !important;
}

/* line 79, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.backgroundcolor10 {
  background-color: #006600 !important;
}

/* line 85, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor1 {
  border: 1px solid #2ca198 !important;
}

/* line 89, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor2 {
  border: 1px solid #f7c297;
}

/* line 93, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor3 {
  border: 1px solid #6700AA;
}

/* line 97, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor4 {
  border: 1px solid #C7CEEA;
}

/* line 101, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor5 {
  border: 1px solid #a12c3e;
}

/* line 105, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor6 {
  border: 1px solid #a02ca1;
}

/* line 109, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor7 {
  border: 1px solid #2c57a1;
}

/* line 113, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor8 {
  border: 1px solid #90d2d8;
}

/* line 117, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor9 {
  border: 1px solid #fe5e51;
}

/* line 121, Users/markjeater/Sites/markjeater/scss/styles/_colors.scss */
.bordercolor10 {
  border: 1px solid #006600;
}
