/**
 * Vasir.net style definitions
 *
 *
 */
/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E6ECF3;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1); }

/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }

.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E6ECF3;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1); }

/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }

.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E6ECF3;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1); }

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0; } }

@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0; } }

.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative; }

.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #f8f8f8 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out; }

/**
 * Vendor
 */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
 * Site config - variable definitions for widths, colors, etc
 */
#site__wrapper .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #fdf6e3;
  color: #657b83; }

#site__wrapper .hljs-comment, #site__wrapper .hljs-quote {
  color: #93a1a1; }

#site__wrapper .hljs-keyword, #site__wrapper .hljs-selector-tag, #site__wrapper .hljs-addition {
  color: #859900; }

#site__wrapper .hljs-number, #site__wrapper .hljs-string, #site__wrapper .hljs-meta .hljs-meta-string, #site__wrapper .hljs-literal, #site__wrapper .hljs-doctag, #site__wrapper .hljs-regexp {
  color: #2aa198; }

#site__wrapper .hljs-title, #site__wrapper .hljs-section, #site__wrapper .hljs-name, #site__wrapper .hljs-selector-id, #site__wrapper .hljs-selector-class {
  color: #268bd2; }

#site__wrapper .hljs-attribute, #site__wrapper .hljs-attr, #site__wrapper .hljs-variable, #site__wrapper .hljs-template-variable, #site__wrapper .hljs-class .hljs-title, #site__wrapper .hljs-type {
  color: #b58900; }

#site__wrapper .hljs-symbol, #site__wrapper .hljs-bullet, #site__wrapper .hljs-subst, #site__wrapper .hljs-meta, #site__wrapper .hljs-meta .hljs-keyword, #site__wrapper .hljs-selector-attr, #site__wrapper .hljs-selector-pseudo, #site__wrapper .hljs-link {
  color: #cb4b16; }

#site__wrapper .hljs-built_in, #site__wrapper .hljs-deletion {
  color: #dc322f; }

#site__wrapper .hljs-formula {
  background: #eee8d5; }

#site__wrapper .hljs-emphasis {
  font-style: italic; }

#site__wrapper .hljs-strong {
  font-weight: bold; }

/**
 * Base / default styles
 */
/**
 *
 * Base / default styles
 *
 */
* {
  box-sizing: border-box; }

html, body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  background: #ffffff;
  color: #343434;
  height: 100%;
  padding: 0;
  margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif; }
  h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    text-decoration: none; }

h1, h2 {
  font-weight: 900; }

p, .paragraph {
  margin: 1em 0; }

hr {
  border: 0;
  height: 1px;
  background: #cdcdcd;
  background-image: linear-gradient(to right, #efefef, #cdcdcd, #efefef); }

blockquote {
  border-bottom: 1px solid #cdcdcd;
  border-top: 1px solid #cdcdcd;
  font-size: 0.9em;
  font-style: italic;
  opacity: 0.7;
  padding: 1rem 2rem;
  text-align: center; }

/**
 * Base style classes
 */
.center, .center-text {
  text-align: center; }

.clear {
  clear: both; }

.bold, .font-bold {
  font-weight: bold; }

.font-bolder {
  font-weight: 900; }

.font-sans-serif {
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif; }

.font-italic {
  font-style: italic; }

.border-bottom {
  border-bottom: 1px solid #343434; }

/** Link styles */
a {
  color: inherit;
  text-decoration: none; }

a:hover {
  color: inherit; }

/** Link overrides */
a {
  color: #0386e9;
  text-decoration: none; }

a:hover {
  color: #4477aa;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 3px 0 0 #fff, -3px 0 0 #fff;
  box-shadow: inset 0 -7px 0 0 #fff, inset 0 -8px 0 0 #4477aa; }

.site-content__post-read-more a:hover {
  box-shadow: inset 0 -4px 0 0 #fff, inset 0 -5px 0 0 #4477aa; }

.site-content__about-wrapper a:hover {
  box-shadow: inset 0 -4px 0 0 #fff, inset 0 -5px 0 0 #4477aa; }

/**
.site-content__post-header a:hover {
    box-shadow: inset 0 -6px 0 0 #fff, inset 0 -8px 0 0 $COLOR__BLUE_1_HOVER;
}
*/
.project__nav-next-previous-wrapper a, .project__nav-next-previous-wrapper a:hover,
.site-content__post-header a,
.site-content__post-header a:hover,
.hide-link-outline a,
.hide-link-outline a:hover,
#header__wrapper a,
#header__wrapper a:hover {
  box-shadow: none;
  color: inherit;
  text-shadow: none; }

.hide-link-outline {
  box-shadow: none;
  color: inherit;
  text-shadow: none; }

.hide-link-outline:hover {
  box-shadow: none;
  color: inherit;
  text-shadow: none; }

/**
 * Layout styles
 */
#site__wrapper {
  position: relative;
  height: auto;
  min-height: 100%;
  margin-bottom: -100px;
  text-align: center; }

/**
 *
 * Layout: Header
 *
 */
#header__wrapper {
  position: relative;
  height: 360px;
  overflow: hidden;
  text-align: center; }

#viz-wrapper, #boids-viz {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #4A6B7E;
  background: #ffffff;
  z-index: 0; }

#header-content__wrapper {
  display: inline-block;
  color: #343434;
  height: 0;
  margin: 0 auto;
  position: relative;
  margin-top: 6em;
  text-align: left;
  width: 800px;
  z-index: 10; }
  #header-content__wrapper a:hover {
    text-decoration: none !important; }

