:root {

  --light-gray: #e7e7e7;
  --medium-gray: #666;
  --dark-gray: #333;

  --pink-color: #e8114b;
  --dark-aqua: #217496;
  --light-aqua: #2f9b96;
}


body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0; 
}

* {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: sans-serif;
  height: 100%;
  font-family: 'Catamaran', sans-serif !important;
  font-weight: 300;
  box-sizing: border-box;
  color: var(--dark-gray);
}

/* header */

header {
  position: fixed;
  width: 100%;
  clear: both;
  z-index: 9;
}

.site-title {
  float: left;
  margin: 16px;
  display: inline-block;
  /*background: url('/static/images/fullstack.svg') no-repeat; */
  width: 20%;
  height: 60px;
  background-size: 160px;
}

.site-nav {
  float: right;
  padding: 18px 16px;
}

.site-nav .nav-trigger {
    display: none; 
}

.site-nav .menu-icon {
    display: none; 
}

.site-nav .page-link {
  color: white;
  text-decoration: none;
  margin: 0 8px;
  font-size: 14px;
}

.headerDivider {
  position: absolute;
  top: 0;
  right: 240px;
  height: 60px;
  width: 5px;
}

.topDivider {
  background: var(--pink-color);
}

.midDivider {
  background: var(--pink-color);
}

.botDivider {
  background: var(--pink-color);
}

.landing .landingFooter {
  background: #b167c6;
}

/* landing page */

#skrollr-body {
    float: left;
    width: 100%;
    height: 100%;
}

.pageWrap {
  
}

.landingPage {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  /*margin: 12px;*/
  display: table;
  overflow: hidden;
}

.landingPageContent {
  width: 100%;
  height: 100%;
  padding: 0 200px;
  min-height: 100%;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 3;
}

#top {
  background: linear-gradient(-15deg, black, var(--dark-gray), var(--dark-gray), black);
  background-size: 140% 170%;
  position: relative;
  z-index: 3;
}

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

@-moz-keyframes Gradient {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

@keyframes Gradient {
  0% {
    background-position: 0 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

#top:after {
  content : "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('/static/images/cross.svg');
  width: 100%;
  height: 100%;
  opacity : 0.1;
  z-index: 1;
}

#top img {
  width: 284px;
  display: inline-block;
  margin-bottom: 134px;
}

#top h1 {
  font-size: 56px;
  max-width: 100%;
  line-height: 1.1em;
  margin: -20px 0 36px;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

#top p {
  font-size: 20px;
  max-width: 50%;
  line-height: 1.4em;
  color: white;
  margin-bottom: 100px;
  display: inline-block;
  clear: both;
  float: left;
}

.learnMoreBtn {
  display; inline-block;
  background: var(--light-aqua);
  padding: 12px 20px;
  font-size: 20px;
  border-radius: 5px;
  color: white;
  clear: both;
  float: left;
  text-align: center;
  width: 200px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
  position: relative;
  z-index: 5;
}

.learnMoreBtn:hover {
  background: var(--dark-aqua);
}

.dotsWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('/static/images/dot.svg');
  z-index: 2;
  opacity: .05;
  display: none;
}

#mid {
  background: var(--light-gray);
  position: relative;
}

#mid h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1em;
  margin-bottom: 36px;
}

.purple {
  color: var(--dark-aqua);
}

.lightAqua {
  color: var(--dark-aqua);
}

.aqua {
  color: var(--dark-aqua);
}

.pink {
  color: var(--light-aqua);
}

.orange {
  color: var(--light-aqua);
}

#mid p {
  color: #444;
  font-size: 16px;
  line-height: 1.4em;
  display: inline-block;
  margin-bottom: 24px;
}

#mid p a {
  border-bottom: 1px solid var(--light-aqua);
  color: var(--dark-gray);
  text-decoration: none;
  line-height: .9em;
  display: inline-block;
  transition: background-size .2s;
}

#mid p a:hover {
  border-bottom: 1px solid var(--pink-color);
}

.landingPageMidHeadline {
  display: inline-block;
  width: 50%;
  margin-top: -30px;
}

.landingPageMidHeadline p {
  width: 85%;
}

.landingPageGraphicWrap {
  width: 50%;
  max-width: 620px;
  display: grid;
  float: left;
  padding: 100px 5% 0 0;
  clear: both;
  position: relative;
  grid-template-columns: 1fr 1fr;
}

