@charset "UTF-8";
/*
Theme Name: tlh-2015
Author: Thomas L'huillier
Author URI: http://thomaslhuillier.com/
Description: Le thème de mon portfolio perso v2015.
Version: 1.0
*/
/**
 * Table of Contents
 *
 * 1.0 - Reset
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigations
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Header
 * 11.0 - Widgets
 * 12.0 - Content
 *    12.1 - Posts and pages
 *    12.2 - Post Formats
 *    12.3 - Comments
 * 13.0 - Footer
 * 14.0 - Media
 *    14.1 - Captions
 *    14.2 - Galleries
 * 15.0 - Multisite
 * 16.0 - Media Queries
 *    16.1 - Mobile Large
 *    16.2 - Tablet Small
 *    16.3 - Tablet Large
 *    16.4 - Desktop Small
 *    16.5 - Desktop Medium
 *    16.6 - Desktop Large
 *    16.7 - Desktop X-Large
 * 17.0 - Print
 */
/**
 * 1.0 - Reset
 *
 * Resetting and style fixes thanks to
 * http://necolas.github.com/normalize.css/
 */
/*
	Margin, padding, and border resets (except for form elements)
*/
/* line 61, ../sass/screen.scss */
body, div,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
}

/*
	Consistency fixes
*/
/* line 76, ../sass/screen.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, nav, section, audio, canvas, video {
  display: block;
}

/* line 81, ../sass/screen.scss */
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 87, ../sass/screen.scss */
body {
  min-height: 100%;
  font-size: 100%;
}

/* line 92, ../sass/screen.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 99, ../sass/screen.scss */
sup {
  top: -0.5em;
}

/* line 100, ../sass/screen.scss */
sub {
  bottom: -0.25em;
}

/* line 102, ../sass/screen.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 108, ../sass/screen.scss */
b, strong {
  font-weight: bold;
}

/* line 109, ../sass/screen.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 111, ../sass/screen.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 116, ../sass/screen.scss */
a img, img {
  -ms-interpolation-mode: bicubic;
  border: 0;
}

/* line 121, ../sass/screen.scss */
input, textarea, button, select {
  margin: 0;
  font-size: 100%;
  line-height: normal;
  vertical-align: baseline;
}

/* line 128, ../sass/screen.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

/* line 136, ../sass/screen.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 145, ../sass/screen.scss */
textarea {
  overflow: auto;
}

/* line 5, ../sass/loader.scss */
#loader-wrapper {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999998;
  background: #4B7DFF;
}

/* line 15, ../sass/loader.scss */
#loader {
  height: 90px;
  padding-top: 30px;
  margin: 0 auto;
  margin-top: 400px;
  margin-left: -65px;
  text-align: center;
  z-index: 9999999;
}

/* line 25, ../sass/loader.scss */
#loader span {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 5px solid #F0F0EE;
  border-radius: 999px;
  -webkit-animation: radar 2s infinite linear;
  -moz-animation: radar 2s infinite linear;
  animation: radar 2s infinite linear;
  opacity: 0;
  z-index: 9999999;
}

/* line 38, ../sass/loader.scss */
#loader span:nth-child(1) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

/* line 43, ../sass/loader.scss */
#loader span:nth-child(2) {
  -webkit-animation-delay: 0.66s;
  -moz-animation-delay: 0.66s;
  animation-delay: 0.66s;
}

/* line 48, ../sass/loader.scss */
#loader span:nth-child(3) {
  -webkit-animation-delay: 1.33s;
  -moz-animation-delay: 1.33s;
  animation-delay: 1.33s;
}

@-webkit-keyframes radar {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}
@-moz-keyframes radar {
  0% {
    -moz-transform: scale(0);
    opacity: 0;
  }
  25% {
    -moz-transform: scale(0);
    opacity: 0.5;
  }
  50% {
    -moz-transform: scale(1);
    opacity: 1;
  }
  75% {
    -moz-transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    -moz-transform: scale(2);
    opacity: 0;
  }
}
@keyframes radar {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  75% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* line 5, ../sass/single.scss */
header span {
  display: block;
  margin-top: -28px;
  font-family: 'p-regular';
  font-size: 18px;
  color: #999999;
}

/* line 13, ../sass/single.scss */
.item-content {
  margin-bottom: 20px;
}
/* line 15, ../sass/single.scss */
.item-content a {
  display: block;
  text-decoration: none;
  color: #15171B;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}
/* line 23, ../sass/single.scss */
.item-content img {
  display: block;
  width: 100%;
  height: auto;
}
/* line 28, ../sass/single.scss */
.item-content figcaption {
  opacity: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  margin: 0;
  transition: opacity 0.2s;
}
/* line 37, ../sass/single.scss */
.item-content figcaption span {
  display: block;
  margin-right: 20px;
  padding: 5px 0 5px 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}
/* line 46, ../sass/single.scss */
.item-content:hover figcaption, .item-content a:focus figcaption {
  opacity: 1;
}

/* line 52, ../sass/single.scss */
.description {
  margin-left: -230px;
  padding: 0 10px;
  width: 210px;
  min-height: 340px;
}
/* line 58, ../sass/single.scss */
.description a {
  color: #4B7DFF;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: -5px;
}
/* line 67, ../sass/single.scss */
.description a:before {
  content: "";
  position: absolute;
  left: 100%;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  background: #4B7DFF;
  height: 2px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
/* line 84, ../sass/single.scss */
.description a:hover::before, .description a:focus::before {
  left: 0;
}

/* line 91, ../sass/single.scss */
.big {
  width: 440px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

/* line 98, ../sass/single.scss */
.item-content .brief {
  display: block;
  font-family: 's-bold';
  font-size: 40px;
  line-height: 44px;
}

/* line 105, ../sass/single.scss */
.item-content .role {
  display: block;
  font-size: 20px;
  line-height: 22px;
  margin: 22px 0;
}

/* line 115, ../sass/single.scss */
.layout figcaption {
  opacity: 1;
}
/* line 118, ../sass/single.scss */
.layout figcaption span {
  color: #15171B;
  background: none;
  transition: color 0.8s ease-out;
}

/*/////     SLIDER     //////*/
/* line 3, ../sass/slider.scss */
#jquery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 500px;
}

/* line 11, ../sass/slider.scss */
#jquery-lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
  text-align: center;
  line-height: 0;
}

/* line 21, ../sass/slider.scss */
#jquery-lightbox a img {
  border: none;
}

/* line 23, ../sass/slider.scss */
#jquery-lightbox-wrapper {
  position: relative;
  padding: 0;
  margin: 0 auto;
  width: 180px;
}

/* line 30, ../sass/slider.scss */
#lightbox-container-image-box {
  position: relative;
  background: #F0F0EE;
  width: 250px;
  height: 250px;
  margin: 0;
}

/* line 37, ../sass/slider.scss */
#lightbox-container-image {
  padding-bottom: 10px;
}

/* line 38, ../sass/slider.scss */
#lightbox-loading {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 23px;
  width: 23px;
  text-align: center;
  line-height: 0;
}

/* line 47, ../sass/slider.scss */
#lightbox-nav {
  position: absolute;
  top: 0;
  padding-top: 4px;
  right: 10px;
  height: 12px;
  width: 40px;
  z-index: 10;
}

/* line 56, ../sass/slider.scss */
#lightbox-container-image-box > #lightbox-nav {
  left: 0;
}

/* line 57, ../sass/slider.scss */
#lightbox-nav a {
  outline: none;
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

/* line 63, ../sass/slider.scss */
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
  width: 12px;
  height: 12px;
  zoom: 1;
  display: block;
}

/* line 69, ../sass/slider.scss */
#lightbox-nav-btnPrev {
  left: 0;
  float: left;
}

/* line 73, ../sass/slider.scss */
#lightbox-nav-btnNext {
  right: 0;
  float: right;
}

/* line 77, ../sass/slider.scss */
#lightbox-container-image-data-box {
  background-color: transparent;
  margin: 0 auto;
  line-height: 1.4em;
  overflow: auto;
  width: 100%;
  padding: 0;
}

/* line 85, ../sass/slider.scss */
#lightbox-container-image-data {
  padding: 0;
  color: #666;
}

/* line 89, ../sass/slider.scss */
#lightbox-container-image-data #lightbox-image-details {
  color: #000;
  float: left;
  width: 185px;
  position: relative;
  text-align: left;
  height: 20px;
  line-height: 20px;
  display: block;
  padding: 0;
  font-size: 11px;
}

/* line 103, ../sass/slider.scss */
#lightbox-container-image-data #lightbox-secNav {
  color: #000;
  float: right;
  width: 110px;
  position: relative;
  text-align: left;
  height: 20px;
  line-height: 20px;
  display: block;
  padding: 0;
  font-size: 12px;
}

/* line 117, ../sass/slider.scss */
#lightbox-image-details-caption,
#lightbox-image-details-currentNumber {
  display: block;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
}

/* line 124, ../sass/slider.scss */
#lightbox-secNav-btnClose {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* line 1, ../sass/tlhbox.scss */
#thlOverlay {
  z-index: 998;
  background: #15171B;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
}

/* line 11, ../sass/tlhbox.scss */
#thlBox-close {
  width: 39px;
  height: 48px;
  position: fixed;
  top: 10px;
  right: 10px;
  font-size: 60px;
  line-height: 30px;
  padding-left: 9px;
}

/* line 22, ../sass/tlhbox.scss */
#thlBox-prev,
#thlBox-next {
  position: fixed;
  width: 38px;
  height: 48px;
  font-size: 36px;
  line-height: 36px;
  padding-left: 10px;
  top: 50%;
  margin-top: -24px;
}

/* line 34, ../sass/tlhbox.scss */
#thlBox-prev {
  left: 10px;
}

/* line 38, ../sass/tlhbox.scss */
#thlBox-next {
  right: 10px;
}

/* line 42, ../sass/tlhbox.scss */
#thlBox-close,
#thlBox-prev,
#thlBox-next {
  z-index: 999;
  cursor: pointer;
  color: #999;
}
/* line 49, ../sass/tlhbox.scss */
#thlBox-close:hover,
#thlBox-prev:hover,
#thlBox-next:hover {
  color: #F0F0EE;
}

/* line 54, ../sass/tlhbox.scss */
#thlBox-close::-moz-selection,
#thlBox-prev::-moz-selection,
#thlBox-next::-moz-selection {
  background: none;
  color: #F0F0EE;
}

/* line 61, ../sass/tlhbox.scss */
#thlBox-close::selection,
#thlBox-prev::selection,
#thlBox-next::selection {
  background: none;
  color: #F0F0EE;
}

