/***
Byte Boilerplate, with parts from Foundation and other sources, noted inline below
Version 2 - 2016-07-11 by MD, SP & the Byte Studios Team
***/




/* rows and columns from http://www.sitepoint.com/understanding-css-grid-systems/ */
.row, .column {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.row:before, .row:after {
	content: " ";
	display: table;
}
.row:after {
	clear: both;
}
.column {
	position: relative;
	float: left;
	display: block;
}
.grid-w-gutters .column + .column {
	margin-left: 1.6%;
}
/* end rows and columns from http://www.sitepoint.com/understanding-css-grid-systems/ */

/* grids and columns */
.float-left { float: left !important; }
.float-right { float: right !important; }
.float-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.clearfix::before, .clearfix::after {
	content: ' ';
	display: table;
}
.clearfix::after { clear: both; }
.invisible { visibility: hidden; }
.is-visible { display: block !important; }
.is-hidden { display: none !important; }

.grid, .grid-w-gutters {
	width: 100%;
	max-width: 1020px;
	position: relative;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.col-1-across { width: 8.33%; }
.col-2-across { width: 16.66%; }
.col-3-across { width: 25%; }
.col-4-across { width: 33.33%; }
.col-5-across { width: 41.66%; }
.col-6-across { width: 50%; }
.col-7-across { width: 58.33%; }
.col-8-across { width: 66.66%; }
.col-9-across { width: 75%; }
.col-10-across { width: 83.33%; }
.col-11-across { width: 91.66%; }
.col-12-across { width: 100%; }
.grid-w-gutters .col-1-across { width: 6.86666666667%; }
.grid-w-gutters .col-2-across { width: 15.3333333333%; }
.grid-w-gutters .col-3-across { width: 23.8%; }
.grid-w-gutters .col-4-across { width: 32.2666666667%; }
.grid-w-gutters .col-5-across { width: 40.7333333333%; }
.grid-w-gutters .col-6-across { width: 49.2%; }
.grid-w-gutters .col-7-across { width: 57.6666666667%; }
.grid-w-gutters .col-8-across { width: 66.1333333333%; }
.grid-w-gutters .col-9-across { width: 74.6%; }
.grid-w-gutters .col-10-across { width: 83.0666666667%; }
.grid-w-gutters .col-11-across { width: 91.5333333333%; }
.grid-w-gutters .col-12-across { width: 100%; }

.no-bullet { margin-left: 0; list-style: none; }

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
/* end grids and columns */

/* form normalizations from Foundation */
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  /*background-color: #fefefe;
  background-color: transparent;*/
  background-image: url(/assets/images/wht-pattern-bg.png);
  background-color: #E8E8E8;
  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
          box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  border-radius: 7px;
  border-radius: 0;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
	border: 1px solid #353a47;
	/*background-color: #fefefe;*/
	outline: none;
	-webkit-box-shadow: 0 0 5px #cacaca;
	        box-shadow: 0 0 5px #cacaca;
	-webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
	transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
	transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
	transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }
input:focus:required:invalid {
  border-color: #D67C70;
}
input:focus:valid {
  border-color: rgb(138, 170, 169);
}
textarea {
  max-width: 100%; }
  textarea[rows] {
	height: auto; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cacaca; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cacaca; }

input::placeholder,
textarea::placeholder {
  color: #cacaca; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed; }

[type='submit'],
[type='button'] {
  border-radius: 7px;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type='search'] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
	cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a; }
  label.middle {
	margin: 0 0 1rem;
	padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }
  .input-group > :first-child {
	border-radius: 7px 0 0 7px; }
  .input-group > :last-child > * {
	border-radius: 0 7px 7px 0; }

.input-group-label, .input-group-field, .input-group-button {
  margin: 0;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #0a0a0a;
  border: 1px solid #cacaca;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
	border-right: 0; }
  .input-group-label:last-child {
	border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.5rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
	margin: 0; }

.input-group .input-group-button {
  display: table-cell; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

legend {
  margin-bottom: 0.5rem;
  max-width: 100%; }

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
	background: #fefefe;
	padding: 0 0.1875rem;
	margin: 0;
	margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #0a0a0a;
  background-color: #fefefe;
  border-radius: 7px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat; }
  @media screen and (min-width: 0\0) {
	select {
	  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
	background-color: #e6e6e6;
	cursor: not-allowed; }
  select::-ms-expand {
	display: none; }
  select[multiple] {
	height: auto;
	background-image: none; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 7px;
  line-height: 1; }
  [data-whatinput='mouse'] button {
	outline: 0; }


/* end form normalizations from Foundation */

/* Animations */
@keyframes morph {
  0% {
    transform: skew(14deg, 50deg);
  } 
  100% {
    transform: skew(3deg, 1deg);
  } 
}

.profile-bg:hover .profile-img{
  transform: skew(0);
  animation: morph 8s ease-in-out infinite both alternate;
}

/* generic custom styles */
/* 
==== Google Fonts ====
font-family: 'Sacramento', cursive;
font-family: 'Open Sans Condensed', sans-serif;
font-family: 'Libre Baskerville', serif;

font-family: 'PT Mono', monospace;
font-family: 'Sarpanch', sans-serif;


*/
body {
	background-color: #ccc;
	margin: 0;
	background-image: url(/assets/images/wht-pattern-bg.png);
	background-color: #E8E8E8;
	padding-top: 60px;
}
/*body:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(90deg, rgba(240, 128, 128, 0.7) 15%, rgba(240, 128, 128, 0.2) 50%, rgba(240, 128, 128, 0.7) 85%);
	opacity: .6; 
}*/
div {
	color: #53708C;
}
p {
	color: #888;
	font-size: 16px;
	margin: 0;
	font-family: 'Libre Baskerville', serif;
}
a {
	color: #648888;
	text-decoration: none;

}
a:hover {
	color: #D67C70;
	transition: color .25s;
	-webkit-transition: color .25s;
	-moz-transition: color .25s;
}


/****** Add Header CSS Here *******/
header {
  height: 60px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 100;
  /* background-image: url(/assets/images/wht-pattern-bg.png);
  background-color: #E8E8E8; */
}

.resume-wrapper {
  display: none;
  position: relative;
  width: 100%;
  background-image: url(/assets/images/wht-pattern-bg.png);
  background-color: #353a47;
  background-blend-mode: overlay;
  text-align: center;
  padding: 3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}
.clear-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.resume-wrapper img {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-shadow: 8px 8px 0px 0px rgb(138, 170, 169);
          box-shadow: 8px 8px 0px 0px rgb(138, 170, 169);
  -webkit-transition: .25s;
  transition: .25s;
}

.resume-wrapper a:hover img {
  -webkit-box-shadow: 8px 8px 0px 0px rgba(214, 124, 112, .7);
          box-shadow: 8px 8px 0px 0px rgba(214, 124, 112, .7);
}

.site-title {
  position: relative;
  margin: 0 auto 10px;
  padding-left: .1em;
  padding-bottom: 0;
  font-family: 'Sarpanch', sans-serif;
  font-weight: black;
  font-size: 70px;
  background-image: url(/assets/images/section-title-bg-black.png);
  background-size: 380px;
  background-color: #D5E1DD;
  background-position: center top;
  background-size: 65%;
  color: transparent;
  letter-spacing: -1.11px;
  line-height: 50px;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-filter: drop-shadow(4px 3px rgba(214, 124, 112, 0.7));
          filter: drop-shadow(4px 3px rgba(214, 124, 112, 0.7));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.site-tagline {
	/* Front End Web Develo: */
	font-family: 'PT Mono', monospace;
	font-size: 10px;
	color: #000000;
	letter-spacing: 2px;
	padding: 0;
  margin: -.5em 0 10em 1em;
}

/*nav button*/
button.nav-button {
  position: absolute;
  top: .25em;
  right: .25em;
  z-index: 10;
  color: #8aaaa9;
  font-size: 20px;
  -webkit-transition: .25s;
  transition: .25s;
  /*text-shadow: 1px 1px 0px #b57d75;*/
}

.nav-button .fa-stack-2x:first-child {
    color: #b57d75;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

button.nav-button:focus, 
button.nav-button:hover {
  outline: none;
}

button.nav-button .fa-inverse {
  color: #353a47;
}
button.nav-button.open {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/* Hamburger Icon */
.hamb-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 1.5px 12px;/*style to design*/
  z-index: 10;
}
.hamb-wrapper:before {
  content: '';
  display: inline-block;
  min-height: 100%;
  vertical-align: middle;
  margin-right: -0.5em;
}
.hamb-wrapper > span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding-left: 15px;
  vertical-align: middle;
}
#hamb-icon {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  float: right;
  vertical-align: middle;
  width: 40px;
  height: 28px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  z-index: 100;
}
#hamb-icon span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #FFE814;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  /* Animate "X" back to Hamburger Icon */
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#hamb-icon span:nth-child(1) {
  top: 0px;
}
#hamb-icon span:nth-child(2) {
  top: 11px;/*style to design*/
}
#hamb-icon span:nth-child(3) {
  top: 11px;/*style to design*/
}
#hamb-icon span:nth-child(4) {
  top: 22px;/*style to design*/
}
#hamb-icon.open span:nth-child(1) {
  top: 22px;/*style to design*/
  width: 0%;
  left: 50%;
}
#hamb-icon.open span:nth-child(2) {
  /* Animate Hamburger Icon into clickable "X" */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hamb-icon.open span:nth-child(3) {
  /* Animate Hamburger Icon into clickable "X" */
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hamb-icon.open span:nth-child(4) {
  top: 22px;/*style to design*/
  width: 0%;
  left: 50%;
}
/* End Hamburger Icon */

/****** Add Header Main Nav Here *******/

.main-nav {
	text-align: right;
	padding: 1em 2em 0 0;
}

.main-nav .nav-header {
  display: block;
  text-align: left;
  font-family: 'PT Mono', monospace;
  font-size: 18px;
  background-color: #648888;
  color: #353A47;
  letter-spacing: 1.38px;
  margin-left: 1em;
  padding: .25em;
  -webkit-transition: .25s;
  transition: .25s;
}

.main-nav a {
	font-family: 'PT Mono', monospace;
	font-size: 18px;
	color: #648888;
	letter-spacing: 1.38px;
	margin-left: 1em;
	-webkit-transition: .25s;
	transition: .25s;
}
.main-nav a.active {
  color: #D67C70;
}
.main-nav a span:nth-child(1) {
	color: #D67C70;
	opacity: 0;
	-webkit-transition: .25s;
	transition: .25s;
}
.main-nav a.active span:nth-child(1) {
	opacity: 1;
}

/****** Add Body Wrapper Here *******/
.body-wrapper {
  margin: 0 auto;
}

.main-content {
	overflow: hidden;
  -webkit-transition: .25s; 
  transition: .25s;
}

/*site accents*/
.arrow-accent {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translate3d(-1em, 300px, 0);
          transform: translate3d(-1em, 300px, 0);
  z-index: 0;
}
.bars-accent {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  z-index: 0;
}

/*site img accents*/
.tee-accent,
.tee-accent-2,
.tee-accent-3 {
  position: absolute;
  top: 30px;
  right: 10px;
  z-index: 1;
  max-width: 8px;
}
.tee-accent-2 {
  top: 300px;
}
.tee-accent-3 {
  top: auto;
  bottom: 30px;
}
.circle-mark-accent {
  position: fixed;
  bottom: 115px;
  left: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  z-index: 1;
  width: 40px;
}
.color-bar-accent {
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  max-width: 6px;
  z-index: 1;
}
.vert-line-accent {
  position: fixed;
  bottom: -5px;
  left: 0;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  max-height: 590px;
  z-index: 1;
}
.circle-mark-accent-2 {
  position: fixed;
  top: 60px;
  left: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  z-index: 10;
  width: 40px;
}

/*site accent text*/
.accent-text {
  font-size: 6px;
  font-family: "PT Mono", monospace;
  text-transform: uppercase;
  color: #353A47;
}

.vert-text,
.color-text,
.color-text-2 {
  position: fixed;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.vert-text {
  bottom: 65px;
  left: -27px;
}
.color-text {
  bottom: 60px;
  left: -8px;
}
.color-text-2 {
  bottom: 190px;
  left: 14px;
}


.profile-img, #glitch {
  position: absolute;
  top: 10vh;
  right: 0;
  /* bottom: -10px; */
  max-width: 350px;
  /*transform: translate3d(-25%, 0, 0);*/
}
.profile-bg {
  /* height: 90%; */
  height: 90vh;
  position: fixed;
  background: rgb(138, 170, 169);
  width: 50vw;
  /*transform: translate3d(-50%, 0, 0);*/
  -webkit-transform: translate3d(-60%, 0, 0);
          transform: translate3d(-60%, 0, 0);
  bottom: 0;
}

.content-wrapper {
	/*float: right;*/
	padding-top: 3em;
  /*background-image: url(/assets/images/wht-pattern-bg.png);
  background-color: #E8E8E8;*/
}

.content-wrapper > section:nth-child(1) {
  margin-top: 200px;
}
.content-wrapper > section {
	margin-bottom: 4em;
}
.content-wrapper > section:last-child {
  margin-bottom: 0;
}

.section-title {
	position: relative;
	font-family: 'PT Mono', monospace;
	font-size: 24px;
	text-transform: uppercase;
	color: #353A47;
	letter-spacing: 0;
	margin-left: 1em;
	margin-bottom: 1em;
}
.section-title:before {
  content: url(/assets/images/section_marker.png);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate3d(-1em, 20px, 0);
          transform: translate3d(-1em, 20px, 0);
}

.content-wrapper p {
	font-family: 'PT Mono', monospace;
	font-size: 14px;
	color: #353A47;
	letter-spacing: 1.17px;
	line-height: 18px;
}

/*projects*/
.project-slider {
  display: block;
  clear: left;
  overflow: hidden;
}
.project-header {
	position: relative;
  margin: 1em auto 1em;
	width: 100%;
	min-height: 225px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	overflow: hidden;
  z-index: 10;
}
.project-header:before {
	content: ' ';
  width: 90%;
	height: 75px;
	position: absolute;
  background-image: url(/assets/images/wht-pattern-bg.png);
	background-color: #E7AAAA;
	left: 0;
	right: 0;
  margin: 0 0;
	top: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
}
h3.project-title {
    font-size: 18px;
}
.header-text {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: .25em;
  -webkit-transform: translate3d(0, 25px, 0);
          transform: translate3d(0, 25px, 0);
}
.project-section:nth-child(odd) .header-text {
	left: auto;
	right: 0;
	margin-right: .25em;
	margin-left: 0;
	text-align: right;
}
.header-thumbnail {
  width: 100%;
  max-width: 300px;
  height: 0;
  padding-bottom: 41%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
  margin: 1em 10px 4em auto;
  /* margin-right: 65px; */
  -webkit-box-shadow: 5px 5px 0px 0px rgba(137, 170, 170, 1);
          box-shadow: 5px 5px 0px 0px rgba(137, 170, 170, 1);
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  padding-top: 3em;
  overflow: hidden;
}
.header-thumbnail:before {
  content: '';
	position: absolute;
  top: 20px;
  right: 20px;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: 1;
}
.header-thumbnail:hover:before {
	opacity: 1;
  width: 40px;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.header-thumbnail:after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: '';
  background-color: #E8E8E8;
  z-index: 1;
  opacity: 0;
  height: 0;
  width: 1px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header-thumbnail:hover:after {
  opacity: 1;
  height: 40px;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.thumbnail-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.header-thumbnail a {
  opacity: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/wht-pattern-bg.png);
  background-color: rgba(137, 170, 170, .7);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .25s;
  transition: .25s;
}
.header-thumbnail:hover a {
  opacity: 1;
}

.thumbnail-text {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  -webkit-transition: .25s;
  transition: .25s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.thumbnail-text h3 {
  font-size: 20px;
}
.thumbnail-text h3,
.thumbnail-text p {
  color: #efefef;
  /*text-shadow: 0.5px 0.5px 0px #353A47;*/
  text-shadow: 1.25px 1.25px 0.25px #353A47;
}
.header-thumbnail:hover .thumbnail-text {
  opacity: 1;
}
.header-thumbnail:hover .thumbnail-text {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.project-section:nth-child(even) .header-thumbnail {
	margin-left: 65px;
	margin-right: 0;
}
.project-details h3 {
	margin: 0 auto 1em;
}

.project-details p {
	margin: 1em auto;
}

.dot {
  padding-left: 1em;
  position: relative;
}
.dot:before,
.block:before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  border-left: dotted 3px #d4e0dc;
}
.tag {
  font-family: 'PT Mono', monospace;
  font-size: 14px;
  color: #d4e0dc;
  letter-spacing: 1.17px;
  line-height: 18px;
  margin: .25em auto;
}
.block {
  padding-left: 1em;
  position: relative;
}

.project-details .block h3 {
  margin: 0em auto 0;
  padding: .5em 0;
}

/*skills text*/
.section-text {
	width: 95%;
	margin: 0;
	padding: .5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*background: rgba(255,255,255,0.2);
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.59), 0 6px 6px 0 rgba(0,0,0,0.09);*/
}


/*contact form*/
.form-wrapper {
	overflow: hidden;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
  font-family: 'PT Mono', monospace;
  color: #353A47;
  /*padding: 2em;*/
  padding: 1em;
  /*background-image: url(/assets/images/wht-pattern-bg.png);
  background-color: #d4e0dc;*/
}
.form-wrapper h3 {
  margin-bottom: 1em;
  width: 100%;
  padding: 1em 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
	font-weight: normal;
}
.portfolio-form fieldset {
	border: none;
	padding: 0;
	margin: 0 0 1em;
}
.portfolio-form label {
  font-size: 14px;
  letter-spacing: 1.17px;
  line-height: 18px;
  display: block; 
  width: 50%;
  margin: 0 auto .5em;
  text-align: left;
}
label.checkbox-label {
  display: inline-block;
  width: auto;
  text-align: left;
}
.portfolio-form .checkbox-label input {
  display: inline-block;
  width: auto;
  margin: 0 1.5em 0 .5em;
}
.portfolio-form input {
  margin-bottom: 1em;
  border: none;
  padding: .5em .5em;
	width: 50%;
}
.portfolio-form input:required:focus:valid,
.portfolio-form textarea:required:focus:valid {
  background-color: #ccffcc;
}
.portfolio-form input:required:focus:invalid,
.portfolio-form textarea:required:focus:valid {
	background-color: #ffafaf;
}
.message {
	width: 50%;
	height: 300px;
}
input.submit-button {
	font-family: 'PT Mono', monospace;
  font-size: 18px;
  color: #648888;
  letter-spacing: 1.38px;
  background-color: transparent;
  border: none;
  /*padding: .5em 2em;*/
  padding: 0;
	width: auto;
  float: right;
  clear: both;
  cursor: pointer;
	text-align: right;
	margin: 1em 0;
}
.submit-button:hover,
.reset-form:hover {
	color: #D67C70;
}
.start-message {
	display: block;
}
.end-message {
	display: none;
}
.start-message,
.end-message {
	text-align: left;
}

.reset-form {
	font-family: 'PT Mono', monospace;
  font-size: 18px;
  color: #648888;
  letter-spacing: 1.38px;
	display: none;
	text-align: left;
  border: none;
  /*padding: .5em 2em;*/
  padding: 0;
  width: auto;
	margin: 1em 0 0;
}

/* project filters */
.filter {
  display: inline-block;
  vertical-align: middle;
  padding: .5em;
  padding-left: .25em;
  margin-right: .25em;
  margin-bottom: 26px;
  font-family: 'PT Mono', monospace;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #648888;
  background-color: #091521;
  cursor: default;
}
.filter:hover,
.filter.active {
  color: #D67C70;
}
.filter-controller {
  display: block;
  margin-right: .5em;
}
@media screen and (min-width: 1024px) {
  .filter-controller {
    display: inline-block;
    vertical-align: middle;
  }
}
.project-section.hide {
  display: none;
}

/****** Add Footer CSS Here *******/
footer {

}
.footer-wrapper {

}
.footer-credits {

}
.footer-credits #copyright {

}
.footer-credits #otherinfo {
  
}