.midTopBar {
  display: none;
}

.circle {
  width: 500px;
  height: 500px;
  display: block;
  position: absolute;
  top: 100px;
  left: -10px;
  background: url('/static/images/landing-circle.svg')  no-repeat;
  animation: spin 8s linear infinite;
}

@keyframes spin { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }

.landingPageGraphic {
  width: 150px;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
}

.topGraphic {
  grid-column: 1 / span 2;
  margin: 0 auto 24px;
}

.midGraphic {
  position: relative;
  top: -30px;
  left: -28px;
}

.bottomGraphic {
  padding-top: 48px;
  margin-left: 48px;
}

.landingPageGraphic svg {
  fill: #4f1f62;
  position: absolute;
  z-index: 0;
}

.serviceLabel {
  text-transform: uppercase;
  font-size: 15px;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  font-weight: 400;
  width: 100%;
  clear: both;
  font-family: 'Roboto', sans-serif;
  /*background: url('/static/images/halftone.png') #e0e1ce; */
}

.purpleLabel {
  color: #4f1f62;
}

.lightAquaLabel {
  color: var(--medium-gray);
}

.aquaLabel {
  color: var(--medium-gray);
}

.pinkLabel {
  color: var(--medium-gray);
}

.orangeLabel {
  color: var(--medium-gray);
}

.repeatLabel {
  margin-bottom: 0;
  color: var(--dark-aqua);
}

.landingPageMidText {
  display: inline-block;
  clear: both;
}

.landingPageMidText h4 {
  display: inline-block;
  width: 100%;
  clear: both;
  font-size: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.serviceIcon {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.serviceIcon img {
  width: 100%;
}

.serviceDesc {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4em;
  z-index: 1;
  color: #444;
  margin-bottom: 24px;
}

.landingMidBtnWrap {
  grid-column: 1 / span 2;
  margin: 48px 0 0;
  text-align: center;
}

.landingMidBtn {
  border: 1px solid #4f1f62;
  color: #4f1f62;
  padding: 12px 20px;
  margin-right: 84px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background .2s;
}

a.landingMidBtn:hover {
  background: #4f1f62;
  color: white !important;
}

#bottom {
  background: var(--dark-aqua);
  position: relative;
}

.barsWrap {
  position: absolute;
  width: 99%;
  margin-left: 1%;
  z-index: 2;
  display: none;
}

.topBar {
  display: block;
  float: left;
  width: 5%;
  height: 60%;
  margin: 10% 1% 30% 0;
  background: #542a74;
}

.up {
  position: relative;
  margin-top: 8%;
}

.down {
  position: relative;
  margin-top: 14%;
}

.right {
  margin-right: 1.5%;
  transform: rotate(2deg);
}

.left {
  margin-left: 1.5%;
  transform: rotate(-1.75deg);
}

#bottom h1 {
  font-size: 48px;
  color: #444;
  font-family: 'Roboto', serif;
  font-weight: 500;
  margin: -12px 0 64px;
  line-height: 1em;
  width: 85%;
  color: white;
}

#bottom p {
  font-size: 18px;
  line-height: 1.4em;
  color: #444;
  font-weight: 400;
  width: 80%;
  color: white;
}

.bottomText, .bottomForm {
  width: 50%;
  float: left;
  z-index: 9;
  position: relative;
}

.formTopBar {
  display: inline-block;
  clear: both;
  width: 240px;
  height: 12px;
  background: #fda364;
  margin: -56px 0 48px;
  transform: rotate(-.9deg);
  display: none;
}

.bottomForm label {
  clear: both;
  font-size: 18px;
  color: white;
  padding: 4px 8px 8px 0;
  float: left;
}

.bottomForm input[type='text'],
.bottomForm input[type='email'],
.bottomForm textarea {
  width: 90%;
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 12px 0;
  color: white;
  max-width: 400px;
  margin-bottom: 20px;
  clear: both;
  float: left;
  border-bottom: 2px solid var(--light-gray);
}

.bottomForm button {
  display; inline-block;
  padding: 16px 24px;
  font-size: 18px;
  border-radius: 3px;
  color: white;
  clear: both;
  float: left;
  border: 2px solid white;
  background: var(--dark-aqua);
  font-weight: 400;
  margin: 24px 0;
  transform: background .2s;
  cursor: pointer;
}