/* line 68, ../sass/tlhbox.scss */
#thlBox-full {
  position: fixed;
  z-index: 999;
  top: 10px;
  right: 58px;
  width: 48px;
  height: 48px;
  background: url("../img/fullscreen.png");
  cursor: pointer;
}
/* line 78, ../sass/tlhbox.scss */
#thlBox-full:hover {
  background-position: 0px 48px;
}

/* line 83, ../sass/tlhbox.scss */
#thlBox-status {
  position: fixed;
  z-index: 999;
  top: 23px;
  left: 20px;
  color: #999;
}

/* line 91, ../sass/tlhbox.scss */
#thlBox-descr {
  position: fixed;
  z-index: 999;
  color: #999;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

/* line 1, ../sass/about.scss */
.largetext {
  font-family: s-bold !important;
  font-size: 49px;
  letter-spacing: -0.02em;
  line-height: 1.1em;
}
/* line 8, ../sass/about.scss */
.largetext strong {
  color: #4B7DFF;
}

/* line 13, ../sass/about.scss */
.mediumtext {
  font-size: 17px;
}

/* line 18, ../sass/about.scss */
.blue {
  color: #4B7DFF;
}

/* line 22, ../sass/about.scss */
.mtop {
  margin-top: 80px;
}

/* line 26, ../sass/about.scss */
.progressBar {
  height: 35px;
  width: 100%;
  margin-top: 20px;
}

/* line 32, ../sass/about.scss */
.bar {
  position: relative;
  top: -30px;
  height: 35px;
  background-color: #15171B;
}

/* line 39, ../sass/about.scss */
.bar-bg {
  height: 25px;
  background-color: #FFF;
}

/* line 44, ../sass/about.scss */
.bar-name {
  position: relative;
  top: -67px;
  left: 10px;
  font-size: 25px;
}

/* line 51, ../sass/about.scss */
.bar-hr {
  margin-top: 25px;
  border: none;
  border-top: solid 1px #15170B;
  height: 15px;
}

/* line 58, ../sass/about.scss */
.about {
  width: 920px;
  margin: auto;
  margin-top: 80px;
}

/* line 1, ../sass/contact.scss */
.contact {
  font-family: s-bold;
  font-size: 45px;
  line-height: 45px;
  margin-top: 20px;
}
/* line 7, ../sass/contact.scss */
.contact a {
  color: #15171B;
  text-decoration: none;
}

/* line 13, ../sass/contact.scss */
.contact-form {
  background-color: #FFF;
  width: 100%;
  padding: 0 10px;
  margin-left: -10px;
  margin-top: 100px;
  margin-bottom: 100px;
  font-size: 50px;
}

/* line 23, ../sass/contact.scss */
#contactForm {
  padding: 25px;
}

/* line 27, ../sass/contact.scss */
.form-control {
  font-family: 'p-regular', Helvetica, Arial, sans-serif;
  border: none;
  border-bottom: solid 1px #999;
  overflow: auto;
  outline: none;
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* line 47, ../sass/contact.scss */
.form-message {
  resize: none;
  height: 60px;
  min-height: 67px !important;
  width: 100% !important;
}

/* line 54, ../sass/contact.scss */
.form-mail {
  height: 67px;
  min-width: 360px;
}

/* line 59, ../sass/contact.scss */
#form-submit {
  display: inline-block;
  position: relative;
  height: 40px;
  padding: 0 52px 4px 25px;
  margin-top: 50px;
  overflow: hidden;
  background-color: #4B7DFF;
  border: none;
  font-family: 'p-regular', Helvetica, Arial, sans-serif;
  font-size: 27px;
  color: #FFF;
  -webkit-transition: color linear 0.1s;
  -moz-transition: color linear 0.1s;
  transition: color linear 0.1s;
}
/* line 78, ../sass/contact.scss */
#form-submit:hover {
  color: #15171B;
}
/* line 82, ../sass/contact.scss */
#form-submit:before {
  color: #FFF;
  content: "\2192";
  position: absolute;
  z-index: 1;
  right: 10px;
  line-height: 32px;
}
/* line 91, ../sass/contact.scss */
#form-submit:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
  width: 0;
  background: #15171B;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* line 105, ../sass/contact.scss */
#form-submit.activated:after {
  width: 100%;
  -webkit-transition: width linear 0.7s;
  -moz-transition: width linear 0.7s;
  transition: width linear 0.7s;
}

/* line 113, ../sass/contact.scss */
#note {
  font-size: 20px;
  display: inline-block;
}

/* line 124, ../sass/contact.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 165, ../sass/contact.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

/* line 1, ../sass/mobilemenu.scss */
.mobileMenu {
  display: none;
  height: 48px;
  background-color: #FFF;
  -webkit-tap-highlight-color: rgba(34, 234, 136, 0);
}

/* line 8, ../sass/mobilemenu.scss */
.mobileMenu_button {
  display: inline-block;
  background: url("../img/mobilemenu_button.png") no-repeat;
  background-size: 100%;
  width: 48px;
  height: 48px;
}

/* line 16, ../sass/mobilemenu.scss */
.mobileMenu_logo {
  display: inline-block;
  float: right;
  background: url("../img/mobilemenu_logo.png") no-repeat;
  background-size: 100%;
  width: 48px;
  height: 48px;
}

/* line 25, ../sass/mobilemenu.scss */
.mobilemenu_close_article {
  display: none;
  float: right;
  background: url("../img/mobilemenu_close_article.png") no-repeat;
  background-size: 100%;
  width: 48px;
  height: 48px;
}

/* line 34, ../sass/mobilemenu.scss */
.mobileMenu_close {
  display: none;
  float: right;
  background: url("../img/mobilemenu_close.png") no-repeat;
  background-size: 100%;
  width: 48px;
  height: 48px;
}

@font-face {
  font-family: 'p-regular';
  src: url("../font/p-regular.eot");
  src: url("../font/p-regular.eot?#iefix") format("embedded-opentype"), url("../font/p-regular.woff2") format("woff2"), url("../font/p-regular.woff") format("woff"), url("../font/p-regular.ttf") format("truetype"), url("../font/p-regular.svg#p-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'p-bold';
  src: url("../font/p-bold.eot");
  src: url("../font/p-bold.eot?#iefix") format("embedded-opentype"), url("../font/p-bold.woff2") format("woff2"), url("../font/p-bold.woff") format("woff"), url("../font/p-bold.ttf") format("truetype"), url("../font/p-bold.svg#p-bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 's-blackitalic';
  src: url("../font/s-blackitalic.eot");
  src: url("../font/s-blackitalic.eot?#iefix") format("embedded-opentype"), url("../font/s-blackitalic.woff2") format("woff2"), url("../font/s-blackitalic.woff") format("woff"), url("../font/s-blackitalic.ttf") format("truetype"), url("../font/s-blackitalic.svg#s-blackitalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 's-bold';
  src: url("../font/s-bold.eot");
  src: url("../font/s-bold.eot?#iefix") format("embedded-opentype"), url("../font/s-bold.woff2") format("woff2"), url("../font/s-bold.woff") format("woff"), url("../font/s-blackitalic.ttf") format("truetype"), url("../font/s-bold.svg#s-bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 232, ../sass/screen.scss */
html {
  font-family: 'p-regular', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.571;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

/* line 240, ../sass/screen.scss */
b, .bold {
  font-family: 'p-bold', Helvetica, Arial, sans-serif;
}

/* line 244, ../sass/screen.scss */
a:focus {
  outline: none;
}

/* line 248, ../sass/screen.scss */
header {
  font-family: s-blackitalic;
  font-size: 80px;
  margin: 35px 0 30px 57px;
  line-height: 70px;
}

/* line 259, ../sass/screen.scss */
.clear {
  clear: both;
}

/* line 263, ../sass/screen.scss */
.hidden {
  display: none !important;
}

/* line 267, ../sass/screen.scss */
html, body {
  min-height: 100%;
}

/* line 271, ../sass/screen.scss */
body {
  background-color: #F0F0EE;
  color: #15171B;
  overflow-x: hidden !important;
}

/* line 277, ../sass/screen.scss */
.centerfix {
  width: 1840px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* line 283, ../sass/screen.scss */
.wrapper {
  position: absolute;
  min-height: 100%;
  width: 100%;
  max-width: 1820px;
  background: url("../img/grid.png") repeat repeat;
}

/* line 292, ../sass/screen.scss */
.container {
  position: absolute;
  min-height: 100%;
  width: 100%;
  max-width: 1610px;
  background: url("../img/grid.png") repeat repeat;
}

/* line 301, ../sass/screen.scss */
.row {
  padding-right: 220px;
}

/* line 305, ../sass/screen.scss */
.row:before,
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* line 312, ../sass/screen.scss */
.left-indent {
  transition: height 0.5s ease-out;
  padding-left: 230px;
}

/* line 317, ../sass/screen.scss */
.col {
  float: left;
  min-height: 10px;
  padding: 0 10px;
  max-width: 100%;
}
/* line 323, ../sass/screen.scss */
.col img {
  width: 100%;
}

/* line 325, ../sass/screen.scss */
.col-1 {
  width: 210px;
}

/* line 326, ../sass/screen.scss */
.col-2 {
  width: 440px;
}

/* line 327, ../sass/screen.scss */
.col-3 {
  width: 670px;
}

/* line 328, ../sass/screen.scss */
.col-4 {
  width: 900px;
}

/* line 329, ../sass/screen.scss */
.col-5 {
  width: 1130px;
}

/* line 330, ../sass/screen.scss */
.col-6 {
  width: 1360px;
}

/* line 331, ../sass/screen.scss */
.col-7 {
  width: 1590px;
}

/* line 333, ../sass/screen.scss */
.center {
  margin: auto;
}

/* line 337, ../sass/screen.scss */
.item {
  margin-bottom: 20px;
}
/* line 339, ../sass/screen.scss */
.item a {
  display: block;
  text-decoration: none;
  color: #15171B;
}
/* line 345, ../sass/screen.scss */
.item img {
  display: block;
  width: 100%;
  height: auto;
}
/* line 350, ../sass/screen.scss */
.item figcaption {
  position: relative;
  display: block;
  background: #FAFAF8;
  margin: 0;
  padding: 20px 50px 20px 15px;
}
/* line 357, ../sass/screen.scss */
.item figcaption .role, .item figcaption .brief {
  display: none;
}
/* line 363, ../sass/screen.scss */
.item:hover figcaption, .item a:focus figcaption {
  background: #4B7DFF;
}

/* line 369, ../sass/screen.scss */
.eye {
  position: absolute;
  right: 10px;
  bottom: 50%;
  margin-bottom: -20px;
  width: 40px;
  height: 40px;
  z-index: -10;
}

/* line 379, ../sass/screen.scss */
.layout {
  width: 900px;
}
/* line 382, ../sass/screen.scss */
.layout img {
  width: 440px;
}
/* line 386, ../sass/screen.scss */
.layout a {
  min-height: 300px;
}
/* line 390, ../sass/screen.scss */
.layout .eye {
  display: none;
}
/* line 394, ../sass/screen.scss */
.layout figcaption {
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  width: 440px;
  padding: 20px 0 0 0;
  border-top: 1px solid #15171B;
  background: none;
}
/* line 404, ../sass/screen.scss */
.layout figcaption .role, .layout figcaption .brief {
  display: block;
  padding-top: 30px;
  font-size: 20px;
  color: #999999;
  transition: all 0.8s ease-out;
}
/* line 413, ../sass/screen.scss */
.layout figcaption .title {
  font-size: 24px;
}
/* line 417, ../sass/screen.scss */
.layout figcaption .role {
  line-height: 22px;
  font-size: 16px;
}
/* line 422, ../sass/screen.scss */
.layout figcaption .brief {
  font-family: 's-bold';
}
/* line 427, ../sass/screen.scss */
.layout:hover figcaption, .layout:focus figcaption {
  background: none;
  border-color: #4B7DFF;
}
/* line 432, ../sass/screen.scss */
.layout:hover figcaption span, .layout:focus figcaption span {
  color: #4B7DFF;
}

@media screen and (max-width: 690px), (max-height: 570px) {
  /* line 439, ../sass/screen.scss */
  .mobileMenu {
    display: block;
  }

  /* line 440, ../sass/screen.scss */
  .positioner-menu {
    display: none;
    position: inherit !important;
    width: auto !important;
  }

  /* line 445, ../sass/screen.scss */
  .menu.fixed {
    position: absolute !important;
    top: 0;
    left: 0;
    background-color: #4B7DFF;
    width: 100%;
    margin: 0 !important;
    padding: 0;
    text-align: center;
  }

  /* line 455, ../sass/screen.scss */
  .menu-meta {
    display: none;
  }

  /* line 458, ../sass/screen.scss */
  .menu nav ul {
    text-align: center !important;
  }

  /* line 461, ../sass/screen.scss */
  .mobileMenu_close {
    display: block;
  }

  /* line 465, ../sass/screen.scss */
  .menu nav a:before {
    background: #FAFAF8 !important;
  }

  /* line 469, ../sass/screen.scss */
  .menu_logo {
    margin: auto;
    background: url("../img/logo_white.png") no-repeat !important;
    background-size: 100% !important;
  }

  /* line 474, ../sass/screen.scss */
  .wrapper {
    position: inherit !important;
  }

  /* line 475, ../sass/screen.scss */
  .dice {
    display: none;
  }

  /* line 476, ../sass/screen.scss */
  #introCanvas {
    left: 0 !important;
    top: 48px !important;
  }
}
@media screen and (min-width: 231px) {
  /* line 480, ../sass/screen.scss */
  .centerfix {
    width: 231px !important;
  }

  /* line 481, ../sass/screen.scss */
  .wrapper {
    max-width: 231px !important;
  }

  /* line 482, ../sass/screen.scss */
  .container {
    max-width: 231px !important;
  }

  /* line 483, ../sass/screen.scss */
  .left-indent {
    padding: 0 !important;
  }

  /* line 484, ../sass/screen.scss */
  .description {
    margin-left: 0 !important;
    width: 210px !important;
    min-height: auto !important;
    margin-bottom: 20px !important;
  }

  /* line 485, ../sass/screen.scss */
  .row {
    padding: 0 !important;
  }

  /* line 486, ../sass/screen.scss */
  header {
    font-size: 45px !important;
    line-height: 41px !important;
    margin: 35px 0 30px 10px;
  }

  /* line 487, ../sass/screen.scss */
  header span {
    margin-top: 0;
  }

  /* line 488, ../sass/screen.scss */
  .item-content .brief {
    font-size: 24px;
    line-height: 28px;
  }

  /* line 489, ../sass/screen.scss */
  .menu-portfolio {
    display: none;
  }

  /* line 490, ../sass/screen.scss */
  .col-2 {
    width: 210px;
  }

  /* line 491, ../sass/screen.scss */
  .about {
    width: 230px;
  }
  /* line 491, ../sass/screen.scss */
  .about .col-2 img {
    display: none;
  }

  /* line 492, ../sass/screen.scss */
  .largetext {
    font-size: 24px;
  }

  /* line 493, ../sass/screen.scss */
  .mediumtext {
    font-size: 13px;
  }

  /* line 494, ../sass/screen.scss */
  .contact-wrapper {
    width: 210px;
    margin-left: 10px;
  }

  /* line 495, ../sass/screen.scss */
  .contact {
    font-size: 18px;
    line-height: 18px;
  }

  /* line 496, ../sass/screen.scss */
  .contact-form {
    font-size: 15px;
    margin-top: 50px;
  }

  /* line 497, ../sass/screen.scss */
  .form-mail {
    height: 33px;
    min-width: 160px;
  }

  /* line 498, ../sass/screen.scss */
  .form-message {
    height: 25px;
    min-height: 22px !important;
  }

  /* line 499, ../sass/screen.scss */
  #form-submit {
    height: 30px;
    font-size: 22px;
    margin-top: 25px;
  }
  /* line 499, ../sass/screen.scss */
  #form-submit:before {
    line-height: 27px;
  }

  /* line 500, ../sass/screen.scss */
  #note {
    font-size: 14px;
  }
}
@media screen and (min-width: 461px) {
  /* line 504, ../sass/screen.scss */
  .centerfix {
    width: 461px !important;
  }

  /* line 505, ../sass/screen.scss */
  .wrapper {
    max-width: 461px !important;
  }

  /* line 506, ../sass/screen.scss */
  .container {
    max-width: 461px !important;
  }

  /* line 507, ../sass/screen.scss */
  .menu {
    margin-left: 230px !important;
  }

  /* line 508, ../sass/screen.scss */
  .left-indent {
    padding: 0 !important;
  }

  /* line 509, ../sass/screen.scss */
  .description {
    margin-left: 0 !important;
    width: 440px !important;
    min-height: auto !important;
    margin-bottom: 20px !important;
  }

  /* line 510, ../sass/screen.scss */
  .row {
    padding: 0 !important;
  }

  /* line 511, ../sass/screen.scss */
  header {
    font-size: 45px !important;
    line-height: 66px !important;
    margin: 35px 0 30px 57px;
  }

  /* line 512, ../sass/screen.scss */
  header span {
    margin-top: -28px;
  }

  /* line 513, ../sass/screen.scss */
  .item-content .brief {
    font-size: 40px;
    line-height: 44px;
  }

  /* line 514, ../sass/screen.scss */
  .menu-portfolio {
    display: none;
  }

  /* line 515, ../sass/screen.scss */
  .about {
    width: 460px;
  }
  /* line 515, ../sass/screen.scss */
  .about .col-2 {
    width: 420px;
  }

  /* line 516, ../sass/screen.scss */
  .contact-wrapper {
    width: 440px;
    margin-left: 10px;
  }

  /* line 517, ../sass/screen.scss */
  .contact {
    font-size: 30px;
    line-height: 30px;
  }

  /* line 518, ../sass/screen.scss */
  .contact-form {
    font-size: 30px;
    margin-top: 50px;
  }

  /* line 519, ../sass/screen.scss */
  .form-mail {
    height: 47px;
    min-width: 360px;
  }

  /* line 520, ../sass/screen.scss */
  .form-message {
    height: 40px;
    min-height: 47px !important;
  }

  /* line 521, ../sass/screen.scss */
  #form-submit {
    height: 40px;
    font-size: 27px;
    margin-top: 50px;
  }
  /* line 521, ../sass/screen.scss */
  #form-submit:before {
    line-height: 32px;
  }

  /* line 522, ../sass/screen.scss */
  #note {
    font-size: 20px;
  }
}
@media screen and (min-width: 691px) {
  /* line 525, ../sass/screen.scss */
  .centerfix {
    width: 691px !important;
  }

  /* line 526, ../sass/screen.scss */
  .wrapper {
    max-width: 691px !important;
  }

  /* line 527, ../sass/screen.scss */
  .container {
    max-width: 691px !important;
  }

  /* line 528, ../sass/screen.scss */
  .menu {
    margin-left: 460px !important;
  }

  /* line 529, ../sass/screen.scss */
  .col-2 {
    width: 210px;
  }

  /* line 531, ../sass/screen.scss */
  .left-indent {
    padding-left: 230px !important;
  }

  /* line 532, ../sass/screen.scss */
  .description {
    margin-left: -230px !important;
    width: 210px !important;
    min-height: 340px !important;
    margin-bottom: 0 !important;
  }

  /* line 533, ../sass/screen.scss */
  .row {
    padding-right: 220px !important;
  }

  /* line 534, ../sass/screen.scss */
  header {
    font-size: 80px !important;
    line-height: 80px !important;
  }

  /* line 535, ../sass/screen.scss */
  .menu-portfolio {
    display: block;
  }

  /* line 536, ../sass/screen.scss */
  .about {
    margin-left: 0;
  }

  /* line 537, ../sass/screen.scss */
  .contact-wrapper {
    width: 440px;
    margin-left: 10px;
  }

  /* line 538, ../sass/screen.scss */
  .contact {
    font-size: 30px;
    line-height: 30px;
  }

  /* line 539, ../sass/screen.scss */
  .contact-form {
    font-size: 30px;
    margin-top: 50px;
  }

  /* line 540, ../sass/screen.scss */
  .form-mail {
    height: 47px;
  }

  /* line 541, ../sass/screen.scss */
  .form-message {
    height: 40px;
    min-height: 47px !important;
  }
}
@media screen and (min-width: 921px) {
  /* line 544, ../sass/screen.scss */
  .centerfix {
    width: 921px !important;
  }

  /* line 545, ../sass/screen.scss */
  .wrapper {
    max-width: 921px !important;
  }

  /* line 546, ../sass/screen.scss */
  .container {
    max-width: 921px !important;
  }

  /* line 547, ../sass/screen.scss */
  .menu {
    margin-left: 690px !important;
  }

  /* line 548, ../sass/screen.scss */
  .col-2 {
    width: 440px;
  }

  /* line 549, ../sass/screen.scss */
  .about {
    width: 460px;
    margin-left: 0;
  }

  /* line 550, ../sass/screen.scss */
  .contact-wrapper {
    width: 670px;
    margin-left: 10px;
  }

  /* line 551, ../sass/screen.scss */
  .contact {
    font-size: 40px;
    line-height: 40px;
  }

  /* line 552, ../sass/screen.scss */
  .contact-form {
    font-size: 50px;
    margin-top: 100px;
  }

  /* line 553, ../sass/screen.scss */
  .form-mail {
    height: 67px;
  }

  /* line 554, ../sass/screen.scss */
  .form-message {
    height: 60px;
    min-height: 67px !important;
  }
}
@media screen and (min-width: 1151px) {
  /* line 557, ../sass/screen.scss */
  .centerfix {
    width: 1151px !important;
  }

  /* line 558, ../sass/screen.scss */
  .wrapper {
    max-width: 1151px !important;
  }

  /* line 559, ../sass/screen.scss */
  .container {
    max-width: 1151px !important;
  }

  /* line 560, ../sass/screen.scss */
  .menu {
    margin-left: 920px !important;
  }

  /* line 561, ../sass/screen.scss */
  .col-2 {
    width: 210px;
  }

  /* line 562, ../sass/screen.scss */
  .about {
    width: 920px;
    margin: 0;
    margin-top: 80px;
  }
  /* line 562, ../sass/screen.scss */
  .about .col-2 {
    width: 440px;
  }
  /* line 562, ../sass/screen.scss */
  .about .col-2 img {
    display: block;
  }

  /* line 563, ../sass/screen.scss */
  .largetext {
    font-size: 49px;
  }

  /* line 564, ../sass/screen.scss */
  .mediumtext {
    font-size: 17px;
  }

  /* line 565, ../sass/screen.scss */
  .contact-wrapper {
    width: 900px;
    margin-left: 10px;
  }

  /* line 566, ../sass/screen.scss */
  .contact {
    font-size: 45px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1381px) {
  /* line 569, ../sass/screen.scss */
  .centerfix {
    width: 1381px !important;
  }

  /* line 570, ../sass/screen.scss */
  .wrapper {
    max-width: 1381px !important;
  }

  /* line 571, ../sass/screen.scss */
  .container {
    max-width: 1381px !important;
  }

  /* line 572, ../sass/screen.scss */
  .menu {
    margin-left: 1150px !important;
  }

  /* line 573, ../sass/screen.scss */
  .col-2 {
    width: 440px;
  }

  /* line 574, ../sass/screen.scss */
  .about {
    margin: auto;
    margin-top: 80px;
  }

  /* line 575, ../sass/screen.scss */
  .contact-wrapper {
    width: 900px;
    margin-left: 240px;
  }
}
@media screen and (min-width: 1611px) {
  /* line 578, ../sass/screen.scss */
  .centerfix {
    width: 1611px !important;
  }

  /* line 579, ../sass/screen.scss */
  .wrapper {
    max-width: 1611px !important;
  }

  /* line 580, ../sass/screen.scss */
  .container {
    max-width: 1611px !important;
  }

  /* line 581, ../sass/screen.scss */
  .menu {
    margin-left: 1380px !important;
  }

  /* line 582, ../sass/screen.scss */
  .about {
    margin-left: 230px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1841px) {
  /* line 585, ../sass/screen.scss */
  .centerfix {
    width: 1841px !important;
  }

  /* line 586, ../sass/screen.scss */
  .wrapper {
    max-width: 1841px !important;
  }

  /* line 587, ../sass/screen.scss */
  .container {
    max-width: 1841px !important;
  }

  /* line 588, ../sass/screen.scss */
  .menu {
    margin-left: 1610px !important;
  }

  /* line 589, ../sass/screen.scss */
  .about {
    margin: auto;
    margin-top: 80px;
  }

  /* line 590, ../sass/screen.scss */
  .contact-wrapper {
    width: 900px;
    margin-left: 470px;
  }
}
/* line 598, ../sass/screen.scss */
.menu {
  position: absolute;
  float: right;
  margin-left: 1610px;
  width: 210px;
  height: 100%;
  min-height: 600px;
  padding: 0 10px;
  z-index: 100;
  transition: margin-top 2s ease-in-out;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
/* line 609, ../sass/screen.scss */
.menu.fixed {
  position: fixed;
  top: 0;
}

/* line 621, ../sass/screen.scss */
.positioner-menu {
  position: relative;
  width: 230px;
}

/* line 626, ../sass/screen.scss */
.menu_logo {
  display: block;
  width: 210px;
  height: 210px;
  background: url("../img/logo.png") no-repeat;
  background-size: 100%;
}
/* line 632, ../sass/screen.scss */
.menu_logo:after {
  display: none;
  content: url("../img/logo_white.png");
}

/* line 638, ../sass/screen.scss */
.menu nav ul, .menu-meta ul {
  list-style-type: none;
  text-align: right;
}

/* line 643, ../sass/screen.scss */
.menu nav a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: s-blackitalic;
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
  color: #15171B;
}
/* line 656, ../sass/screen.scss */
.menu nav a:before {
  content: "";
  position: absolute;
  left: 100%;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background: #4B7DFF;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
/* line 673, ../sass/screen.scss */
.menu nav a:hover::before {
  left: 0;
}
/* line 678, ../sass/screen.scss */
.menu nav a.active:before {
  left: 0;
}

/* line 684, ../sass/screen.scss */
.dice {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: url("../img/dice.png") no-repeat;
  width: 17px;
  height: 16px;
  cursor: help;
}

/* line 695, ../sass/screen.scss */
.menu-meta {
  height: 100px;
  margin-bottom: 20px;
}
/* line 699, ../sass/screen.scss */
.menu-meta ul li {
  width: 100%;
  margin-bottom: 2px;
}
/* line 703, ../sass/screen.scss */
.menu-meta ul li::before {
  content: "";
  display: table;
  clear: both;
}

/* line 711, ../sass/screen.scss */
.menu-meta a {
  display: block;
  height: 22px;
  float: right;
  overflow: hidden;
  position: relative;
  padding: 0 8px 2px 17px;
  font-family: s-blackitalic;
  text-decoration: none;
  color: #15171B;
  transition: opacity 0.4s ease-out, height 0.4s ease-out;
}
/* line 725, ../sass/screen.scss */
.menu-meta a.large-icon {
  padding: 0 14px 2px 11px;
}
/* line 729, ../sass/screen.scss */
.menu-meta a.hidden {
  width: 0;
  height: 0;
  opacity: 0;
  transition: height 0.4s ease-out, opacity 0s ease-out;
  cursor: default;
}

/* line 738, ../sass/screen.scss */
.menu-meta a:hover {
  background: #15171B;
  color: #fff;
  width: 185px;
}
/* line 743, ../sass/screen.scss */
.menu-meta a:hover span {
  color: #4B7DFF;
  width: 150px;
  margin-right: 20px;
  transition-delay: 0s;
}

/* line 750, ../sass/screen.scss */
.menu-meta a:active {
  background-color: #4B7DFF;
  transition: background-color 0.3s ease-out;
}
/* line 754, ../sass/screen.scss */
.menu-meta a:active span {
  color: #15171B;
}

/* line 757, ../sass/screen.scss */
.menu-meta a span {
  display: inline-block;
  overflow: hidden;
  width: 0;
  height: 20px;
  font-family: p-regular;
  color: #999999;
  text-align: right;
  vertical-align: -4px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  transition-delay: 0.2s;
}

/* line 775, ../sass/screen.scss */
.menu-meta a img {
  position: absolute;
  display: block;
  top: 4px;
  right: 4px;
}

/* line 783, ../sass/screen.scss */
.menu-portfolio {
  position: absolute;
  width: 210px;
  padding: 0 10px;
  z-index: 10;
  transition: margin-top 2s ease-in-out;
}
/* line 790, ../sass/screen.scss */
.menu-portfolio.fixed {
  position: fixed;
  top: 50px;
}
/* line 795, ../sass/screen.scss */
.menu-portfolio ul {
  list-style-type: none;
}
/* line 799, ../sass/screen.scss */
.menu-portfolio a {
  display: block;
  color: #15171B;
  text-decoration: none;
  padding-left: 47px;
  width: 163px;
  transition: color 0.6s ease-out;
  line-height: 22px;
}
/* line 808, ../sass/screen.scss */
.menu-portfolio a:hover {
  background: #15171B;
  color: #4B7DFF;
  transition: none;
}
/* line 814, ../sass/screen.scss */
.menu-portfolio a:active {
  background-color: #4B7DFF;
  transition: background-color 0.3s ease-out;
  color: #15171B;
}
/* line 820, ../sass/screen.scss */
.menu-portfolio a.active {
  font-family: 'p-bold';
}
/* line 824, ../sass/screen.scss */
.menu-portfolio a.active::before {
  content: '→';
  display: block;
  position: absolute;
  left: 40px;
  margin-top: -1px;
  font-family: 'p-regular';
}

/* line 834, ../sass/screen.scss */
.positioner-portfolio {
  position: relative;
  width: 230px;
}

/* line 839, ../sass/screen.scss */
.canvas-wrapper {
  display: block;
  width: 100%;
  height: 600px;
}

/* line 847, ../sass/screen.scss */
#introCanvas {
  z-index: 0;
  position: absolute;
  top: 0;
}

/* line 853, ../sass/screen.scss */
canvas {
  display: block;
  max-width: 100%;
}

/* line 859, ../sass/screen.scss */
#hidden_nextPosts,
#infscr-loading {
  display: none !important;
}

/* line 864, ../sass/screen.scss */
.footer {
  text-align: center;
  margin-top: 120px;
}

/*
	These are easy to forget
*/
/* line 906, ../sass/screen.scss */
::selection {
  background: #4B7DFF;
  color: #15171B;
}

/* line 910, ../sass/screen.scss */
::-moz-selection {
  background: #4B7DFF;
  color: #15171B;
}

/* line 915, ../sass/screen.scss */
img::selection {
  background: transparent;
}

/* line 918, ../sass/screen.scss */
img::-moz-selection {
  background: transparent;
}

/* line 922, ../sass/screen.scss */
body {
  -webkit-tap-highlight-color: rgba(34, 234, 136, 0.62);
}

/*
	Style overrides for IE6-8
	http://jonikorpi.com/leaving-old-IE-behind/
*/
/*
	An easy way to zoom your entire layout in or out (as long as it's set in ems).
	Just change the media queries to activate them.
	Assuming your base font-size is 16:
	- the first one zooms out by a factor of (16-2)/16 = 0.875
	- the second one zooms in by a factor of (16+2)/16 = 1.125  
*/
@media screen and (max-width: 1px) {
  /* line 946, ../sass/screen.scss */
  body {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 1px) {
  /* line 952, ../sass/screen.scss */
  body {
    font-size: 1.125em;
  }
}