/****** Add WYSIWYG / Body Content CSS Here *******/

h1 {
  color: #091521;
  margin: 0;
  padding: 20px 0 20px 0;
  font-family: 'PT Mono', monospace;
  font-size: 24px;
  line-height: 17px;
  letter-spacing: .05em;
}
h3 {
  color: #333;
  font-size: 16px;
  margin: 0;
  font-family: 'PT Mono', monospace;
}

.blockquote {
  display: block;
  font-family: 'PT Mono', monospace;
  color:  #0c437a;
  font-size: 17px;
  font-style: italic;
  margin-left: 2em;
  padding-left: 1.5em;
  border-left: solid 3px #c5d9ec;
  line-height: 28px;
  quotes: none;
}

.img_right_25,
.img_left_25,
.img_right_50,
.img_left_50 {
  width: 100%;
  margin-bottom: 1em;
}

.img_full_width {
  width: 100%;
  float: none;
  margin-bottom: 1em;
}
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

/*responsive video CSS*/
.embeddedContent {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 48.75%;
  padding-top: 25px;
  margin: 0 auto 1em;
}
.embeddedContent iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* Specific Screen Sizes from Foundation */

/* Small only */
@media screen and (max-width: 639px) {

	/* to disable touch panning / scrolling */
	html,body {
		overflow-x: hidden;
	}
	body {
		position: relative;
    padding-top: 0;
	}
	.grid-w-gutters .column + .column {
		margin-left: 0;
	}
	.grid, .grid-w-gutters { 
    width: 100%; 
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
	/* standard stuff for small only screen */
	.s-one { width: 8.33%; }
	.s-two { width: 16.66%; }
	.s-three { width: 25%; }
	.s-four { width: 33.33%; }
	.s-five { width: 41.66%; }
	.s-six { width: 50%; }
	.s-seven { width: 58.33%; }
	.s-eight { width: 66.66%; }
	.s-nine { width: 75%; }
	.s-ten { width: 83.33%; }
	.s-eleven { width: 91.66%; }
	.s-twelve { width: 100% !important; }

	.s-text-left { text-align: left; }
	.s-text-right { text-align: right; }
	.s-text-center { text-align: center; }
	.s-text-justify { text-align: justify; }



	/****** Add Site CSS Content, Tools for Small Here *******/
  header {
    background: transparent;
    overflow: visible;
  }
  .site-tagline {
    margin-bottom: 300px;
    margin-bottom: 20vh;
    text-shadow: 1px 0.25px 0px #fff;
    /*color: #E8E8E8;*/
  }
  .profile-img, #glitch {
    top: 0;
    top: 100vh;
    bottom: auto;
    max-width: auto;
    width: 350px;
    min-width: 100%;
    -webkit-transform: translate3d(0, -90%, 0);
            transform: translate3d(0, -90%, 0);
  }
  .profile-bg {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: #353a47;
    width: 85vw;
    min-height: 100%;
    padding-top: 60px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); 
    -webkit-transition: .25s; 
    transition: .25s;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .main-nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .main-content.open {
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%); 
  }
  .main-nav a {
    display: block;
    width: 100%;
    text-align: left;
    margin: 1em 0 2em 2em;
  }
  .project-nav {
    margin-top: -1em;
    margin-left: 1.5em;
    padding-left: .5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .project-nav a {
    font-size: 12px;
  }
  .project-nav a.hide {
    display: none;
  }
  .content-wrapper {
    margin-top: 300px;
    margin-top: 70vh;
  }
  .content-wrapper > section {
    background-image: url(/assets/images/wht-pattern-bg.png);
    background-color: #E8E8E8;
    padding-top: 2em;
  }
  .content-wrapper > section:last-child {
    margin-bottom: 0;
  }
  .content-wrapper p {
    padding-right: 1em;
  }
  .project-section:nth-child(odd) .project-header:before {
    left: auto;
  }
  .project-section:nth-child(odd) .header-thumbnail {
    margin-left: 10px;
    float: left;
  }
  .project-details {
    -webkit-transform: translate3d(0, -3em, 0);
    transform: translate3d(0, -3em, 0);
  }


	/****** Add Regular WYSIWYG Content for Small Here *******/
  .img_left_25,
  .img_left_50,
  .img_right_25,
  .img_right_50,
	.img_full_width {
		width: 100%;
		float: none;
		margin: .5em auto 1em;
	}
	.mobile-only {
		display: block;
	}
	.desktop-only {
		display: none;
	}


}

/* Medium and up */
@media screen and (min-width: 640px) {
  
  header.extend {
    position: relative;
  }

  .content-wrapper {
    padding-right: 2em;
    float: right;
    padding-top: 0;
  }

  .site-title {
    font-size: 140px;
    line-height: 100px;
    background-size: auto;
    padding-left: 0;
    padding-top: 0;
  }

  .resume-wrapper {
    margin-top: -60px;
  }

  /*projects*/
  section.projects {
    z-index: 1;
    position: relative;
  }
  /*.project-header {
    margin-top: 3em;
  }
  .project-header:before {
    width: 100%;
    margin: 0 auto;
    transform: translate3d(0, 75px, 0);
  }
  .header-thumbnail {
    width: 100%;
    max-width: 300px;
    padding-bottom: 38%;
    margin-top: 0;
    margin-bottom: 1em;
    margin-right: 65px;
    transform: translateY(0);
    padding-top: 0;
  }
  .project-section:nth-child(even) .header-thumbnail {
    margin-left: 65px;
    margin-right: 0;
  }

  .project-section:nth-child(odd) .header-text {
    left: 0;
    right: auto;
    margin-left: .25em;
    transform: translate3d(0, 95px, 0);
    text-align: left;
  }
  .project-section:nth-child(even) .header-text {
    left: auto;
    right: 0;
    margin-right: .25em;
    margin-left: 0;
    text-align: right;
    transform: translate3d(0, 95px, 0);
  }
  .project-details {
    -webkit-transform: translate3d(0, -3em, 0);
    -moz-transform: translate3d(0, -3em, 0);
    transform: translate3d(0, -3em, 0);
  }*/

}

/* Medium only */
@media screen and (min-width: 640px) and (max-width: 1023px) {

	/* to disable touch panning / scrolling */
	html,body {
		overflow-x: hidden;
	}
	body {
		position: relative;
	}
	/* give us some space */
	.grid, .grid-w-gutters { width: 95%; }

	/* standard stuff for medium only screen */
	.m-one { width: 8.33%; }
	.m-two { width: 16.66%; }
	.m-three { width: 25%; }
	.m-four { width: 33.33%; }
	.m-five { width: 41.66%; }
	.m-six { width: 50%; }
	.m-seven { width: 58.33%; }
	.m-eight { width: 66.66%; }
	.m-nine { width: 75%; }
	.m-ten { width: 83.33%; }
	.m-eleven { width: 91.66%; }
	.m-twelve { width: 100%; }

	.m-text-left { text-align: left; }
	.m-text-right { text-align: right; }
	.m-text-center { text-align: center; }
	.m-text-justify { text-align: justify; }

	/* Show mobile navs and details here */
	.hamb-wrapper,
  .button.nav-button,
  .project-section-nav {
		display: none;
	}
	.header-logo {
		padding-top: 5px;
		margin-left: 5px;
	}
	.header-toolmenu {
		display: none;
	}
	.main-navigation {
		display: none;
	}

  /****** Add Site CSS Content, Tools for Medium Here *******/
  .profile-img, #glitch {
    top: auto;
    bottom: -10px;
  }

  /*projects*/
  .project-section:nth-child(odd) .project-header:before {
    left: auto;
    right: 0;
  }
  /*.project-section:nth-child(odd) .header-thumbnail {
    margin-left: 10px;
    float: left;
  }*/
  .project-section:nth-child(odd) .header-thumbnail {
    margin-left: 85px;
  }
  /*.project-header {
    margin-top: 3em;
  }
  .project-header:before {
    width: 100%;
    margin: 0 auto;
    transform: translate3d(0, 75px, 0);
  }
  .header-thumbnail {
    width: 100%;
    max-width: 300px;
    padding-bottom: 38%;
    margin-top: 0;
    margin-bottom: 1em;
    margin-right: 65px;
    transform: translateY(0);
    padding-top: 0;
  }*/
  /*.project-section:nth-child(odd) .project-header:before {
    left: auto;
  }
  .project-section:nth-child(odd) .header-thumbnail {
    margin-left: 10px;
    float: left;
  }
  .project-details {
    -webkit-transform: translate3d(0, -3em, 0);
    -moz-transform: translate3d(0, -3em, 0);
    transform: translate3d(0, -3em, 0);
  }
  .project-section:nth-child(even) .header-thumbnail {
    margin-left: 65px;
    margin-right: 0;
  }

  .project-section:nth-child(odd) .header-text {
    left: 0;
    right: auto;
    margin-left: .25em;
    transform: translate3d(0, 95px, 0);
    text-align: left;
  }
  .project-section:nth-child(even) .header-text {
    left: auto;
    right: 0;
    margin-right: .25em;
    margin-left: 0;
    text-align: right;
    transform: translate3d(0, 95px, 0);
  }
  .project-details {
    -webkit-transform: translate3d(0, -3em, 0);
    -moz-transform: translate3d(0, -3em, 0);
    transform: translate3d(0, -3em, 0);
  }*/

	/****** Regular WYSIWYG Content for Medium *******/

	.blockquote {
		display: block;
		font-family: 'PT Mono', monospace;
		color:  #0c437a;
		font-size: 17px;
		font-style: italic;
		margin-left: 2em;
		padding-left: 1.5em;
		border-left: solid 3px #c5d9ec;
		line-height: 28px;
		quotes: none;
	}

	/****** Regular image WYSIWYG Content for Medium *******/
	.img_right_25,
	.img_right_50 {
		float: right;
		width: 50%;
		margin: 1em 0 2em 2em;
	}
	.img_left_25,
	.img_left_50 {
		float: left;
		width: 50%;
		margin: 1em 2em 2em 0;
	}

	.img_full_width {
		width: 100%;
		float: none;
		margin: .5em auto 1em;
	}

	.mobile-only {
		display: none;
	}
	.desktop-only {
		display: none;
	}

}

/* Large and up */
@media screen and (min-width: 1024px) {
	/* Hide mobile navs and details here */
	.hamb-wrapper,
  .button.nav-button {
		display: none;
	}
	.main-navigation-mobile {
		display: none;
	}
	.content-social-buttons {
		display: block;
	}
  
  /****** Add Desktop Only Menu CSS Here *******/
  .main-nav a:hover,
  .main-nav a.active {
    color: #D67C70;
  }
  .project-section-nav {
    display: none;
    position: fixed;
    top: 50%;
    /*right: 5%;*/
    -webkit-transform: translate3d(-110%, -50%, 0);
            transform: translate3d(-110%, -50%, 0);
    z-index: 100;
  }
  .project-section-nav a {
    font-family: 'PT Mono', monospace;
    font-size: 18px;
    color: #648888;
    letter-spacing: 1.38px;
    margin-left: 1em;
    -webkit-transition: .25s;
    transition: .25s;
    display: block;
    margin-top: 1em;
    text-align: right;
    padding: .5em .25em;
  }
  .project-section-nav a:hover,
  .project-section-nav a.active {
    color: #D67C70;
  }

  .project-section-nav a.hover {
    background-color: #091521;
  }
  .project-section-nav a.hide {
    display: none;
  }
  .project-section-nav span:first-child {
    /*display: none;*/
    /*text-shadow: 1px 1px 0px #091521;*/
    /*background-color: #091521;*/
  }
  .project-section-nav span {
    opacity: 0;
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
  }

  .project-section-nav a.hover > span:first-child {
    /*display: inline;*/
    opacity: 1;
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
  }
  .project-section-nav a.hover > span,
  .project-section-nav a.active > span:last-child {
    opacity: 1;
  }

  .profile-bg {
    -webkit-transform: translate3d(-40%, 0, 0);
            transform: translate3d(-40%, 0, 0);
  }


  .project-header {
    margin-top: 3em;
  }
  .project-header:before {
    width: 100%;
    margin: 0 auto;
    -webkit-transform: translate3d(0, 75px, 0);
            transform: translate3d(0, 75px, 0);
  }
  /*.project-section:nth-child(odd) .header-thumbnail {
    float: right;
    margin-left: 
  }*/
  .header-thumbnail {
    width: 100%;
    max-width: 300px;
    padding-bottom: 38%;
    margin-top: 0;
    margin-bottom: 1em;
    margin-right: 65px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-top: 0;
  }
  .project-section:nth-child(odd) .project-header:before {
    left: auto;
  }
  /*.project-section:nth-child(odd) .header-thumbnail {
    margin-left: 10px;
    float: left;
  }*/
  .project-details {
    -webkit-transform: translate3d(0, -3em, 0);
    transform: translate3d(0, -3em, 0);
  }
  .project-section:nth-child(even) .header-thumbnail {
    margin-left: 65px;
    margin-right: 0;
  }

  .project-section:nth-child(odd) .header-text {
    left: 0;
    right: auto;
    margin-left: .25em;
    -webkit-transform: translate3d(0, 95px, 0);
            transform: translate3d(0, 95px, 0);
    text-align: left;
  }
  .project-section:nth-child(even) .header-text {
    left: auto;
    right: 0;
    margin-right: .25em;
    margin-left: 0;
    text-align: right;
    -webkit-transform: translate3d(0, 95px, 0);
            transform: translate3d(0, 95px, 0);
  }
  .project-details {
    -webkit-transform: translate3d(0, -3em, 0);
    transform: translate3d(0, -3em, 0);
  }

	/****** Regular WYSIWYG Content for Large *******/

	/****** Regular Image WYSIWYG Content for Large *******/
  .img_right_25,
  .img_right_50 {
    float: right;
    width: 50%;
    margin: 1em 0 2em 2em;
  }

  .img_left_25,
  .img_left_50 {
    float: left;
    width: 50%;
    margin: 1em 2em 2em 0;
  }

  .img_right_25,
  .img_left_25 {
    width: 25%;
  }
  
  .img_full_width {
    width: 100%;
    float: none;
    margin: .5em auto 1em;
  }
}


/* Large and up */
@media screen and (min-width: 1100px) {
  .profile-bg {
    /* transform: translate3d(-80%, 0, 0); */
    -webkit-transform: translate3d(-40vw, 0, 0);
            transform: translate3d(-40vw, 0, 0);
  }
}

@media screen and (min-height: 745px) {
  .profile-img, #glitch {
    top: auto;
    bottom: -10px;
    transform: translate3d(0,0,0);
  }
}
/* End Specific Screen Sizes from Foundation */