.bottomForm button:hover {
  background: white;
  color: var(--dark-aqua);
}

.captcha-label {
  display: inline-block;
  width: 100%;
  clear: both;
  color: white;
  font-style: italic;
}

.footer {
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  clear: both;
  color: white;
  padding: 0;
  position: relative;
  border-top: 1px solid white;
}

.footerLogo {
  display: inline-block;
  background: url('/static/images/fullstack.svg') no-repeat;
  width: 100%;
  clear: both;
  background-size: 150px;
  height: 36px;
  margin-bottom: 24px;
}

.copyright {
  font-size: 14px;
  padding-right: 164px;
}

.landing .footer, .contact .footer {
  background: var(--light-aqua);
  color: white;
}

.projects .footer {
  background: var(--light-gray);
  color: var(--dark-gray);
}

.projects .footer a {
  color: var(--dark-gray);
}

.projects .footerLogo {
  background: url('/static/images/fullstack-gray.svg') no-repeat;
  background-size: 150px;
}

.footerSection {
  display: inline-block;
  float: left;
  padding: 24px;
  width: 30%;
}

.social {
  float: right;
  padding: 24px;
  text-align: right;
}

.copyright img {
  display: block;
  clear: both;
  margin-bottom: 24px;
  width: 150px;
}

.copyright a {
  text-decoration: none;
  color: white;
}

.copyright a:hover {
  text-decoration: underline
}

.socialWrap h4 {
  font-weight: 400;
  font-size: 24px;
  padding: 12px 0;
  text-transform: uppercase;
  font-family: 'BenchNine', sans-serif;
}

.socialItem {
  padding: 24px;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 8px;
}

.twitter {
  background: url('/static/images/twitter-white.svg') rgba(0, 0, 0, .1) no-repeat 12px 11px;
  background-size: 24px;
}

.twitter:hover {
  background: url('/static/images/twitter.svg') rgba(0, 0, 0, .1) no-repeat 12px 11px;
}

