/* Import fonts and icons */
@import url("all.min.css");
@import url("responsive.css");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600");
/* 1. Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* 2. Main styling */
::-moz-selection {
  background: #e5e5e5;
  text-shadow: none;
}

::selection {
  background: #e5e5e5;
  text-shadow: none;
}

body {
  color: #111111;
  background: #ffffff;
  font-family: "Nunito Sans", "Helvetica", "sans-serif";
  font-size: 1.313em;
  font-weight: 300;
  line-height: 1.6;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
body.start {
  background: #111111;
}

html {
  height: 100%;
}

h1 {
  font-weight: 400;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 1.5em;
  font-size: 3.5em;
  word-break: break-word;
}
h1.project-heading {
  margin-bottom: 0.5em;
}

h2 {
  font-weight: 400;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 1.5em;
  font-size: 2.25em;
}
h2.project-heading {
  margin-bottom: 0.5em;
}

h3 {
  font-weight: 400;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 1.5em;
  font-size: 2em;
}
h3.project-heading {
  margin-bottom: 0.5em;
}

h4 {
  font-weight: 400;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 1.5em;
  font-size: 1.35em;
}
h4.project-heading {
  margin-bottom: 0.5em;
}

h5 {
  font-weight: 400;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual;
  line-height: 1.3;
  color: #111111;
  font-size: 1.35em;
  margin-bottom: 1em;
}

h6 {
  font-weight: 400;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  hyphens: manual;
  line-height: 1.3;
  color: #111111;
  font-size: 1.35em;
  margin-bottom: 1em;
}

p {
  font-size: 1em;
  padding: 0 0 0.938em;
}

a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #111111;
  text-decoration: none;
}
a:active {
  outline: 0;
}
a:focus {
  outline: 0;
}