.header-intro__name {
  color: #343434;
  font-size: 1.2em;
  pointer-events: visible;
  width: 200px;
  z-index: 10; }

.header-intro__name-first {
  font-size: 3.9em;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 0.8em;
  text-transform: uppercase; }

.header-intro__name-last {
  font-size: 2.1em;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 0 0 0 5px;
  text-transform: uppercase; }

.links-social {
  pointer-events: auto;
  text-align: center;
  margin: 10px 10px 0 0; }
  .links-social svg {
    cursor: pointer;
    margin: 0 10px 0 0;
    opacity: 0.3;
    -webkit-transition: all, 0.4s;
    -moz-transition: all, 0.4s;
    transition: all, 0.4s; }
  .links-social svg:hover {
    opacity: 1; }

#header-nav__wrapper {
  position: absolute;
  top: 1.5em;
  right: 0;
  bottom: auto;
  left: auto;
  text-align: right; }
  #header-nav__wrapper a {
    display: inline-block;
    margin: 0 32px 12px 0; }
  #header-nav__wrapper a:last-child {
    margin-right: 0; }

.header__button {
  background-color: #ffffff;
  border: 2px solid #343434;
  color: #343434;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-style: normal;
  font-weight: bold;
  padding: 4px 12px;
  text-decoration: none;
  text-transform: uppercase; }

.header-nav-item--active {
  background: #c4cad1;
  background: #d5dbe2; }

/**
 *
 * Footer
 *
 */
#footer__wrapper {
  background: #FDFDFE;
  border-top: 1px solid #f2f5f8;
  color: #cfcfcf;
  display: block;
  height: 100px;
  margin-top: 8em;
  padding-top: 2em;
  position: relative; }

#footer__content {
  display: inline-block;
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  margin: 0 auto;
  text-align: left;
  width: 800px;
  font-size: 0.8em;
  text-align: center; }
  #footer__content a {
    color: #cdcdcd; }
  #footer__content a:hover {
    box-shadow: none;
    border-bottom: 1px solid #a0a0a0;
    color: #a0a0a0;
    text-shadow: none; }

/**
 * Page specific styles
 */
/**
 *
 * Layout: Main content
 *
 */
#site-content__wrapper {
  background: #ffffff;
  font-family: "Yrsa", Georgia, serif;
  margin: 0 auto;
  min-height: 200px;
  position: relative;
  text-align: left;
  width: 800px; }

/**
 * About
 */
.site-content__about-wrapper {
  color: #707070;
  font-size: 1.1em;
  line-height: 1.6em;
  margin: 0.5em 0 5em 0; }
  .site-content__about-wrapper strong {
    display: inline-block;
    margin: 0 0.3em 0 0;
    width: 100px; }
  .site-content__about-wrapper .about-color-1 {
    color: #707070;
    font-size: 1.1em; }
  .site-content__about-wrapper .about-color-2 {
    color: #a0a0a0;
    font-size: 1em; }
  .site-content__about-wrapper .site-content__left-side-about {
    font-size: 1.6em;
    left: -148px;
    top: 0; }

.site-content__posts-wrapper,
.site-content__projects-wrapper {
  font-size: 1.6em;
  margin: 2em 0 3.5em 0;
  position: relative; }
  .site-content__posts-wrapper p, .site-content__posts-wrapper .paragraph,
  .site-content__projects-wrapper p,
  .site-content__projects-wrapper .paragraph {
    line-height: 1.4em; }

.site-content__left-meta-aside {
  position: absolute;
  top: 70px;
  right: auto;
  bottom: auto;
  left: -220px;
  color: rgba(0, 0, 0, 0.08);
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  font-size: 1.2em;
  font-style: italic;
  font-weight: 100;
  height: 140px;
  padding: 50px 40px 0 0;
  text-align: right; }

.site-content__left-side-latest-project {
  position: absolute;
  top: 70px;
  right: auto;
  bottom: auto;
  left: -251px; }

.site-content__post-header {
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  font-weight: 900;
  margin: 0 0 6px 0;
  padding: 0 0 6px 0; }
  .site-content__post-header a {
    color: #0386e9; }
  .site-content__post-header a:hover {
    color: #4477aa; }

.site-content__post-meta {
  color: rgba(0, 0, 0, 0.35);
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  font-size: 0.6em;
  padding: 0 0 0.8em 0;
  position: relative; }

.site-content__post-date {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  font-style: italic;
  margin: 0;
  text-align: right; }

.site-content__post-read-more {
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.7em;
  font-style: italic; }

/**
 * Project
 */
.site-content__project-description {
  overflow: auto;
  min-height: 180px;
  position: relative; }

.project-description-text .site-content__post-read-more {
  margin-top: 1.3em; }

.project-description-text {
  margin-left: 190px; }

#site-content__wrapper .project-description-image-wrapper {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  height: 168px;
  overflow: hidden;
  padding: 3px;
  width: 160px; }
  #site-content__wrapper .project-description-image-wrapper a {
    text-decoration: none;
    box-shadow: none;
    text-shadow: none; }
  #site-content__wrapper .project-description-image-wrapper .project-description-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all, 1.4s;
    -moz-transition: all, 1.4s;
    transition: all, 1.4s;
    cursor: pointer;
    height: 160px;
    width: 160px; }
    #site-content__wrapper .project-description-image-wrapper .project-description-image:hover {
      -webkit-transform: scale(1.02);
      -moz-transform: scale(1.02);
      -ms-transform: scale(1.02);
      -o-transform: scale(1.02);
      transform: scale(1.02);
      -webkit-filter: grayscale(0%);
      filter: grayscale(0%); }

.about-light-text {
  font-size: 80%;
  opacity: 0.3; }

.about-color-2-indent {
  margin: 0 0 0 2rem; }

.page__blog #header__wrapper {
  height: 200px; }

.page__blog #header-content__wrapper {
  margin-top: 2em; }

.page__blog .site-content__post-wrapper {
  margin: 0 0 5em 0;
  font-size: 0.9em;
  position: relative; }

.page__blog .site-content__left-meta-aside {
  color: #707070;
  font-size: 0.8em; }

.page__blog .site-content__left-side-date {
  color: #d0d0d0; }

.page__blog .site-content__left-side-blog {
  left: -230px;
  width: 170px; }

.blog__header {
  color: #d0d0d0;
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  font-size: 1.2em;
  font-weight: 100;
  margin: 2em 0 3em 0;
  position: relative;
  text-align: center; }

.blog__num-posts {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto; }

.page__individual-post #header__wrapper {
  height: 200px; }

.page__individual-post #header-content__wrapper {
  margin-top: 2em; }

.page__individual-post #site-content__wrapper {
  font-size: 1.13em; }
  .page__individual-post #site-content__wrapper h1 {
    font-size: 1.4em;
    margin: 1.2em 0 0.8em; }
  .page__individual-post #site-content__wrapper h2 {
    font-size: 1.3em;
    margin: 1.2em 0 0.6em 0; }
  .page__individual-post #site-content__wrapper h3 {
    font-size: 1.2em; }
  .page__individual-post #site-content__wrapper h4 {
    font-size: 1.1em; }
  .page__individual-post #site-content__wrapper h5 {
    font-size: 1.1em; }

/**
 * Post content header
 */
.post-content__title-wrapper {
  margin: 3em 0 3em 0; }

.page__individual-post #site-content__wrapper .post__title {
  border-bottom: 1px solid #343434;
  font-size: 1.6em;
  margin: 0 0 0.4em 0;
  padding: 0 0 0.4em 0; }

.post__creation-meta {
  color: #a0a0a0;
  font-size: 0.8em;
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  position: relative; }

.post__creation-meta-left {
  font-weight: bold; }
  .post__creation-meta-left a {
    color: #a0a0a0; }

.post__creation-meta-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  font-style: italic; }

/**
 * Content
 */
.post-content__wrapper {
  line-height: 1.4em;
  font-size: 1.4em; }

.small-link {
  color: #707070;
  font-size: 0.9em;
  font-style: italic;
  text-align: center;
  margin-top: 0.2em; }

/** * Code blocks */
code, pre code {
  background: #FDF6E4;
  font-size: 16px; }

.post__blockquote {
  background: #fcfcfc;
  margin: 0.5em 0;
  padding: 2px 2px 2px 2em; }

.post-quote-indent {
  padding-left: 2em; }

.post-image-center {
  text-align: center; }
  .post-image-center img {
    margin: 0 auto; }

.post__note-info {
  background: #FDFDFE;
  border: 1px solid #f2f5f8;
  font-size: 0.9em;
  font-style: italic;
  margin: 0.8em 0;
  padding: 4px 4px 4px 2em; }

.post__long-url-box {
  background: #FDFDFE;
  border: 1px solid #f2f5f8;
  padding: 2px;
  overflow: auto; }

.post__intro {
  color: #707070;
  font-size: 0.8em;
  font-style: italic;
  margin-bottom: 1.6em;
  text-indent: 2em; }

/**
 * engage
 */
.post__engage-button {
  border: 2px solid #343434;
  cursor: pointer;
  float: right;
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  font-weight: 700;
  margin: 0 0 0 8px;
  padding: 8px 30px 8px 46px;
  position: relative;
  font-variant: small-caps; }
  .post__engage-button svg {
    position: absolute;
    top: 10px;
    right: auto;
    bottom: auto;
    left: 10px;
    height: 20px;
    width: 20px; }

.post__engage-button-like {
  padding: 8px 30px 8px 20px;
  transition: transform 0.14s, opacity 0.3s; }

.post__engage-button-like:active {
  transform: scale(1.4); }

.post__engage-button-like-clicked {
  opacity: 0.3; }
  .post__engage-button-like-clicked:active {
    transform: scale(1); }

#post__share .post__nav-next-previous-items {
  background: #fafafa;
  padding: 2em 0 1em 0;
  position: relative;
  text-align: center; }

#post__share .post__nav-item {
  display: block;
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  margin: 0 0 1em 0;
  position: relative;
  text-align: center; }

#post__share .post__nav-item-home {
  opacity: 0.3; }
  #post__share .post__nav-item-home .header__button {
    font-weight: 200; }

#post__share .post__nav-item-light {
  font-weight: 200;
  margin-left: 0.2em;
  opacity: 0.7; }

.post__share-engage-items {
  display: flex; }

.post__share-engage-items-left {
  flex-grow: 1; }
  .post__share-engage-items-left .post__engage-button {
    float: left;
    margin: 0; }

.post__share-engage-items-right {
  flex-grow: 4;
  text-align: right; }

.post__email-signup {
  margin: 2rem 0 0 0; }
  .post__email-signup #mc_embed_signup_scroll {
    text-align: left !important; }
  .post__email-signup #mc_embed_signup .button {
    border-radius: 0px;
    background-color: #0386e9; }

.post__email-signup-meta {
  font-style: italic;
  font-size: 0.8em;
  opacity: 0.4; }

.page__portfolio {
  /**
     * Item wrapper
     */
  /**
     * Roles / Etc
     */
  /**
     *
     * Experiments
     *
     */ }
  .page__portfolio #header__wrapper {
    height: 200px; }
  .page__portfolio #header-content__wrapper {
    margin-top: 2em; }
  .page__portfolio .site-content__left-meta-aside {
    color: #707070;
    border-right: 1px solid #e0e0e0;
    font-size: 1.1em;
    top: 0; }
  .page__portfolio .portfolio-items__date {
    color: #d0d0d0;
    display: block;
    font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
    font-size: 0.9em;
    position: relative; }
  .page__portfolio .site-content__left-side-blog {
    bottom: -20px;
    height: auto;
    left: -230px;
    top: 30px;
    width: 170px; }
  .page__portfolio .portfolio-items__item-wrapper {
    cursor: pointer;
    display: block;
    margin: 0 0 6em 0;
    padding: 1em 1em 0em 1em;
    position: relative;
    width: 700px; }
    .page__portfolio .portfolio-items__item-wrapper a {
      color: #343434; }
    .page__portfolio .portfolio-items__item-wrapper a:hover .portfolio-items__header {
      color: #4477aa;
      text-decoration: none;
      text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 3px 0 0 #fff, -3px 0 0 #fff;
      box-shadow: inset 0 -7px 0 0 #fff, inset 0 -8px 0 0 #4477aa; }
    .page__portfolio .portfolio-items__item-wrapper:hover .portfolio-items__image {
      -webkit-transform: scale(1.02);
      -moz-transform: scale(1.02);
      -ms-transform: scale(1.02);
      -o-transform: scale(1.02);
      transform: scale(1.02);
      -webkit-filter: grayscale(0%);
      filter: grayscale(0%); }
  .page__portfolio .portfolio-items__header-wrapper {
    margin: 0 0 0.4em 0;
    position: relative; }
  .page__portfolio .portfolio-items__header {
    color: #0386e9;
    display: inline-block;
    font-size: 1.8em;
    font-weight: 900;
    margin: 0;
    position: relative; }
  .page__portfolio .portfolio-items__description {
    font-size: 1.7em;
    color: #707070; }
  .page__portfolio .portfolio-items__image-wrapper {
    position: absolute;
    top: 0;
    right: -190px;
    bottom: auto;
    left: auto;
    height: 130px;
    overflow: hidden;
    width: 170px; }
  .page__portfolio .portfolio-items__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all, 1.8s;
    -moz-transition: all, 1.8s;
    transition: all, 1.8s;
    height: 130px;
    width: 170px; }
  .page__portfolio .portfolio-items__hook {
    color: #707070;
    display: block;
    font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
    font-size: 0.5em;
    margin: 2em 0 0 0;
    opacity: 0.4; }
  .page__portfolio .portfolio-items__hook-inner {
    clear: both;
    display: block;
    margin: 0.3em 0 0 0; }
  .page__portfolio .portfolio-items__hook-title {
    float: left;
    font-weight: bold;
    margin: 0 1em 0 0;
    width: 50px; }
  .page__portfolio .site-content__portfolio-experiments-wrapper {
    margin: 10em 0 0 0;
    position: relative; }
  .page__portfolio .site-content__portfolio-experiments {
    margin: 4em 0 0 0;
    position: relative; }
  .page__portfolio .portfolio__experiments-wrapper {
    margin: 3em 0 0 0;
    overflow: auto;
    position: relative;
    width: 100%; }
    .page__portfolio .portfolio__experiments-wrapper hr {
      margin: 0 0 3em 0; }
  .page__portfolio .portfolio-experiment__item-wrapper {
    display: block;
    float: left;
    margin: 0 10px 20px 10px;
    position: relative;
    overflow: hidden;
    height: 240px;
    width: 240px; }
  .page__portfolio .portfolio-experiment__image {
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    transition: all, 0.5s;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border: 1px solid #707070;
    height: 240px;
    width: 240px; }
  .page__portfolio .portfolio-experiment__item-content {
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    transition: all, 0.5s;
    -webkit-transform: translateY(-240px);
    -moz-transform: translateY(-240px);
    -ms-transform: translateY(-240px);
    -o-transform: translateY(-240px);
    transform: translateY(-240px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 20px 10px 10px 10px; }
  .page__portfolio .portfolio-experiment__item-wrapper:hover .portfolio-experiment__item-content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  .page__portfolio .portfolio-experiment__item-wrapper:hover .portfolio-experiment__image {
    -webkit-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    transition: all, 0.5s;
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
    transform: scale(1.04); }
  .page__portfolio .portfolio-experiment__item-title,
  .page__portfolio .portfolio-experiment__item-date {
    font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
    font-size: 1.1em;
    font-weight: bold; }
  .page__portfolio .portfolio-experiment__item-date {
    color: #d0d0d0;
    font-size: 0.9em;
    font-weight: lighter;
    margin: 0 0 0.5em 0;
    word-spacing: 2px; }
  .page__portfolio .portfolio-experiment__item-link {
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 20px;
    left: 10px;
    color: #ffffff;
    text-align: right;
    text-decoration: underline; }
    .page__portfolio .portfolio-experiment__item-link:hover {
      color: #99ccff; }

@-webkit-keyframes bounce {
  0%, 90% {
    -webkit-transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-30px); } }

@-moz-keyframes bounce {
  0%, 90% {
    -moz-transform: translateY(0); }
  50% {
    -moz-transform: translateY(-30px); } }

@keyframes bounce {
  0%, 90% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px); } }

.page__project #site__wrapper {
  height: 100%; }

.page__project #site-content__wrapper {
  font-size: 1.4em;
  line-height: 1.62em; }

/**
 * Top header image area
 */
#project__header-wrapper {
  background: #000000;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%; }

#project__header-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-mask-image: -webkit-gradient(linear, left 50%, left 90%, from(black), to(transparent));
  background-attachment: fixed;
  background-size: cover;
  z-index: 1; }

.project__header-title {
  color: #ffffff;
  font-size: 5em;
  padding-top: 2em;
  z-index: 2;
  position: relative; }

.project__header-arrow {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 35px;
  left: 0;
  -webkit-animation: bounce 4.2s ease-in-out infinite;
  -moz-animation: bounce 4.2s ease-in-out infinite;
  animation: bounce 4.2s ease-in-out infinite;
  cursor: pointer;
  z-index: 10; }
  .project__header-arrow svg {
    height: 40px;
    width: 40px; }
    .project__header-arrow svg path {
      stroke: #d0d0d0;
      fill: #d0d0d0; }

#project__header-text {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, transparent 64%);
  height: 180px;
  position: relative;
  z-index: 10; }
  #project__header-text h1 {
    margin: 1.2em 0 20px 0;
    font-size: 4.4em;
    color: #ffffff;
    text-shadow: 0 0 1px #000000, 1px 1px 3px #000000;
    word-spacing: 14px; }

#project__header-text-meta {
  color: #cdcdcd;
  font-size: 1.4em;
  text-shadow: 0 0 1px #000000, 1px 1px 3px #000000; }

/**
 *
 * Content
 *
 */
.project__intro-wrapper {
  text-align: left;
  margin: 0 0 7em 0;
  position: relative; }

.project__intro-header {
  margin: 3.5em 0 3.2em 350px; }
  .project__intro-header h2 {
    margin: 0 0 0.5em 0;
    font-weight: 900;
    font-size: 2.2em;
    line-height: 1.3em; }

.project__intro-subheader {
  color: #707070;
  font-size: 0.9em;
  font-weight: normal;
  margin: 0 0 1em 0; }

/** Description / roles / etc */
.project__intro-description {
  min-height: 400px;
  position: relative; }

.project__intro-description-meta {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 330px; }

.project-description__meta-header {
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif;
  font-weight: 900;
  margin: 0 0 0 0;
  text-transform: uppercase; }

.project-description__meta-text {
  color: #707070;
  font-size: 1em;
  margin: 0 0.2em 2em 0; }

.project__intro-description-text {
  color: #555555;
  color: #707070;
  position: relative;
  font-size: 1.2em;
  margin-left: 350px; }

/**
 *
 * Single project content block
 *
 */
.project__block {
  display: block;
  margin: 2em 0 2em 0;
  position: relative; }
  .project__block iframe {
    border: none; }
  .project__block .project__block-text {
    padding: 0 40px; }
  .project__block .project__block-text-light {
    color: #d0d0d0;
    font-size: 0.8em;
    font-style: italic; }
  .project__block li, .project__block ul {
    color: #707070;
    font-size: 1.1em; }
  .project__block p {
    color: #707070;
    font-size: 1.2em; }
  .project__block h2, .project__block h3 {
    line-height: 1.4em; }
  .project__block blockquote {
    background: #fafafa;
    font-style: italic;
    color: #a0a0a0;
    font-size: 1em;
    padding: 0.2em;
    text-align: center; }

.project__block-image {
  display: block;
  padding: 0;
  margin: 2em 0 2em 0;
  position: relative;
  text-align: center; }
  .project__block-image img {
    display: inline-block; }

.project__block .project__block-image-annotation {
  font-size: 0.8em;
  font-style: italic;
  opacity: 0.5;
  margin-top: 0; }

/**
 * Next / previous
 */
.project__nav-next-previous-wrapper {
  margin: 5em 0 0 0;
  position: relative;
  width: 100%; }

.project__nav-item {
  font-family: "Avenir", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Arial Unicode MS", sans-serif; }

.project__nav-next-previous-items {
  padding: 2em 0 0 0;
  position: relative; }

.project__nav-item-home {
  position: absolute;
  margin-left: -40px;
  opacity: 0.4;
  left: 50%;
  right: 0; }

.project__nav-item-next {
  position: absolute;
  top: 2em;
  right: 0; }

.page__404 #site-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.page__404 #header__wrapper {
  height: 100%; }

.page__404 #header-content__wrapper {
  margin-top: 2em; }

.page__404 .header-intro__name {
  background: none; }

.page-not-found__big-text {
  font-size: 2.7em;
  margin: 2em 0 2em 0; }

.page-not-found__go-home {
  color: #343434;
  font-size: 1.8em;
  text-align: center; }
  .page-not-found__go-home a {
    text-decoration: underline; }

/**
 * Responsive overrides
 */
@media (max-width: 1250px) {
  #site-content__wrapper,
  #footer__content,
  .page__portfolio .portfolio-items__item-wrapper {
    width: 650px; }
  .page__portfolio .site-content__left-side-blog {
    display: none; }
  .site-content__portfolio-wrapper {
    margin-left: -18%; } }

@media (max-width: 840px) {
  #site-content__wrapper,
  #footer__content,
  .page__portfolio .portfolio-items__item-wrapper {
    width: 600px; }
  #header-nav__wrapper {
    left: 300px;
    right: auto; }
  .site-content__portfolio-wrapper {
    margin-left: auto; }
  .page__portfolio .portfolio-items__image-wrapper {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    height: 160px;
    width: 160px; } }

@media (max-width: 620px) {
  #site-content__wrapper,
  #footer__content,
  .page__portfolio .portfolio-items__item-wrapper {
    width: 500px; }
  .page__portfolio .site-content__portfolio-experiments {
    padding-left: 20%; }
  .project__intro-header {
    margin-left: 1em;
    margin-right: 1em; }
  .project__intro-description-meta {
    display: block;
    position: relative; }
  .project__intro-description-text {
    display: block;
    margin-left: 0;
    position: relative; }
  .project__nav-next-previous-wrapper a {
    display: block;
    left: auto;
    margin: 6px 0 0 0;
    position: relative;
    text-align: center; }
  .project__nav-item-next {
    top: 0; }
  .project__block {
    font-size: 0.85em; }
  .project__block .project__block-text {
    padding: 0; } }

@media (max-width: 500px) {
  #site-content__wrapper,
  #footer__content,
  .page__portfolio .portfolio-items__item-wrapper {
    padding: 0 4px;
    width: 400px; }
  #header-nav__wrapper {
    left: 170px;
    right: auto; }
  #header-nav__wrapper a {
    margin-right: 10px; }
  .links-social {
    margin-left: -60px; }
  .header-intro__name {
    font-size: 0.8em; }
  .page__portfolio .portfolio-items__image-wrapper {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    height: 160px;
    width: 160px; }
  .page__portfolio .site-content__portfolio-experiments {
    padding-left: 20%; } }