.github {
  background: url('/static/images/github-white.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
  background-size: 24px;
}

.github:hover {
  background: url('/static/images/github.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
}

.linkedin {
  background: url('/static/images/linkedin-white.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
  background-size: 24px;
}

.linkedin:hover {
  background: url('/static/images/linkedin.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
}

.stackoverflow {
  background: url('/static/images/so-white.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
  background-size: 24px;
}

.stackoverflow:hover {
  background: url('/static/images/so.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
}

.flickr {
  background: url('/static/images/flickr-white.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
  background-size: 24px;
}

.flickr:hover {
  background: url('/static/images/flickr.svg') rgba(0, 0, 0, .1) no-repeat 12px 10px;
}

.footerBlogHeader {
  font-weight: 400;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 16px;
  color: #444;
}

.footerBlogLinks {
  list-style: none;
}

.footerBlogLinks li {
  margin-bottom: 4px;
}

.footerBlogLinks a {
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3em;
  color: #444;
}

/* about page */

.about .footer {
  background: var(--light-aqua);
  margin-bottom: 0;
  color: white;
}

.about .footer a  {
  color: white;
}

.about .page-link {
  color: white !important;
}

.about .site-header, .projects .site-header, .blog .site-header {
  position: absolute;
}

.blog .site-header {
  margin: 0;
}

.aboutPage {
  width: 100%;
}

.aboutWrap {
  width: 100%;
  position: relative;
}

.aboutContent {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  min-height: calc(100% - 24px);
}

.aboutTop {
  width: 100%;
  height: 50vh;
  padding: 0 200px;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  position: relative;
  z-index: 3;
  background: linear-gradient(-15deg, black, var(--dark-gray), var(--dark-gray), black);
  background-size: 170% 170%;
  position: relative;
}

.aboutTop:after {
  content : "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('/static/images/cross.svg');
    width: 100%;
    height: 100%;
    opacity : 0.1;
    z-index: -1;
}

.aboutMid {
  width: 100%;
  display: inline-block;
  background: var(--light-gray);
}

.aboutMidTop {
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  position: relative;
  z-index: 3;
  padding: 0 200px;
  height: 40vh;
}

.aboutMidTop h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  line-height: 1em;
  color: var(--dark-gray);
  width: 100%;
  font-weight: 500;
  margin-bottom: 36px;
  max-width: 800px;
}

.aboutMidTop p {
  font-size: 21px;
  line-height: 1.4em;
  color: var(--dark-gray);
  width: 100%;
  margin-bottom: 52px;
  max-width: 800px;
}

#aboutMidList {
  display: none;
  background: var(--light-gray);
  padding: 100px 200px;
  border-top: 1px dotted var(--medium-gray);

}

.aboutTop h1 {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 72px;
  max-width: 800px;
  color: white;
  line-height: 1em;
}

.aboutTop p {
  font-size: 36px;
  line-height: 1.2em;
  color: var(--dark-gray);
  padding: 0 0 16px 0;
}

.aboutBottom h2 {
  width: 100%;
  display: inline-block;
  clear: both;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 42px;
  margin-bottom: 60px;
  color: white;
  text-align: center;
}

.aboutItem {
  display: inline-block;
  width: 49%;
  padding: 12px 12px 24px;
  vertical-align: top;
}

.aboutImage {
  width: 25%;
  display: inline-block;
  float: left;
}

.aboutImage img {
  width: 100%;
  border-radius: 50%;
}

.aboutText {
  width: 75%;
  float: right;
  padding: 0 36px;
}

.aboutText h3 {;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 24px;
  color: white;
}

.aboutText p {
  font-size: 16px;
  line-height: 1.4em;
  color: #444;
  margin-bottom: 1em;
  color: white;
}

.aboutText a {
  color: white;
}

.aboutText a:hover {
  color: var(--pink-color);
}

.aboutBottom {
  float: left;
  width: 100%;
  display: inline-block;
  background: var(--dark-aqua);
  padding: 100px 200px;
}

.aboutMid ul {
  display: inline-block;
  margin-bottom: 36px;
  list-style-type: none;
}

.aboutMid li {
  line-height: 1.4em;
  font-size: 21px;
  color: var(--dark-gray);
}

.aboutMid li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  background: var(--pink-color);
  mask: url('/static/images/icon-check.svg') no-repeat;
}

#aboutMidList p {
  line-height: 1.6em;
  font-size: 21px;
  color: var(--dark-gray);
}

#aboutMidList a {
  color: var(--dark-gray);
  text-decoration: underline;
}

#aboutMidList a:hover {
  color: #FCF184;
}

.aboutMid h3 {
  display: inline-block;
  width: 100%;
  clear: both;
  margin-bottom: 24px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: var(--light-aqua);
  font-size: 21px;
}

.projects {
  
}

.projectsPage {
  width: 100%;
}

.about .site-title {
  background: url('/static/images/fullstack.svg') no-repeat !important;
  background-size: 160px !important;
  opacity: 1 !important;
  height: 60px !important;
}

.projects .site-title {
  background: url('/static/images/fullstack-gray.svg') no-repeat !important;
  background-size: 160px !important;
  opacity: 1 !important;
  height: 60px !important;
}

.projects .site-nav .page-link,
.post .site-nav .page-link {
  color: black !important;
}

.projects .headerDivider {
  background: var(--pink-color);
}

.blog .headerDivider {
  background: #666;
}

.about .headerDivider {
  background: var(--pink-color);
  z-index: 5;
}

.projectsWrap {
  width: 100%;
  background: var(--light-gray);
  display: inline-block;
  padding: 72px 100px 0;
  position: relative;
  float: left;
}

.workPostsWrap {
  width: 70%;
  float: right;
  display: inline-block;
}

.blogLinksWrap {
  width: 25%;
  display: inline-block;
  background: white;
  padding: 24px 36px;
  float: left;
  font-family: 'Anonymous Pro', sans-serif;
}

.blogLinksWrap h4 {
  color: white;
  background: var(--light-aqua);
  padding: 4px 8px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 24px;
}

.blogLinksWrap a {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 1.4em;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  color: var(--medium-gray);
}

.projectsHeaderWrap {
  display: inline-block;
  width: 100%;
  float: left;
  color: var(--medium-gray);
}

.projectsHeaderWrap h1 {
  line-height: 1em;
  font-size: 48px;
  font-weight: 500;
  margin: 0 0 28px 30%;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  color: var(--dark-aqua);
}

.spacer {
  display: none;
}

.projectsHeaderWrap p {
  font-size: 20px;
  line-height: 1.2em;
  margin-bottom: 110px;
  width: 100%;
  display: inline-block;
  text-align: right;
}

.serviceItem.design{
  color: #FF0033;
}

.serviceItem.develop {
  color: #FD9545;
}

.serviceItem.deploy {
  color: #10B6A8;
}

.postWrap {
  display: inline-block;
  background: white;
  width: 100%;
  margin-bottom: 36px;
  color: #151515;
  padding-bottom: 24px;
}

.postWrap h3 {
  font-size: 20px;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #d5ded9;
  padding: 24px 48px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}

.postWrap h4 {
  font-size: 16px;
  width: 100%;
  display: inline-block;
  padding: 0 48px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}

.postWrap p, .postWrap ul, .postWrap ol {
  font-size: 16px;
  line-height: 1.4em;
  padding: 0 48px;
  margin-bottom: 24px;
}

.postWrap .tech-used {
  background: url('/static/images/icon-computer.svg') 48px -3px no-repeat;
  font-size: 14px;
  padding: 0 48px 0 80px;
  width: 100%;
  display: inline-block;
}

.postWrap pre {
  display: inline-block;
  clear: both;
  background: #FFFFCC;
  padding: 24px 36px;
  font-family: 'Anonymous Pro', sans-serif;
  margin: 12px 24px 24px;
  width: calc(100% - 48px);
  overflow-x: scroll;
}

.postWrap h3 a {
  text-decoration: none;
  color: black;
}

.postWrap ul, .postWrap ol {
  list-style-position: inside;
}

.postWrap img {
  max-width: 100%;
  float: left;
  margin: 0 24px 24px 0;
}

.helloSales {
  display: inline;
  width: 200px;
}

.magicImage {
  border: 1px solid #d5ded9;
}

.magicHalfImage {
  display: inline-block;
  width: 46%;
  margin: 0 2% 24px 2% !important;
}

.postWrap iframe {
  width: calc(100% - 96px) !important; /* to override inline styling */
}

.smallPostImage {
  float: right;
  padding: 0 24px;
  width: 350px;
}

.blog {
  width: 100%;
}

.blog .site-title {
  background: url('/static/images/fullstack-blue.svg') no-repeat !important;
  background-size: 160px !important;
  opacity: 1 !important;
  position: absolute !important;
  height: 60px !important;
}

.blog .page-link, .blog .footer a {
  color: #444 !important;
}

.blog .footer {
  background: var(--light-gray);
  width: 100%;
  color: #444;
}

.blog .footerLogo {
  background: url('/static/images/fullstack-blue.svg') no-repeat;
  background-size: 150px;
}

.blogPage {
  width: 100%;
  background: var(--light-gray);
  min-height: calc(100vh - 280px);
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  position: relative;
}

.blogContent {
  width: 100%;
  padding: 100px 300px;
  position: relative;
}

#contactUsThanks {
  position: relative;
  clear: both;
  color: white;
  font-size: 18px;
}

/* media queries */

@media screen and (max-width: 1430px) {
  .projects .site-title {
    background-size: 140px !important;
  }

  #top img {
    width: 248px;
    margin-bottom: 64px;
    clear: both;
  }

  #top h1 {
    font-size: 48px;
    line-height: 1em;
    margin: 0 0 32px;
  }

  #top p {
    font-size: 18px;
    max-width: 70%;
    line-height: 1.4em;
    margin-bottom: 36px;
  }

  .learnMoreBtn {
    padding: 12px;
    font-size: 18px;
  }

  #mid h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: .9em;
  }

  #mid p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  #mid .landingPageContent {
    padding-top: 28px;
  }

  .landingPageMidText h4 {
    font-size: 16px;
  }

  .landingPageGraphicWrap {
    padding: 48px 0 0;
  }

  .landingPageGraphic {
    margin: 0  auto 12px;
    grid-column: 1 / span 1;
    top: 0;
    left: 0;
    padding: 0;
  }

  .midTopBar {
    width: calc(100% - 50px);
  }

  .landingPageGraphic h4 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .landingPageMidHeadline {
    margin-top: -8px;
  }

  .bottomText, .bottomForm {
    padding-bottom: 0;
  }

  .bottomText {
    padding-top: 10%;
  }

  #bottom h1 {
    font-size: 64px;
  }

  #bottom p {
    font-size: 16px;
  }

  .formTopBar {
    margin-bottom: 24px;
  }

  .bottomForm label {
    font-size: 16px;
    padding: 4px;
  }

  .bottomForm input[type='text'], .bottomForm textarea {
    font-size: 16px;
    padding: 8px;
  }

  .bottomForm button {
    font-size: 20px;
  }

  .footerBlogHeader {
    font-size: 18px;
  }

  .footerBlogLinks a {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .projectsWrap {
    padding: 72px;
  }

  .blogContent {
    padding: 100px 200px;
  }

  .aboutContent {
    padding: 100px;
  }

  .copyright img {
    width: 140px;
  }

  .aboutTop {
    height: 45vh;
    padding: 0 150px;
  }

  .aboutTop h1 {
    font-size: 60px;
  }

  .aboutMidTop {
    height: 45vh;
    padding: 0 150px;
  }

  #aboutMidList {
    padding: 50px 150px 50px;
  }

  .aboutBottom {
    padding: 50px 150px;
  }

  .landingPageGraphicWrap {
    grid-template-columns: 1fr;
  }

  .topGraphic {
    grid-column: 1 / span 1;
  }

  .circle {
    top: 72px;
    opacity: .9;
  }

  .serviceLabel {
    font-size: 13px;
  }
}

@media screen and (max-width: 1100px) {
  .landingPageContent, #bottom .footer {
    padding: 0 50px;
  }

  .projectsHeaderWrap h1 {
    margin-bottom: 64px;
  }

  .projectsWrap {
    padding: 72px 48px;
  }

  .blogLinksWrap {
    width: 33%;
    margin-left: 0;
  }

  .blogContent {
    padding: 100px;
  }
}

@media screen and (max-width: 800px) {
  .headerDivider {
    display: none;
  }

  .landingPage {
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0;
    display: inline-block;
    overflow: auto;
    overflow-x: hidden;
  }

  .landing .site-title {
    display: none;
  }

  #top img {
    width: 140px;
    float: left;
    margin: 20px 0 36px;
  }

  #top h1 {
    clear: both;
    font-size: 30px;
    font-weight: 400;
    display: inline-block;
    margin: 0 0 36px;
    float: left;
    line-height: 1em;
  }

  #top p {
    font-size: 15px;
    margin-bottom: 48px;
    max-width: 80%;
  }

  .dotsWrap {
    opacity: .05;
  }

  .barsWrap {
    opacity: .8;
    height: 100%;
  }

  .learnMoreBtn {
    font-size: 16px;
    padding: 8px 10px;
    margin-bottom: 72px;
  }

  #mid {
    overflow: hidden;
  }

  #mid h1 {
    margin-top: 48px;
    font-size: 30px;
    line-height: 1em;
  }

  #mid p {
    font-size: 15px;
    margin-bottom: 24px;
    width: 100%;
  }

  .landingPageGraphicWrap {
    width: 100%;
    padding-bottom: 36px;
  }

  .landingPageMidHeadline {
    width: 100%;
    padding-bottom: 0;
  }

  .serviceIcon {
    width: 120px;
  }

  .serviceDesc {
    width: 60%;
    font-size: 14px;
  }

  #mid .landingPageContent {
    padding: 0 20px;
  }

  .bottomText, .bottomForm {
    width: 100%;
  }

  .bottomText {
    padding: 48px 0 12px;
  }

  #bottom h1 {
    font-size: 30px;
    margin: 0 0 24px;
  }

  #bottom p {
    width: 100%;
    font-size: 15px;
    margin-bottom: 24px;
  }

  .bottomForm {
    padding-bottom: 48px;
  }

  .bottomForm label, .bottomForm input[type='text'] {
    font-size: 15px;
  }

  .bottomForm button {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 16px;
  }

  .formTopBar {
    margin-bottom: 16px;
  }

  .landingPageContent {
    padding: 0 20px;
  }

  .site-header {
    position: absolute;
  }

  .site-nav {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 10px;
    text-align: right; 
  }

  .site-title {
    background-size: 120px !important;
    margin: 24px 20px;
    width: 50%;
  }
    
 .site-nav label[for="nav-trigger"] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer; 
  }

  .site-nav .menu-icon {
      display: block;
      float: right;
      width: 36px;
      height: 26px;
      line-height: 0;
      padding-top: 10px;
      text-align: center; 
  }
        
  .site-nav .menu-icon > svg path {
      fill: white; 
  }

  .site-nav input ~ .trigger {
      clear: both;
      display: none; 
  }
      
  .site-nav input:checked ~ .trigger {
      display: block;
      width: 150px;
      background: white;
      border-radius: 2px;
  }
  
  .site-nav .page-link {
      display: inline-block;
      width: 150px;
      clear: both;
      color: #444 !important;
      padding: 16px;
      margin: 0;
      text-align: left;
      border-bottom: 1px solid #ccc;
  }

  .site-nav .page-link:last-child) {
     border-bottom: none;
  }

  .about .menu-icon, .projects .menu-icon, .blog .menu-icon {
    background: #2B7CA6;
    border-radius: 3px;
    height: auto;
    width: auto;
    padding: 8px;
  }

  .about .menu-icon {
    background: #333;
  }

  .projects .menu-icon {
    background: #c4b99c;
  }

  .blog .menu-icon {
    background: #666;
  }

  .aboutContent {
    padding: 100px 24px;
  }

  .aboutMid, .aboutTop, .aboutBottom {
    width: 100%;
    float: left;
    margin-top: 0;
  }

  .aboutTop h1 {
    font-size: 32px;
  }

  .aboutTop p {
    font-size: 16px;
    width: 100%;
    padding-bottom: 24px;
  }

  .aboutMid h2, .aboutBottom h2 {
    margin: 12px 0;
  }

  .footer {
    width: 100%;
    margin: 0;
  }

  .footerSection {
    width: 100%;
  }

  .footerPosts {
    padding: 12px 24px;
  }

  .copyright img {
    margin-bottom: 8px;
  }

  .social {
    float: left;
    text-align: left;
    padding: 24px;
  }

  .projectsWrap {
    padding: 80px 24px 48px;
  }

  .projectsHeaderWrap {
    width: 100%;
  }

  .projectsHeaderWrap h1 {
    font-size: 30px;
    margin-bottom: 24px;
    text-align: left;
    margin-left: 0;
  }

  .workPostsWrap {
    width: 100%;
    float: left;
    margin-left: 0;
    padding-top: 0;
  }

  .postWrap {
    padding-bottom: 0;
  }

  .postWrap h3 {
    padding: 12px;
    font-size: 18px;
  }

  .postWrap p, .postWrap ul, .postWrap ol {
    font-size: 15px;
    padding: 0 12px;
    margin-bottom: 24px;
  }

  .postWrap .tech-used {
    padding: 0 12px 0 48px;
    background-position-x: 12px;
  }

  .blogLinksWrap {
    width: 100%;
    padding: 24px 12px;
  }

  .blogContent {
    padding: 100px 24px 24px;
  }

  .aboutTop, .aboutMidTop, .aboutBottom {
    height: auto;
    padding: 50px 20px;
    margin-bottom: 12px;
  }

  .aboutBottom {
    padding: 48px 12px;
  }

  .aboutTop {
    min-height: 300px;
    text-align: center;
  }

  .aboutMidTop p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .aboutMidTop .learnMoreBtn {
    margin-bottom: 0;
  }

  #aboutMidList {
    padding: 0 24px 24px;
  }

  #aboutMidList h3 {
    font-size: 18px;
  }

  #aboutMidList li {
    font-size: 16px;
  }

  .aboutItem {
    width: 100%;
  }

  .aboutBottom h2 {
    font-size: 24px;
    margin: 0 0 36px;
  }

  .aboutText {
    padding: 0 0 0 24px;
  }

  .aboutText h3 {
    font-size: 18px;
  }

  .aboutText p {
    font-size: 16px;
  }

  .landingPageGraphicWrap {
    padding: 24px 0 0;
    grid-template-columns: 1fr 1fr;
  }

  .circle {
    width: 360px;
    height: 360px;
    top: 42px;
    left: -10px;
    background: url('/static/images/landing-circle.svg')  no-repeat;
    background-size: 360px;
  }

  .landingPageGraphic {
    width: 120px;
    display: inline-block;
    text-align: center;
    margin-bottom: 24px;
  }

  .midTopBar {
    width: 100%;
  }

  .topGraphic {
    grid-column: 1 / span 2;
    margin: 0 auto 24px;
  }

  .midGraphic {
    position: relative;
    top: -30px;
    left: -28px;
    grid-column: 1 / span 1;
  }

  .bottomGraphic {
    padding-top: 48px;
    margin-left: 48px;
    grid-column: 2 / span 1;
  }

  .landingMidBtnWrap {
    margin-top: 8px;
  }

  .landingMidBtn {
    margin-right: 0;

  }
}