b {
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.center {
  float: none !important;
  margin: 0 auto;
}

@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
.animate {
  opacity: 0;
}
.animate.show {
  opacity: 1;
}

.fade-in {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -ms-transform: translateY(60px);
  -o-transform: translateY(60px);
  transform: translateY(60px);
}
.fade-in.show {
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

@-webkit-keyframes fade-in-background {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes fade-in-background {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes fade-in-background {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes fade-in-background {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes fade-in-background {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.container {
  padding: 0 5.5em;
}
.container:before {
  content: "";
  display: table;
}
.container:after {
  content: "";
  display: table;
  clear: both;
}

.container-fluid:before {
  content: "";
  display: table;
}
.container-fluid:after {
  content: "";
  display: table;
  clear: both;
}

.row:before {
  content: "";
  display: table;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

main {
  background: #ffffff;
  position: relative;
  padding: 0;
  z-index: 0;
}

section {
  background: #ffffff;
  position: relative;
  width: 100%;
}

header {
  padding: 10em 0 0;
}

.menu {
  background: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 2.5em;
  pointer-events: none;
  z-index: 30;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu .logo {
  float: left;
  pointer-events: auto;
}
.menu .logo p {
  font-size: 1.25rem;
  line-height: 1.375em;
  margin-top: 0.438em;
  margin-left: -0.438em;
  float: left;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu .logo-white {
  position: relative;
  height: 50px;
  width: 50px;
  float: left;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url("../images/logo-white.svg") no-repeat;
  left: 0;
}
.menu .logo-black {
  position: relative;
  height: 50px;
  width: 50px;
  float: left;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url("../images/logo-black.svg") no-repeat;
  left: -2.35em;
}
.menu .hamburger {
  float: right;
  height: 2em;
  width: 2em;
  display: block;
  cursor: pointer;
  padding-top: 0.5em;
  pointer-events: auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.menu .hamburger .bar {
  width: 1.75em;
  height: 0.2em;
  background: #111111;
  position: relative;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.menu .hamburger .bar:after {
  width: 1.75em;
  height: 0.2em;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: #111111;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  -moz-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
}
.menu .hamburger .bar:before {
  width: 1.75em;
  height: 0.2em;
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #111111;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  -moz-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
}
.menu .hamburger.close .bar {
  background: rgba(17, 17, 17, 0) !important;
}
.menu .hamburger.close .bar:after {
  background: #ffffff !important;
  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  -moz-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
}
.menu .hamburger.close .bar:before {
  background: #ffffff !important;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  -moz-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
}
.menu.dark .logo-black {
  opacity: 0;
}
.menu.dark .logo-white {
  opacity: 1;
}
.menu.dark .logo p {
  color: #ffffff;
}
.menu.dark .hamburger .bar {
  background: #ffffff;
}
.menu.dark .hamburger .bar:before {
  background: #ffffff;
}
.menu.dark .hamburger .bar:after {
  background: #ffffff;
}
.menu.light .logo-black {
  opacity: 1;
}
.menu.light .logo-white {
  opacity: 0;
}
.menu.light .hamburger .bar {
  background: #111111;
}
.menu.light .hamburger .bar:before {
  background: #111111;
}
.menu.light .hamburger .bar:after {
  background: #111111;
}
.menu.light .hamburger.close .bar {
  background: rgba(255, 255, 255, 0);
}
.menu.light .hamburger.close .bar:before {
  background: #111111;
}
.menu.light .hamburger.close .bar:after {
  background: #111111;
}
.menu.light .logo p {
  color: rgba(17, 17, 17, 0.9);
}
.menu.intro-active {
  background: none;
}

.navigation {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 20;
}
.navigation.navigation-active {
  pointer-events: auto;
}
.navigation.navigation-active .content {
  right: 0;
}
.navigation.navigation-active .overlay {
  opacity: 0.5;
}
.navigation .content {
  background: #111111;
  position: fixed;
  height: 100%;
  width: 550px;
  top: 0;
  right: -550px;
  pointer-events: auto;
  z-index: 40;
  -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
  -moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
  transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.navigation .content ul.main-navigation {
  right: 110px;
  position: absolute;
  z-index: 50;
}
.navigation .content ul.main-navigation li {
  font-size: 2.5em;
  line-height: 1.5;
  margin-top: 1em;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navigation .content ul.main-navigation li:nth-child(1) {
  margin-top: 0;
}
.navigation .content ul.main-navigation li.active {
  opacity: 0.5;
}
.navigation .content ul.main-navigation li:hover {
  opacity: 1 !important;
}
.navigation .content ul.main-navigation li a {
  color: #ffffff;
}
.navigation .content ul.main-navigation:hover li {
  opacity: 0.5;
}
.navigation .overlay {
  background: #111111;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
  -moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
  transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}

.shifted {
  width: 100%;
  height: 100%;
  top: 100%;
  position: relative;
  -webkit-transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
  -moz-transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
  transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.shifted.shift {
  top: 0;
}
.shifted.shift .intro .fade-in.show {
  opacity: 0;
  -webkit-transform: translateY(-150px);
  -moz-transform: translateY(-150px);
  -ms-transform: translateY(-150px);
  -o-transform: translateY(-150px);
  transform: translateY(-150px);
}
.shifted.no-shift {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.shifted .intro {
  background: #111111;
  height: 100%;
  width: 100%;
  top: 0;
  position: fixed;
}
.shifted .intro a {
  -webkit-transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
  -moz-transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
  transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.shifted .intro a:hover .btn:before {
  width: 100%;
}
.shifted .intro:after {
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  position: absolute;
  pointer-events: none;
  border-bottom: 1.25em solid #ffffff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shifted .intro h1 {
  color: #ffffff;
  margin-bottom: 1.875em;
}
.shifted .intro .background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80% center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  opacity: 1;
  z-index: -1;
}
.shifted main {
  top: 0;
  overflow: hidden;
}

.projects {
  padding: 0 0 5.5em 0;
}
.projects ul li a {
  display: inline-block;
  margin-bottom: 5em;
  cursor: pointer;
}
.projects ul li a .item-container {
  margin-bottom: 1.875em;
}
.projects ul li a .item-container .item-wrapper {
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.projects ul li a .item-container .item-wrapper img {
  display: block;
  height: auto;
  width: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.projects ul li a .item-text p {
  padding: 0;
}
.projects ul li a .item-text p.small {
  font-size: 0.875em;
  opacity: 0.5;
}
.projects ul li a:hover .item-wrapper {
  -webkit-transform: scale(0.97);
  -moz-transform: scale(0.97);
  -ms-transform: scale(0.97);
  -o-transform: scale(0.97);
  transform: scale(0.97);
}
.projects ul li a:hover .item-wrapper img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.about header {
  margin-bottom: 2.25em;
}
.about h3 {
  color: #111111;
}
.about .skills-description {
  margin: 3.125em 0 0 0;
}
.about .skills-heading {
  margin: 2em 0;
}
.about .skills-item {
  margin: 2em 0;
}
.about section:last-child {
  margin-bottom: 5em;
}

.article header {
  padding: 10em 0 1.75em 0;
}
.article main section {
  padding: 0 0 5.375em 0;
}
.article main section:nth-child(2) {
  padding-top: 2.5em;
}
.article main section:nth-last-child(2) {
  padding-bottom: 5em;
}
.article main section img {
  width: 100%;
}
.article main section .description {
  margin-bottom: 80px;
}
.article main section .description h2 {
  font-size: 2em;
  margin-top: 5em;
  margin-bottom: 1em;
}
.article main section .description h2 + h3 {
  margin-top: 0;
  padding-top: 1.25em;
}
.article main section .description img {
  padding-top: 2.5em;
}
.article main section .description p + h2 {
  margin-top: 5.313em;
}
.article main section .media {
  margin-bottom: 5em;
}
.article main section .row div:first-child h2:first-child {
  margin-top: 0;
}
.article main section .row div:first-child p:first-child {
  margin-top: 0;
}
.article main section .row div:last-child {
  margin-bottom: 0;
}

.project-details {
  padding: 4.75em 0 !important;
  border-top: 1px solid #f1f1f1;
}
.project-details .project-info {
  margin-top: 0;
}
.project-details .project-info div {
  margin-top: 0;
}
.project-details a {
  color: #111111;
  border-bottom: 1px solid #111111;
}
.project-details a:hover {
  color: #111111;
  border-bottom: 1px solid #111111;
  opacity: 0.5;
}
.project-details .next {
  text-align: right;
  margin-top: 1.5em !important;
}

.is-exiting {
  background: #ffffff;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 25;
}
.is-exiting.dark {
  background: #000000;
}

footer {
  background: #f9f9f9;
  position: relative;
}
footer h2 {
  font-size: 2em;
  margin: 2em 0 1em;
  opacity: 0.5;
}
footer h3 {
  font-size: 1.25em;
  margin: 0 0 1.75em;
}
footer h3 a {
  color: rgba(17, 17, 17, 0.5);
  border-bottom: 1px solid rgba(17, 17, 17, 0.5);
}
footer h3 a:hover {
  color: #111111;
  border-bottom: 1px solid #111111;
}
footer .right {
  float: right;
  margin-bottom: 3em;
}
footer .right p {
  color: #111111;
  font-size: 0.75em;
  float: right;
  margin-right: 1.25em;
  margin-top: 0.188em;
}
footer .right p a {
  color: rgba(17, 17, 17, 0.5);
}
footer .right p a:hover {
  color: #111111;
}
footer ul.social {
  float: left;
  display: block;
  margin-bottom: 3em;
}
footer ul.social li {
  margin-right: 40px;
  display: block;
  float: left;
}
footer ul.social li:last-of-type {
  margin-right: 0;
}
footer ul.social li a {
  font-size: 1em;
  line-height: 20px;
  color: #111111;
  opacity: 0.5;
}
footer ul.social li a:hover {
  color: #111111;
  opacity: 1;
}

.project-info div {
  margin-top: 2.5em;
}
.project-info div span {
  color: #111111;
  font-size: 0.75em;
  opacity: 0.5;
  margin-bottom: 0.188em;
}

/* Responsive */
@media (max-width: 61.9em) {
  h1 {
    font-size: 2.2em;
    margin-bottom: 1em;
  }
  h1.project-heading {
    margin-bottom: 0.25em;
  }

  h2 {
    font-size: 1.75em;
    margin-bottom: 1em;
  }
  h2.project-heading {
    margin-bottom: 0.25em;
  }

  h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  h3.project-heading {
    margin-bottom: 0.25em;
  }

  h4 {
    font-size: 1.25em;
    margin-bottom: 1em;
  }
  h4.project-heading {
    margin-bottom: 0.25em;
  }

  p {
    font-size: 0.95em;
    padding: 0 0 0.625em;
  }

  header {
    padding: 5em 0 0;
  }

  .projects {
    padding: 0 0 3.125em 0;
  }
  .projects ul li a {
    margin-bottom: 4em;
  }
  .projects ul li a .item-container {
    margin-bottom: 0.938em;
  }
  .projects ul li a .item-text p.small {
    font-size: 0.813em;
  }

  .about header {
    margin-bottom: 2em;
  }
  .about section:last-child {
    margin-bottom: 3.125em;
  }
  .about img#profile {
    width: 100%;
  }

  .article header {
    padding: 6.25em 0 1em 0;
  }
  .article header .col-lg-12 {
    margin-top: 0 !important;
  }
  .article main section {
    padding: 0 0 3.25em 0;
  }
  .article main section:nth-child(2) {
    padding-top: 1.5em;
  }
  .article main section:nth-last-child(2) {
    padding-bottom: 2.5em;
  }
  .article main section .description {
    margin-bottom: 40px;
  }
  .article main section .description h2 {
    margin-top: 3.75em;
    margin-bottom: 1em;
  }
  .article main section .description img {
    padding-top: 1.25em;
  }
  .article main section .description p + h2 {
    margin-top: 5.625em;
  }
  .article main section .media {
    margin-bottom: 2.5em;
  }

  .project-details {
    padding: 1.875em 0 !important;
  }
  .project-details .next {
    text-align: left;
  }

  footer h2 {
    font-size: 1.5em;
    margin: 2em 0 0.75em 0;
  }
  footer .right {
    margin-top: 0.313em;
    margin-bottom: 2em;
  }
  footer .right p {
    font-size: 0.65em;
  }
  footer ul.social {
    font-size: 0.875em;
    margin-bottom: 2em;
  }
  footer ul.social li {
    margin-right: 2.5em;
  }

  .navigation .content ul.main-navigation li {
    font-size: 2em;
    margin-top: 0.75em;
    line-height: 1.3;
  }

  .shifted .intro h1 {
    margin-bottom: 1.25em;
  }
  .shifted .intro .background {
    opacity: 0.5;
  }

  .project-info div {
    margin-top: 0;
  }
}
@media (max-width: 47.9em) {
  body {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }

  .container {
    padding: 0 1.25em;
  }

  .menu {
    background: #ffffff;
    padding: 0.7em 0.7em;
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.25);
  }
  .menu .logo-white {
    top: 0.063em;
    height: 35px;
    width: 35px;
    background: url("../images/logo-white.svg") no-repeat;
    left: 0.2em;
  }
  .menu .logo-black {
    top: 0.063em;
    height: 35px;
    width: 35px;
    background: url("../images/logo-black.svg") no-repeat;
    left: -1.5em;
  }
  .menu.navigation-up {
    top: -3.438em;
  }
  .menu .hamburger {
    height: 2em;
    width: 2em;
    padding-top: 0.538em;
  }
  .menu .hamburger .bar {
    width: 1.375em;
    height: 0.165em;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
  }
  .menu .hamburger .bar:after {
    width: 1.375em;
    height: 0.165em;
    top: 6px;
  }
  .menu .hamburger .bar:before {
    width: 1.375em;
    height: 0.165em;
    bottom: 6px;
  }
  .menu.dark {
    background: none;
  }
  .menu .logo p {
    display: none;
  }

  .navigation .content {
    width: 100%;
    right: -100%;
    border: 0;
  }
  .navigation .content ul.main-navigation {
    left: 20px;
  }

  .shifted .intro:after {
    border-bottom: 0.625em solid #ffffff;
  }
}
@media (max-width: 33.9em) {
  footer .right {
    float: left;
    margin-bottom: 2em;
  }
  footer ul.social {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */