@font-face {
  font-family: "Lora";
  font-weight: normal;
  font-style: normal;
  src: url("fontsfLora.ttf");
}

* {
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  box-sizing: border-box;
}

*::after, *::before {
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  box-sizing: border-box;
}

body {
  font-family: "Lora";
  margin: 0;
  font-size: 0.9em;
}

.contactIcon {
  margin-top: 2rem;
}

.contactIcon img {
  height: 2rem;
}

.nav-toggle img {
  height: 1rem;
}

.nav-toggle.hidden {
  visibility: hidden;
  position: absolute;
}

.nav-toggle.shown {
  visibility: visible;
  position: relative;
}

.wrapper {
  width: 85%;
  margin: 1rem auto;
  text-align: left;
}

.wrapper-70 {
  width: 70%;
  margin: 1rem auto;
  text-align: left;
}

.wrapper-70-noMargin {
  width: 70%;
  margin: 0 auto;
  text-align: left;
}

img.about-img {
  width: 6em;
  height: auto;
}

/* =============================== */
/*             COLORS              */
/* =============================== */
.teal-bg {
  background-color: #00a175;
}

.teal-text {
  color: #00a175;
}

.purple-bg {
  background-color: #69579C;
}

.purple-text {
  color: #69579C;
}

.black-bg {
  background-color: #000;
}

.black-text {
  color: #000;
}

.lightBlue-bg {
  background-color: #7ab5d6;
}

.gray-bg {
  background-color: #777777;
}

.lightGray-bg {
  background-color: #CCCCCC;
}

.lightGray-text {
  color: #CCCCCC;
}

/* ============ */
/*    HEADER    */
/* ============ */
.header-wrap {
  width: 85%;
  margin: 1rem auto;
  position: relative;
}

/* ---------------------- */
/*   Main Navigation Bar  */
/* ---------------------- */
nav .maurice {
  float: left;
  width: 4rem;
  padding: 0.1rem 0.8rem;
  margin-left: 0;
}

.nav-main-wrap {
  width: 80%;
  margin: 0rem auto;
  /*background-color: rgba(255,255,255,0);*/
  background-color: #00a175;
  /* border-top: 0.4em solid rgba(255, 255, 255, 0); */
  /* border-bottom: 0.2em solid #04825B; */
  /* z-index: 99999; */
}

ul.nav-main {
  width: 97%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: inherit;
  z-index: 1;
}

ul.nav-main li {
  float: right;
  margin-top: 2em;
}

ul.nav-main li.cart-nav {
  float: right;
  padding-left: 0;
}

ul.nav-main li.hamburger img {
  width: 30%;
  height: auto;
  padding: 0.45rem 0;
}

ul.nav-main li.logo {
  float: left;
}

ul.nav-main.responsive li.hamburger img {
  width: 30%;
  height: auto;
  padding: 0.45rem 0;
}

ul.nav-main li.hamburger {
  display: none;
  padding: 0;
  padding-right: 0.5rem;
  margin: 0;
  text-align: center;
}

/* ------------------- */
/*       Sections      */
/* ------------------- */
section:not([id]):not([class]) {
  margin: 2em 0;
  padding: 2em 0 4em 0;
}

section p {
  margin-top: 0;
}

/* ---------------- */
/*     Animation    */
/* ---------------- */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */

/* Opera < 12.1 */

.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
            transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
            transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
            transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

/*

/* =============================== */
/*              GRIDS              */
/* =============================== */
/* https://philipwalton.github.io/solved-by-flexbox/demos/grids/ */
/*Basic Grid Styles*/
.Grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

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

.Grid-cell {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.Demo {
  /*padding: .8em 1em 0;*/
  /* margin-bottom: 1em; */
  /* background: $demoMain;*/
  transition: background-color 0.3s ease;
  /* border: 1px solid $demoBorder; */
  border-radius: 3px;
}

.Demo:after {
  content: "";
  display: block;
  margin-top: .8em;
  height: 1px;
}

.Demo:hover {
  /* background: $demoMainDark; */
}

.Demo.Holy {
  background: rgba(102, 51, 255, 0.1);
}

.Demo.Holy:hover {
  background: rgba(102, 51, 255, 0.25);
}

/* With gutters*/
.Grid--gutters {
  margin-left: -1em;
}

.Grid--gutters .Grid-cell {
  padding-left: 1em;
}

.Grid--gutters .Grid--nested .Grid-cell:first-of-type .Demo {
  margin-right: 1em;
}

/* No gutters*/
.Grid--gutters-none {
  margin-left: 0em;
}

.Grid--gutters-none .Grid-cell-none {
  padding-left: 0em;
  margin-top: -1.05em;
  margin-bottom: -0.05em;
}

.Grid--gutters-none .Grid--nested-none .Grid-cell-none:first-of-type .Demo {
  margin-right: 0;
}

/* Justify per row*/
.Grid--right {
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.Grid--center {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Alignment per row */
.Grid--top {
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.Grid--bottom {
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.Grid--center {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Alignment per cell */
.Grid-cell--top {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

.Grid-cell--bottom {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}

.Grid-cell--center {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.navigation {
  list-style: none;
  /*background: deepskyblue;*/
  background: rgba(102, 51, 255, 0.1);
  margin: 0 0 1em;
  border: 1px solid #33cccc;
  border-radius: 3px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navigation a {
  text-decoration: none;
  display: block;
  padding: 1em;
  color: #333;
}

.navigation a:hover {
  background: rgba(64, 0, 255, 0.1);
  border-radius: 3px;
}

.navigation:hover {
  background: rgba(102, 51, 255, 0.25);
}

@media all and (max-width: 800px) {
  .navigation {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media all and (max-width: 600px) {
  .navigation {
    -webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    padding: 0;
  }
  .navigation a {
    text-align: center;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navigation li:last-of-type a {
    border-bottom: none;
  }
}

/*===========================================*/
/* Base classes for all media - Mobile first */
.Grid--cols-2 > .Grid-cell {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  /* flex: 0 0 calc(50% - 0em); */
}

.Grid--cols-2 > .Grid-cell-none {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  /* flex: 0 0 calc(50% - 0em); */
}

.Grid--cols-3 > .Grid-cell {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.Grid--cols-3 > .Grid-cell-none {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.Grid--cols-4 > .Grid-cell {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.Grid--cols-4 > .Grid-cell-none {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.Grid--cols-6 > .Grid-cell {
  -webkit-flex: 0 0 calc(50% - 0em);
      -ms-flex: 0 0 calc(50% - 0em);
          flex: 0 0 calc(50% - 0em);
}

.Grid--cols-12 > .Grid-cell {
  -webkit-flex: 0 0 calc(33.3333% - 0em);
      -ms-flex: 0 0 calc(33.3333% - 0em);
          flex: 0 0 calc(33.3333% - 0em);
}

.Grid--Holy-grail .aside, .Grid--Holy-grail .main {
  -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
          flex: 1 100%;
}

/* One of -- columns*/
.Grid--1of2 > .Grid-cell,
.Grid--1of4 > .Grid-cell:first-of-type,
.Grid--1of3 > .Grid-cell:first-of-type {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.Grid--1of6 > .Grid-cell:first-of-type {
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.Grid--fit > .Grid-cell {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.Grid--full > .Grid-cell {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

/* Tablet (medium) screens */
@media (min-width: 30em) {
  /*
  .Grid--cols-2 > .Grid-cell {
    flex: 0 0 calc(50% - 0em);     
  }
  .Grid--cols-2 > .Grid-cell-none {
    flex: 0 0 calc(50% - 0em);     
  }
  */
  .Grid--cols-4 > .Grid-cell {
    -webkit-flex: 0 0 calc(50% - 0em);
        -ms-flex: 0 0 calc(50% - 0em);
            flex: 0 0 calc(50% - 0em);
  }
  .Grid--cols-4 > .Grid-cell-none {
    -webkit-flex: 0 0 calc(50% - 0em);
        -ms-flex: 0 0 calc(50% - 0em);
            flex: 0 0 calc(50% - 0em);
  }
  .Grid--cols-6 > .Grid-cell {
    -webkit-flex: 0 0 calc(33.3333% - 0em);
        -ms-flex: 0 0 calc(33.3333% - 0em);
            flex: 0 0 calc(33.3333% - 0em);
  }
  .Grid--cols-12 > .Grid-cell {
    -webkit-flex: 0 0 calc(16.6666% - 0em);
        -ms-flex: 0 0 calc(16.6666% - 0em);
            flex: 0 0 calc(16.6666% - 0em);
  }
  .Grid--Holy-grail .aside {
    -webkit-flex: 1 calc(25% - 0em);
        -ms-flex: 1 calc(25% - 0em);
            flex: 1 calc(25% - 0em);
  }
  .Grid--1of2 > .Grid-cell {
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .Grid--1of2 > .Grid-cell-none {
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .Grid--1of6 > .Grid-cell:first-of-type {
    -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .Grid--1of4 > .Grid-cell:first-of-type {
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .Grid--1of3 > .Grid-cell:first-of-type {
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 48em) {
  .sideImage {
    display: none;
  }
  .inner {
    width: 100%;
  }
}

/* Large screens */
@media (min-width: 48em) {
  .Grid--cols-2 > .Grid-cell,
  .Grid--cols-2 > .Grid-cell-none,
  .Grid--cols-3 > .Grid-cell,
  .Grid--cols-3 > .Grid-cell-none,
  .Grid--cols-4 > .Grid-cell,
  .Grid--cols-4 > .Grid-cell-none,
  .Grid--cols-6 > .Grid-cell,
  .Grid--cols-12 > .Grid-cell {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .Grid--Holy-grail .main {
    -webkit-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .Grid--Holy-grail .aside {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .Grid--Holy-grail fcol
.aside-1 {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .Grid--Holy-grail .main {
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .Grid--Holy-grail .aside-2 {
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .Grid--1of2 > .Grid-cell {
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .Grid--1of2 > .Grid-cell-none {
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .Grid--1of6 > .Grid-cell:first-of-type {
    -webkit-flex: 0 0 16.6666%;
        -ms-flex: 0 0 16.6666%;
            flex: 0 0 16.6666%;
  }
  .Grid--1of4 > .Grid-cell:first-of-type {
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .Grid--1of3 > .Grid-cell:first-of-type {
    -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .Grid--3of4 > .Grid-cell:first-of-type {
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .Grid--gutters.Grid--nested .Grid-cell:first-of-type .Demo {
    margin-right: 0;
  }
}

/* =============================== */
/*       INTERACTIVE ELEMENTS      */
/* =============================== */
/* ---------------- */
/*   In-text Links  */
/* ---------------- */
a {
  font-family: "Open Sans";
  font-weight: 700;
  text-decoration: none;
  color: #69579C;
}

a:hover {
  text-decoration: underline;
}

a.button-nav {
  display: inline-block;
  padding: 0.9em 0.5em;
  color: #FFF;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.1s ease-out;
}

a.button-nav:hover, a.button-nav:focus {
  color: #AAA;
}

/* ----------------- */
/* Navigation button */
/* ----------------- */
/* ------------------- */
/*   Dropdown Button   */
/* ------------------- */
.button-dropdown {
  background-color: #4CAF50;
  color: white;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 10rem;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  color: black;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

/* ----------------- */
/*    Checkboxes     */
/* ----------------- */
.checkbox input, .checkbox label {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  line-height: 200%;
}

/* =============================== */
/*             BUTTONS             */
/* =============================== */
/* ----------------- */
/*  Default buttons  */
/* ----------------- */
button {
  display: inline-block;
  margin: 0 1em 1em 0;
  padding: 0.8em 2em;
  background-color: #333;
  border: 0.1em solid #333;
  border-radius: 0.25em;
  color: #FFF;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
  font-size: 0.875rem;
  font-weight: 700;
}

button:hover {
  background-color: #FFF;
  color: #333;
  border: 0.1em solid #333;
  text-decoration: none;
}

.button {
  display: inline-block;
  margin: 0 1em 1em 0;
  padding: 0.8em 2em;
  color: #FFF;
  background-color: #333;
  border: 0.1em solid #FFF;
  border-radius: 0.25em;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
}

.button:hover {
  background-color: #FFF;
  color: #333;
  border: 0.1em solid #333;
  text-decoration: none;
}

input[type=button] {
  display: inline-block;
  margin: 0 1em 1em 0;
  padding: 0.8em 2em;
  background-color: #333;
  border: 0.1em solid #333;
  border-radius: 0.25em;
  color: #FFF;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
  font-size: 0.875rem;
  font-weight: 700;
}

input[type=button]:hover {
  background-color: #FFF;
  color: #333;
  border: 0.1em solid #333;
  text-decoration: none;
}

input[type=submit] {
  display: inline-block;
  padding: 0.8em 3em;
  background-color: #00a175;
  border: 0.1em solid #00a175;
  border-radius: 0.25em;
  color: #FFF;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
  font-size: 0.875rem;
  font-weight: 700;
}

input[type=submit]:hover {
  background-color: #FFF;
  color: #00a175;
  border: 0.1em solid #00a175;
  text-decoration: none;
}

/* ----------------- */
/*  Colored buttons  */
/* ----------------- */
.button-white {
  display: inline-block;
  padding: 0.8em 2em;
  color: #333;
  background-color: #FFF;
  border: 0.1em solid #bbb;
  border-radius: 0.25em;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
}

.button-white:hover {
  background-color: #FFF;
  color: #CC7227;
  border: 0.1em solid #CC7227;
  text-decoration: none;
}

.button-purple {
  display: inline-block;
  padding: 0.8em 2em;
  color: #FFF;
  background-color: #69579C;
  border: 0.1em solid #FFF;
  border-radius: 0.25em;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
}

.button-purple:hover {
  background-color: #FFF;
  color: #69579C;
  border: 0.1em solid #69579C;
  text-decoration: none;
}

.button-teal {
  display: inline-block;
  padding: 0.8em 2em;
  color: #FFF;
  background-color: #00a175;
  border: 0.1em solid #FFF;
  border-radius: 0.25em;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
}

.button-teal:hover {
  background-color: #FFF;
  color: #00a175;
  border: 0.1em solid #00a175;
  text-decoration: none;
}

.button-lightBlue {
  display: inline-block;
  padding: 0.8em 2em;
  color: #FFF;
  background-color: #7ab5d6;
  border: 0.1em solid #FFF;
  border-radius: 0.25em;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
}

.button-lightBlue:hover {
  background-color: #FFF;
  color: #7ab5d6;
  border: 0.1em solid #7ab5d6;
  text-decoration: none;
}

.button-cartItem {
  display: inline-block;
  padding: 0.5em;
  width: 9rem;
  color: #333;
  background-color: #FFF;
  border: 0.1em solid #bbb;
  border-radius: 0.25em;
  margin-top: 1rem;
  text-decoration: none;
  transition: background-color 0.1s ease-out;
}

.button-cartItem:hover {
  background-color: #FFF;
  color: #CC7227;
  border: 0.1em solid #CC7227;
  text-decoration: none;
}

/* ----------------- */
/*  Dropdown Select  */
/* ----------------- */
.select-style {
  border: 1px solid #ccc;
  width: 9.5rem;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #fafafa url("../img/icon-select.png") no-repeat 90% 50%;
  height: 2.2rem;
  vertical-align: middle;
}

.select-style select {
  padding: 0.5625rem 0.875rem;
  width: 130%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
}

.select-style select:focus {
  outline: none;
}

/* =============================== */
/*          TEXT ELEMENTS          */
/* =============================== */
p {
  line-height: 2em;
  font-family: "Lora", serif;
}

p span {
  display: block;
}

p.section-intro {
  font-size: 1.5em;
  line-height: 1.5em;
  margin-bottom: 1em;
}

.dash {
  height: 4px;
  width: 50px;
  display: block;
  margin: 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.05em;
  font-family: "Lato", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  /*text-align: center;*/
}

h1 {
  font-size: 6.3em;
  /* font-weight: 900; */
  font-family: 'Exo', sans-serif;
  margin: 0rem 0;
}

h2 {
  font-size: 2em;
  margin: 1rem 0em;
}

#work h2 {
  margin-top: 1rem;
  margin-bottom: -0.1rem;
}

h3 {
  font-size: 1.25em;
  margin: 0.5rem 0 1rem 0;
}

h4, h5, h6 {
  margin: 1.5rem 0;
}

ul {
  line-height: 200%;
  list-style-type: none;
  padding-left: 2em;
}

li {
  font-family: "Open Sans";
  padding-left: 1em;
  text-indent: 0em;
}

.leftAlign {
  text-align: left;
}

.centerAlign {
  text-align: center;
}

/* ---------------- */
/*    Text Input    */
/* ---------------- */
input[type=text], input[type=email] {
  font-size: 1em;
  width: 100%;
  /*max-width: 100%;*/
  padding: 0.75rem 1.25rem;
  margin: 0.5rem 0;
  border: 0.15em solid #DDD;
  border-radius: 0.25em;
  box-sizing: border-box;
  transition: border 0.2s ease-out;
}

textarea {
  font-size: 1em;
  width: 100%;
  height: 10em;
  max-width: 100%;
  padding: 0.75rem 1.25rem;
  margin: 0.5rem 0;
  border: 0.15em solid #DDD;
  border-radius: 0.25em;
  box-sizing: border-box;
  transition: border 0.2s ease-out;
}

input[type=text]:focus {
  border: 0.15em solid #CC7227;
  outline: none;
}

/* =============================== */
/*        COMBINED ELEMENTS        */
/* =============================== */
/* ---------------- */
/*       Slabs      */
/* ---------------- */
[class^='slab-'] h2 {
  /*color: white;*/
  /*text-transform: uppercase;*/
}

[class^='slab-'] h4 {
  margin-top: -0.5em;
}

[class^='slab-'] .project img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.slab-wrap {
  width: 55%;
  margin: 1rem auto;
  /* background-color: rgba(255, 255, 255, 0); */
  color: #FFF;
  border: 0.4em #FFF solid;
  /* padding: 0.5em; */
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right, #FFF, #FFF 50%, transparent 50%, transparent);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  /*
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
  -webkit-transition: background-position 0.2s ease-in;
  transition: background-position 0.2s ease-in;  
  */
  /*
  &:hover{
    transform: scale(1.01);
    -moz-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -o-transform: scale(1.01);
    -ms-transform: scale(1.01); 
  }
  */
}

.slab {
  text-align: center;
  display: inline-block;
  padding: 0 0;
  width: 100%;
  background-color: none;
  color: #FFF;
}

.slab-black {
  text-align: center;
  display: inline-block;
  padding: 0 0;
  width: 100%;
  background-color: #000;
  color: #FFF;
}

.slab-teal {
  text-align: center;
  display: inline-block;
  padding: 5em 2em;
  width: 100%;
  background-color: #00a175;
  color: #FFF;
}

.slab-purple {
  text-align: center;
  display: inline-block;
  padding: 5em 2em;
  width: 100%;
  background-color: #69579C;
  color: #FFF;
}

.slab-white-text {
  text-align: left;
  display: inline-block;
  padding: 5em 2em;
  width: 100%;
  background-color: #FFF;
  color: #000;
}

.slab-periwinkle-text {
  text-align: left;
  display: inline-block;
  padding: 5em 2em;
  width: 100%;
  background-color: #7B6FB2;
  color: #FFF;
}

.slab-indigo-text {
  text-align: left;
  display: inline-block;
  padding: 5em 2em;
  width: 100%;
  background-color: #243E8F;
  color: #FFF;
}

.slab-white-contact {
  text-align: left;
  display: inline-block;
  padding: 0, 2em;
  margin-top: 5em;
  width: 100%;
  color: #000;
  background: #FFF;
}

.slab-black-text {
  text-align: left;
  display: inline-block;
  padding: 5em 2em;
  width: 100%;
  background-color: #000;
  color: #bbb;
}

.slab-image {
  display: block;
  width: 100%;
  max-height: auto;
  /* min-height: 120px; */
}

.slab-image img {
  max-width: 100%;
  height: auto;
}

.slab-imageP {
  display: block;
}

.slab-imageP img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.slab-image-center {
  display: block;
  width: 100%;
  min-height: 120px;
  max-height: auto;
  text-align: center;
}

.slab-image-center img {
  max-width: 100%;
  height: auto;
}

.placeholder {
  /* background-image:url("img/placeholder-gray.png"); */
  background-image: url("img/placeholder.gif");
}

.placeholder-1080 {
  background-image: url("img/placeholder-1080.png");
}

.inner {
  width: 80%;
}

/* ------------------- */
/*    More Projects    */
/* ------------------- */
.more-project-eg {
  height: 20em;
  color: #FFF;
}

.more-project-eg p {
  position: relative;
  text-align: center;
  top: 50%;
  margin-top: -0.5em;
}

.more-project-eg:hover {
  color: #555;
}

/* ------------------- */
/*   Horizontal Menu   */
/* ------------------- */
.horizontal-item {
  background-color: #eee;
  color: #999;
  border: 0.05em solid #ddd;
}

.horizontal-item:hover {
  background-color: #ccc;
  color: #FFF;
  border: 0.05em solid #ddd;
}

.complete-item {
  background-color: #E0EEE0;
  color: #426F42;
  border: 0.05em solid #ccc;
}

.complete-item:hover {
  background-color: #B7C8B6;
}

.custom-selected {
  background-color: #FFF;
  color: #333;
  border: 0.05em solid #FFF;
}

.custom-selected:hover {
  background-color: #fafafa;
  color: #333;
}

.menu-horizontal ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

.menu-horizontal li {
  float: left;
}

.menu-horizontal li a {
  display: block;
  color: white;
  padding: 0.875rem 1rem;
  border: 0;
  text-align: center;
  text-decoration: none;
}

.menu-horizontal li a:hover {
  background-color: #111;
}

/* ============== */
/*     FOOTER     */
/* ============== */
#footer {
  /* position: absolute; */
  background-color: #f5f5f5;
  width: 100%;
  border-top: 0.1em solid #ccc;
}

.footerLinks {
  padding: 3em 0;
  text-align: center;
}

.footerLinks p {
  display: inline;
  font-size: 0.9em;
  margin-right: 0.8em;
  word-spacing: 0.5em;
}

.footerLinks a {
  font-size: 0.9em;
  /* margin-right: 0.8em; */
}

/* ----------- */
/*    Forms    */
/* ----------- */
form {
  display: inline-block;
}

#subscribe form, #subscribe label {
  margin-bottom: 0;
  vertical-align: middle;
  margin-right: 6rem;
}

form h5 {
  margin-bottom: 0em;
}

/* ====================== */
/*        HOME PAGE       */
/* ====================== */
/* ------------ */
/*  Full Promo  */
/* ------------ */
.full-promo {
  width: 100%;
  height: 100vh;
  padding: 2em 25%;
  border-style: none;
  color: #FFF;
  background-image: url("../img/mauriceYu4.gif");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat, repeat;
  background-attachment: fixed;
}

.full-promo p {
  font-size: 1rem;
}

.full-promo .button-teal {
  margin: 1.25rem 0.5rem 0.1rem 0.5rem;
  width: 12rem;
}

.full-promo .centered {
  margin-top: 50%;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
  transition: margin-bottom 500ms;
}

.full-promo .centered h1 {
  margin-top: -0.3em;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 3px 3px #444;
}

.full-promo .centered h2 {
  font-size: 1.25em;
  margin-top: -0.5em;
  font-family: "Open Sans", serif;
  text-shadow: 2px 2px #444;
}

@media (min-width: 35em) and (max-width: 65em) {
  .full-promo {
    padding: 4em 10%;
  }
  .full-promo h2 {
    font-size: 1.5em;
  }
  .full-promo a, .full-promo p {
    font-size: 0.8em;
  }
  p.section-intro {
    font-size: 1.5em;
  }
  h1 {
    font-size: 4em;
  }
  .slab-white-text {
    text-align: left;
    display: inline-block;
    padding: 3em 1em;
    width: 100%;
    background-color: #FFF;
    color: #000;
  }
  .wrapper-70 {
    width: 80%;
    margin: 0.5rem auto;
    text-align: left;
  }
  .more-projects div.slab-wrap {
    width: 75%;
  }
}

@media (min-width: 0em) and (max-width: 35em) {
  .full-promo {
    padding: 12em 10%;
  }
  .full-promo h2 {
    font-size: 1em;
  }
  .full-promo a, .full-promo p {
    font-size: 0.5em;
  }
  p.section-intro {
    font-size: 1.2em;
  }
  p {
    font-size: 0.9em;
  }
  h1 {
    font-size: 2.5em;
  }
  h3 {
    font-size: 1em;
  }
  .slab-white-text {
    text-align: left;
    display: inline-block;
    padding: 3em 1em;
    width: 100%;
    background-color: #FFF;
    color: #000;
  }
  .wrapper-70 {
    width: 90%;
    margin: 0.5rem auto;
    text-align: left;
  }
  .more-projects div.slab-wrap {
    width: 75%;
  }
}

#home-section1 h2, #home-testimonials h2, #home-about h2 {
  margin-top: 3rem;
  margin-bottom: 2em;
}

.home-wrapper {
  text-align: center;
  width: 95%;
  margin: 1em auto;
}

/* ------------ */
/*  Lazy Load   */
/* ------------ */
.lazy {
  display: none;
}

/* ------------ */
/*   Projects   */
/* ------------ */
.divide {
  margin: 3em 0;
  border: 0.1em dotted #bbb;
}

.proposal {
  margin-bottom: 5em;
}

.tint {
  position: relative;
  float: left;
  cursor: pointer;
}

.tint:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: none;
  transition: background .15s linear;
}

.tint:hover:before {
  background: rgba(16, 37, 181, 0.6);
}

.tint div {
  position: relative;
  z-index: 1;
}

.projectCrazyCrazy {
  background-image: url("../img/projectCrazyCrazy-overlay.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat, repeat;
}

.projectCrazyCrazy:hover .slab-wrap {
  color: #000;
  background-position: 0 0;
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.projectCrazyCrazy-header {
  background-image: url("../img/projectCrazyCrazy-overlay.png");
  height: 50%;
  padding: 1em 0;
  background-attachment: fixed;
  background-position: bottom center;
}

.projectLionhearted {
  background-image: url("../img/projectLionhearted-overlay.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat, repeat;
}

.projectLionhearted:hover .slab-wrap {
  color: #000;
  background-position: 0 0;
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.projectLionhearted-header {
  background-image: url("../img/projectLionhearted-overlay.png");
  height: 50%;
  padding: 1em 0;
  background-attachment: fixed;
}

.projectPrismic {
  background-image: url("../img/projectPrismic-overlay.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat, repeat;
}

.projectPrismic:hover .slab-wrap {
  color: #000;
  background-position: 0 0;
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.projectPrismic-header {
  background-image: url("../img/projectPrismic-overlay.png");
  height: 50%;
  padding: 1em 0;
  background-attachment: fixed;
}

.projectIkea {
  background-image: url("../img/projectIkea-overlay.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat, repeat;
}

.projectIkea:hover .slab-wrap {
  color: #000;
  background-position: 0 0;
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.projectIkea-header {
  background-image: url("../img/projectIkea-overlay.png");
  height: 50%;
  padding: 1em 0;
  background-attachment: fixed;
  background-position: bottom center;
}

.projectBento {
  background-image: url("../img/projectBento-overlay.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat, repeat;
}

.projectBento:hover .slab-wrap {
  color: #000;
  background-position: 0 0;
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.projectBento-header {
  background-image: url("../img/projectBento-overlay.png");
  height: 50%;
  padding: 1em 0;
  background-attachment: fixed;
}

.projectOnett {
  background-image: url("../img/projectOnett-overlay.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat, repeat;
  /*
  &:hover{
    background-image: url("../img/projectOnett-noOverlay.png");
  }
  */
}

.projectOnett:hover .slab-wrap {
  color: #000;
  background-position: 0 0;
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.projectOnett-header {
  background-image: url("../img/projectOnett-overlay.png");
  height: 50%;
  padding: 1em 0;
  background-attachment: fixed;
}

/* ------------ */
/*    Video     */
/* ------------ */
.videoWrapperDemo {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  margin: 4em 0;
  height: 0;
}

.videoWrapperDemo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
