/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
  Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
@import url("https://fast.fonts.net/t/1.css?apiType=css&projectid=5ae9d8ea-1221-41ec-98b8-9672f34c25ea");
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
  Background is added as a separate element.
  As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
  stretched thumbnail or div placeholder element (see below)
  style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
  div element that matches size of large image
  large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: currentColor;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
  Error message appears when image is not loaded
  (JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

  Contents:

  1. Buttons
  2. Share modal and links
  3. Index indicator ("1 of X" counter)
  4. Caption
  5. Loading indicator
  6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background-image: url(../images/default-skin.svg);
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

.pswp__button--close {
  margin-top: 20px;
  margin-right: 20px;
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
  Arrow buttons hit area
  (icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  height: 44px;
  width: 44px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -132px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -88px -44px;
}

/*

  2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

  3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

  4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  font-size: 12px;
  line-height: 14px;
  color: #C0C0C0;
  text-align: center;
}

@media (min-width: 850px) {
  .pswp__caption__center {
    font-size: 14px;
    line-height: 16px;
  }
}
.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

  5. Loading indicator (preloader)

  You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../images/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /* 
    The idea of animating inner circle is based on Polymer ("material") loading indicator 
     by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*

  6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
  pswp__ui--hidden class is added when controls are hidden
  e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

.pswp--zoomed-in .pswp__caption,
.pswp--zoomed-in .pswp__button--arrow--left,
.pswp--zoomed-in .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

@font-face {
  font-family: "Folio Light";
  src: url("../fonts/folio-std/a996efff-697f-429f-bba2-356a943def1d.eot?#iefix");
  src: url("../fonts/folio-std/a996efff-697f-429f-bba2-356a943def1d.eot?#iefix") format("eot"), url("../fonts/folio-std/10c4fe35-eca1-4328-aa60-65ba95172f67.woff2") format("woff2"), url("../fonts/folio-std/e06f9e49-0db4-4b35-8a8a-2de5f7926880.woff") format("woff"), url("../fonts/folio-std/b555ac15-54c3-4335-9ff9-6c984f5c0a6b.ttf") format("truetype"), url("../fonts/folio-std/facea531-52b5-49b1-83c6-bd9f89d76c5d.svg#facea531-52b5-49b1-83c6-bd9f89d76c5d") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Folio Bold Condensed";
  src: url("../fonts/folio-std/9c5f3d0b-32b1-40e2-a6bd-b96f63fbd965.ttf") format("truetype"), url("../fonts/folio-std/88bad550-578e-4c5f-8a6f-c0a1fe5450ef.svg") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Folio Medium";
  src: url("../fonts/folio-std/b393f008-0a99-488f-8514-074101c8d1cd.eot?#iefix");
  src: url("../fonts/folio-std/b393f008-0a99-488f-8514-074101c8d1cd.eot?#iefix") format("eot"), url("../fonts/folio-std/37912cbb-3cd0-46d7-be79-0f98688bd53b.woff2") format("woff2"), url("../fonts/folio-std/5c617a18-0ddb-4c84-ac9a-ef0ab1023089.woff") format("woff"), url("../fonts/folio-std/61eb9260-0a3b-48ad-9d8a-9ec8ff09a0b0.ttf") format("truetype"), url("../fonts/folio-std/20744331-fee4-4fc3-a361-f8e51ce35c21.svg#20744331-fee4-4fc3-a361-f8e51ce35c21") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Sang Bleu Regular";
  src: url("../fonts/sang-bleu/SangBleuRepublic-Regular-WebM.eot?#iefix");
  src: url("../fonts/sang-bleu/SangBleuRepublic-Regular-WebM.eot?#iefix") format("eot"), url("../fonts/sang-bleu/SangBleuRepublic-Regular-WebM.woff2") format("woff2"), url("../fonts/sang-bleu/SangBleuRepublic-Regular-WebM.woff") format("woff"), url("../fonts/sang-bleu/SangBleuRepublic-Regular-WebM.ttf") format("truetype"), url("../fonts/sang-bleu/SangBleuRepublic-Regular-WebM.svg") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Sang Bleu Bold";
  src: url("../fonts/sang-bleu/SangBleuRepublic-Bold-WebM.eot?#iefix");
  src: url("../fonts/sang-bleu/SangBleuRepublic-Bold-WebM.eot?#iefix") format("eot"), url("../fonts/sang-bleu/SangBleuRepublic-Bold-WebM.woff2") format("woff2"), url("../fonts/sang-bleu/SangBleuRepublic-Bold-WebM.woff") format("woff"), url("../fonts/sang-bleu/SangBleuRepublic-Bold-WebM.ttf") format("truetype"), url("../fonts/sang-bleu/SangBleuRepublic-Bold-WebM.svg") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Sang Bleu Regular Italic";
  src: url("../fonts/sang-bleu/SangBleuRepublic-RegularItalic-WebM.eot?#iefix");
  src: url("../fonts/sang-bleu/SangBleuRepublic-RegularItalic-WebM.eot?#iefix") format("eot"), url("../fonts/sang-bleu/SangBleuRepublic-RegularItalic-WebM.woff2") format("woff2"), url("../fonts/sang-bleu/SangBleuRepublic-RegularItalic-WebM.woff") format("woff"), url("../fonts/sang-bleu/SangBleuRepublic-RegularItalic-WebM.ttf") format("truetype"), url("../fonts/sang-bleu/SangBleuRepublic-RegularItalic-WebM.svg") format("svg");
  font-display: swap;
}
@font-face {
  font-family: "Sang Bleu Bold Italic";
  src: url("../fonts/sang-bleu/SangBleuRepublic-BoldItalic-WebM.eot?#iefix");
  src: url("../fonts/sang-bleu/SangBleuRepublic-BoldItalic-WebM.eot?#iefix") format("eot"), url("../fonts/sang-bleu/SangBleuRepublic-BoldItalic-WebM.woff2") format("woff2"), url("../fonts/sang-bleu/SangBleuRepublic-BoldItalic-WebM.woff") format("woff"), url("../fonts/sang-bleu/SangBleuRepublic-BoldItalic-WebM.ttf") format("truetype"), url("../fonts/sang-bleu/SangBleuRepublic-BoldItalic-WebM.svg") format("svg");
  font-display: swap;
}
*, *:before, *:after {
  box-sizing: border-box;
}

:root {
  font-size: 14px;
}

html,
body {
  font-family: "Folio Light", Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #343434;
  background-color: #FFF;
}

body {
  overflow-x: hidden;
}

body.is-not-scrollable {
  overflow-y: hidden;
}

a, a:visited {
  color: inherit;
  text-decoration: none;
}

.is-loading * {
  pointer-events: none;
  cursor: wait !important;
}

.is-loading .footer {
  opacity: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-up {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.page-content {
  background-color: #FFF;
  padding-top: 80px;
  flex-direction: column;
}

@media (min-width: 850px) {
  .page-content {
    padding-top: 80px;
  }
}
/* Tags */
.projects-tags-section {
  position: relative;
  margin-bottom: 40px;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 850px) {
  .projects-tags-section {
    margin-bottom: 80px;
  }
}
.tags-section {
  margin-bottom: 100px;
}

.tags {
  text-align: center;
}

.tags-wrapper {
  text-align: right;
  display: flex;
  flex-wrap: wrap;
}

.tag {
  position: relative;
  display: inline-block;
  margin: 0 12px 0 0;
  padding: 4px 0;
  font-family: "Folio Medium";
  font-size: 12px;
  border: none;
  background-color: transparent;
  color: #C0C0C0;
}

.tags-wrapper .tag:last-child {
  margin-right: 0;
}

.tag:after {
  content: "";
  opacity: 0.8;
  position: absolute;
  left: 0;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 1px;
  color: currentColor;
  background-color: currentColor;
}

button.tag {
  cursor: pointer;
  flex-shrink: 0;
}

button.tag:focus {
  outline: none;
}

button.tag,
button.tag:after {
  transition: color 0.25s ease, border-bottom 0.25s ease;
}

button.tag.is-active {
  color: #000;
}

button.tag.is-active:after {
  border-bottom: 4px solid currentColor;
}

@media (pointer: fine) {
  button.tag:hover:after {
    border-bottom: 4px solid currentColor;
  }
}
@media (min-width: 850px) {
  .tag {
    padding: 3px 0;
    font-size: 14px;
  }
}
.featured-tags .tag {
  font-size: 16px;
}

.featured-tags {
  margin-bottom: 15px;
}

.categories-tags {
  margin-bottom: 15px;
}

@media (min-width: 850px) {
  .featured-tags .tag {
    font-size: 20px;
  }
  .featured-tags {
    margin-bottom: 15px;
  }
  .categories-tags {
    margin-bottom: 15px;
  }
}
.featured-tags .tag,
.categories-tags .tag {
  color: #000;
}

.projects-tags-section.is-active .tag:not(.is-active) {
  color: #C0C0C0;
}

@media (max-width: 849px) {
  .secondary-tags:not(.show-more-tags) .tag:nth-of-type(1n+9) {
    display: none;
  }
  .secondary-tags {
    position: relative;
  }
  .more-tags {
    cursor: pointer;
    display: inline-block;
    width: 12px;
    height: 14px;
    margin-top: 8px;
    line-height: 8px;
    text-align: center;
    color: #C0C0C0;
    border: 1px solid #D9D9D9;
  }
  .secondary-tags.show-more-tags .more-tags {
    display: none;
  }
}
@media (min-width: 850px) {
  .more-tags {
    display: none;
  }
}
/* Home */
@media (min-width: 850px) {
  .home-projects-section {
    margin-bottom: 20px;
  }
}
.home-articles-section {
  margin-bottom: 0;
}

.home-focuses-section {
  margin-top: 40px;
  margin-bottom: 80px;
}

.full-section.home-header-section {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.intro-template:not(.is-up).is-not-scrollable {
  position: fixed;
}

.intro-template.is-scrollable {
  overflow-y: auto;
}

.intro-template #home {
  transform: translate3d(0, 120vh, 0);
}

.intro-template.is-up #home {
  transition: transform 1.6s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: translate3d(0, 0, 0);
}

#home:before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background-repeat: no-repeat;
  background-position: 50% 100%;
}

.home-header-logo {
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.project-home-grid {
  position: relative;
  display: block;
}

.project-home-grid .project-link:nth-child(1),
.project-home-grid .project-link:nth-child(2),
.project-home-grid .project-link:nth-child(3),
.project-home-grid .project-link:nth-child(4) {
  display: none;
}

@media (min-width: 850px) {
  .project-home-grid .project-link:nth-child(1),
  .project-home-grid .project-link:nth-child(2),
  .project-home-grid .project-link:nth-child(3),
  .project-home-grid .project-link:nth-child(4) {
    display: block;
  }
}
.project-home-grid:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/focus-cross.svg), linear-gradient(-180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 95%);
  background-size: 80px 80px, 100% 100%;
  background-position: center 45%, center;
  background-repeat: no-repeat;
}

.projects-grid-link {
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* News */
.article-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.article-modal-overlay {
  width: 100%;
  height: 100vh;
}

.article-modal {
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%) translateZ(0);
  transition: transform 0.5s ease;
}

.article-modal.is-active {
  transform: translateY(0) translateZ(0);
}

.article-wrapper {
  position: relative;
  padding-top: 40px;
  background-color: #FFF;
}

.article-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #F9F9F9;
}

@media (min-width: 850px) {
  .article-wrapper:before {
    left: 40px;
    right: 40px;
  }
}
.article-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 0px;
}

@media (min-width: 850px) {
  .article-link {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.article-thumb {
  margin-bottom: 15px;
}

.article-header-section {
  padding-bottom: 40px;
}

.article-content {
  font-family: "Folio Light";
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 120px;
}

.close-modal-button {
  position: fixed;
  z-index: 12;
  top: 3px;
  right: 3px;
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  background-image: url(../images/icon-close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  cursor: pointer;
}

.close-modal-button:focus {
  outline: none;
}

.article-date-block {
  display: none;
  position: fixed;
  z-index: 1;
  top: 40px;
  left: 50px;
}

@media (min-width: 850px) {
  .article-date-block {
    display: block;
  }
}
.article-title,
.article-news-label {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Folio Bold Condensed";
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 0.6px;
}

.article-content-section .article-title {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 26px;
}

@media (min-width: 850px) {
  .article-title,
  .article-news-label {
    font-size: 24px;
    line-height: 22px;
    letter-spacing: 0.8px;
  }
  .article-content-section .article-title {
    margin-bottom: 40px;
    font-size: 56px;
    line-height: 52px;
  }
}
.article-date {
  font-family: "Folio Light";
  font-size: 28px;
  line-height: 26px;
}

.article-thumb-date {
  font-family: "Folio Light";
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 10px;
}

.article-excerpt {
  display: none;
}

@media (min-width: 850px) {
  .article-excerpt {
    display: block;
  }
}
.article-content p {
  margin-bottom: 20px;
}

.article-content strong {
  font-family: "Folio Medium";
}

.article-content iframe {
  width: 100%;
  min-height: 38vw;
  max-height: 580px;
}

.article-image-legend {
  display: block;
  padding-top: 10px;
  font-size: 12px;
  line-height: 14px;
  color: #C0C0C0;
  text-align: center;
}

@media (min-width: 850px) {
  .article-image-legend {
    font-size: 14px;
    line-height: 16px;
  }
}
.google-map-iframe {
  display: block;
  width: 100%;
  height: 80vw;
  margin-bottom: 40px;
  background-color: #F0F0F0;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media (min-width: 850px) {
  .google-map-iframe {
    height: 40vw;
  }
}
.job-item {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  cursor: pointer;
}

.job-item:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  border-bottom: 1px solid #C0C0C0;
}

.job-wrapper .job-item-excerpt,
.job-item-text {
  display: none;
}

.job-wrapper .job-item-text {
  display: block;
}

.jobs-title {
  margin-bottom: 30px;
}

.job-item-title {
  margin-bottom: 20px;
}

.jobs-list {
  display: flex;
  flex-wrap: wrap;
}

.job-wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.projects-list-section .tags,
.relative-projects-section .tags {
  display: none;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Project */
.hover-link {
  transition: opacity 0.25s ease;
}

.project-link {
  color: inherit;
  margin-bottom: 20px;
  text-decoration: none;
}

.hover-link .media {
  position: relative;
  transition: box-shadow 0.25s ease;
}

.hover-link .media:after {
  content: "";
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/focus-cross.svg);
  background-size: 80px 80px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hover-link .media:before {
  content: "";
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: opacity 0.25s ease;
}

.hover-link.is-loading .media:before {
  opacity: 1;
}

.w-6.hover-link .media:after {
  background-size: 60px 60px;
}

@media (min-width: 500px) {
  .w-6.hover-link .media:after,
  .m-w-3.hover-link .media:after {
    background-size: 80px 80px;
  }
}
@media (min-width: 850px) {
  .hover-link .media:after {
    background-size: 120px 120px;
  }
}
.can-hover .hover-link:not(.is-zooming):hover .media:after,
.can-hover .hover-link:not(.is-zooming):hover .media:before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.is-zooming .page-title,
.is-zooming .header,
.is-zooming .footer,
.is-zooming .tags,
.is-zooming .hover-link:not(.is-zooming),
.is-zooming .hover-link.is-zooming h2,
.is-zooming .hover-link.is-zooming h3 {
  opacity: 0;
}

@keyframes crossloading {
  from {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  to {
    transform: translate3d(0, 0, 0) scale(1) rotate(360deg);
  }
}
.hover-link.is-loading .media:after {
  opacity: 1;
  animation-name: crossloading;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.project-thumb {
  margin-bottom: 16px;
}

.project-thumb img {
  background-color: #FFF;
}

@media (min-width: 850px) {
  .project-thumb {
    margin-bottom: 20px;
  }
}
.project-title {
  text-align: center;
}

.home-page .project-title {
  margin-bottom: 6px;
}

.project-intro-section .project-title {
  margin-bottom: 70px;
}

.project-description,
.project-intro-section .project-title,
.section-technicalsheet,
.project-page .tags-section {
  opacity: 0;
  animation: fade-in 0.75s cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s forwards;
}

@media (min-width: 850px) {
  .home-page .project-title {
    margin-bottom: 20px;
  }
  .project-intro-section .project-title {
    margin-bottom: 80px;
  }
  .projects-list-section .project-title,
  .relative-projects-section .project-title {
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 0;
  }
}
.project-description {
  margin-bottom: 40px;
}

.section-footer-image {
  margin-bottom: 120px;
}

.section-footer-image img {
  background-color: #FFF;
}

/* Technical Sheet */
@media (min-width: 850px) {
  .section-technicalsheet {
    margin-bottom: 40px;
  }
}
.technical-label {
  text-align: right;
}

.technical-label,
.technical-info {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}

.technicalsheet-table {
  margin-bottom: 40px;
}

section.technicalsheet-download {
  display: none;
}

@media (min-width: 850px) {
  section.technicalsheet-download {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.more-info-table span:hover {
  cursor: pointer;
}

.more-info-table .team-plus-label:hover {
  text-decoration: underline;
}

.more-info-table .team-plus-icon {
  display: inline-block;
  margin-top: 1px;
  transition: transform 0.125s ease-in-out;
}

.more-info-table.is-open .team-plus-icon {
  transform: rotate(45deg);
}

.team-table {
  animation-delay: 0s;
  margin-top: -30px;
}

.download-button {
  display: block;
  margin: 0;
  padding: 10px;
  font-family: "Folio Medium";
  color: inherit;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  border: 1px solid currentColor;
}

/* Gallery */
.images-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 120px;
}

.images-gallery::-webkit-scrollbar {
  height: 4px;
}

.images-gallery::-webkit-scrollbar-track {
  background-color: #FFF;
}

.images-gallery::-webkit-scrollbar-thumb {
  background-color: #D0D0D0;
  outline: 1px solid #FFF;
}

.images-gallery figure:not(:last-child) {
  margin-right: 10px;
}

.images-gallery img {
  display: block;
  width: auto;
  height: 200px;
  margin-bottom: 8px;
  transition: opacity 0.125s ease;
}

.images-gallery img:hover {
  opacity: 0.3;
}

@media (min-width: 850px) {
  .images-gallery img {
    height: 300px;
  }
}
.images-gallery figcaption {
  display: none;
}

.archive-list-section {
  margin-bottom: 80px;
}

.table-header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid #C0C0C0;
}

.table-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid #C0C0C0;
}

.deskstop-archive-header {
  position: relative;
  display: none;
}

@media (min-width: 850px) {
  .mobile-archive-header {
    display: none;
  }
  .deskstop-archive-header {
    display: flex;
  }
}
.table-active-filter,
.table-filter {
  padding: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
  font-size: 14px;
  line-height: 16px;
  color: #C0C0C0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.table-arrow {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  transform-origin: 50% 7px;
  transition: transform 0.25s ease;
}

.is-reversed .table-arrow {
  transform: rotate(180deg);
}

.table-filter:focus {
  outline: none;
}

.can-hover .table-filter:not(.is-active):hover {
  color: #A0A0A0;
}

.table-filter.is-active {
  color: #343434;
}

.mobile-archive-header .table-filter.is-active {
  display: none;
}

.mobile-archive-header {
  overflow: hidden;
  max-height: 60px;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-archive-header.is-active {
  max-height: 300px;
}

.archive-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Folio Medium";
  font-size: 14px;
  color: #343434;
  line-height: 16px;
  transition: opacity 0.25s ease;
}

.archive-is-open .archive-item:not(.is-open) .archive-info {
  opacity: 0.3;
}

.archive-info:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0.4;
  top: 20px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/archive-cross.svg);
  backgorund-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 100% center;
  background-repeat: no-repeat;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

@media (min-width: 850px) {
  .archive-info:after {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
.can-hover .table-item:hover .archive-info:after {
  opacity: 1;
}

.is-open .archive-info:after {
  opacity: 1;
  transform: rotate(45deg) translate3d(0, 0, 0);
}

.archive-title {
  margin-bottom: 10px;
  padding-right: 60px;
  font-size: 18px;
  line-height: 20px;
}

.archive-view-project {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 20px;
}

@media (min-width: 850px) {
  .archive-title {
    margin-bottom: 0;
    padding-right: 80px;
    font-size: 20px;
    line-height: 22px;
  }
  .archive-view-project {
    display: block;
    position: relative;
    top: 0px;
  }
}
.archive-preview {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-height: 0;
  transform: translate3d(0, 0, 0);
  transition: max-height 0.45s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.can-hover .archive-item .archive-info:hover {
  cursor: pointer;
}

.archive-item.is-open .archive-preview {
  height: auto;
  max-height: 2000px;
}

@media (min-width: 850px) {
  .archive-item.is-open .archive-preview {
    max-height: 800px;
  }
}
.square-button {
  display: inline-block;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background: #FFFFFF;
  border: 1px solid #343434;
  font-size: 14px;
  color: #222222;
  text-align: center;
  line-height: 40px;
}

.archive-image,
.archive-description {
  margin-bottom: 20px;
}

.archive-image img {
  background: #FFF;
}

.archive-description p {
  margin-bottom: 20px;
  font-family: "Sang Bleu Regular";
  color: #343434;
  font-size: 14px;
  line-height: 20px;
}

.archive-technical {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 12px;
  line-height: 14px;
}

.archive-preview .technical-label {
  width: 50%;
  padding-left: 0;
  text-align: right;
}

.archive-preview .technical-info {
  width: 50%;
}

@media (min-width: 850px) {
  .archive-preview .technical-label {
    width: 20%;
    text-align: left;
  }
  .archive-preview .technical-info {
    width: 75%;
  }
}
.archive-list-section .technicalsheet-download {
  display: none;
}

.archive-carousel {
  position: relative;
}

.archive-carousel-slide {
  top: 0;
  left: 0;
}

/* Focus */
.focus-link {
  background-color: #FFF;
}

.focus-header-image {
  z-index: 0;
  width: 100%;
  height: 70vw;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0);
}

.style-photo .focus-header-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.focus-template .style-photo .focus-header-image {
  display: none;
}

.focus-template .style-photo .full-section.section-focus-header {
  justify-content: center;
  height: calc(100vh + 1px);
}

.focus-template .page-content {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.focus-template .page-content.no-transforms {
  transform: none;
}

.style-photo .page-content {
  background-color: transparent;
}

.focus-header-info {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 70vw;
  padding: 40px;
  text-align: center;
}

.style-photo .focus-header-info {
  justify-content: space-between;
  height: 140vw;
  max-height: calc(100vh + 1px);
}

.focus-template .style-photo .focus-header-info {
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
}

.full-section.section-focus-header {
  flex-direction: column-reverse;
  position: relative;
  top: 0;
  margin-bottom: 1px;
}

@media (max-device-aspect-ratio: 42/60) and (max-width: 850px) {
  .full-section.section-focus-header {
    position: -webkit-sticky;
    position: sticky;
  }
}
.focus-header-cross.media {
  display: none;
  width: 120px;
  height: 120px;
}

@media (min-width: 850px) and (orientation: landscape) {
  .full-section.section-focus-header {
    position: -webkit-sticky;
    position: sticky;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: auto;
    height: calc(100vh + 1px);
    min-height: 700px;
  }
  .focus-header-image {
    width: 50%;
    height: 100%;
    background-size: cover;
  }
  .focus-header-info {
    justify-content: space-between;
    width: 50%;
    height: 100%;
  }
  .style-photo .focus-header-info {
    width: 100%;
    height: 100%;
  }
  .style-photo .focus-header-image {
    width: 100%;
    height: 100%;
  }
  .focus-page .focus-header-info {
    justify-content: center;
  }
  .focus-header-cross.media {
    display: block;
  }
}
.block-embed,
.block-image {
  margin-bottom: 20px;
}

.focus-embed-legend,
.focus-image-legend {
  display: block;
  margin-bottom: 20px;
}

.section-content-block.align-center {
  justify-content: center;
}

.section-content-block.align-left {
  justify-content: flex-start;
}

.section-content-block.align-right {
  justify-content: flex-end;
}

.section-content-block.right-to-left {
  flex-direction: row-reverse;
}

.block-text-and-image {
  justify-content: space-between;
}

.block-text-and-image.right-to-left {
  justify-content: flex-end;
}

.block-text {
  justify-content: center;
}

.focus-header-text {
  position: relative;
  width: 100%;
}

.agence-intro {
  margin-bottom: 40px;
}

.agence-info {
  margin-bottom: 40px;
}

.block-team {
  margin-bottom: 20px;
}

.agence-poles {
  margin-bottom: 40px;
}

.team-image {
  margin-bottom: 20px;
}

.team-item {
  margin-bottom: 10px;
}

@media (min-width: 850px) {
  .agence-intro {
    margin-bottom: 60px;
  }
  .agence-info {
    margin-bottom: 100px;
  }
  .block-team {
    margin-bottom: 20px;
  }
  .agence-poles {
    margin-bottom: 180px;
  }
  .team-image {
    margin-bottom: 40px;
  }
  .team-item {
    margin-bottom: 20px;
  }
  .pole-item {
    margin-bottom: 20px;
  }
}
.agence-title {
  margin-bottom: 40px;
}

.pole-item .media {
  margin-bottom: 20px;
}

.collaborateurs-intro {
  margin-bottom: 20px;
}

.collaborateur-item {
  margin-bottom: 20px;
}

.collaborateur-item img {
  margin-bottom: 10px;
}

.collaborateur-item figcaption {
  text-align: left;
}

/* Menu */
.header,
.footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
}

.header {
  position: absolute;
  top: 0;
  z-index: 2;
  transition: opacity 0.25s ease, background-color 0.5s ease;
}

.header.is-sticky.is-hovered {
  background-color: #FFF;
}

.menu {
  display: flex;
  flex-direction: column;
}

@media (min-width: 850px) {
  .menu {
    flex-direction: row;
    transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .home-page .is-sticky .menu {
    transform: translate3d(-240px, 0, 0);
  }
}
.toggle-menu {
  position: absolute;
  z-index: 0;
}

.main-navigation {
  display: inline-block;
}

.main-menu {
  position: relative;
  z-index: 1;
  opacity: 0;
}

.menu-item {
  display: inline-block;
  margin-bottom: 9px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

@media (min-width: 850px) {
  .main-navigation .menu-item {
    letter-spacing: 0;
  }
}
.main-navigation .menu-item {
  letter-spacing: -0.2px;
}

.main-navigation .menu-item:not(:last-child) {
  margin-right: 5px;
}

a.menu-item:hover {
  opacity: 0.6;
}

.menu-item.is-hidden {
  display: none;
}

.languages {
  position: absolute;
  right: 20px;
  height: 15px;
}

.languages a {
  text-transform: uppercase;
  margin: 0;
}

/* Menu States */
.toggle-menu,
.main-menu {
  transition: opacity 0.5s ease;
}

.header .main-navigation a {
  pointer-events: none;
}

.header .main-navigation.is-open a {
  pointer-events: auto;
}

.main-navigation.is-open .toggle-menu {
  opacity: 0;
}

.main-navigation.is-open .main-menu {
  opacity: 1;
}

.footer .home-item,
.footer br {
  display: none;
}

.header.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.can-hover .header.is-hidden {
  pointer-events: auto;
}

.header.is-sticky {
  position: fixed;
}

.logo-hlb {
  margin-right: 20px;
}

.header .logo-hlb,
.header.is-sticky .logo-hlb {
  display: none;
}

@media (min-width: 850px) {
  .home-page .header .logo-hlb {
    display: inline-block;
  }
}
/* Typography */
* {
  -webkit-font-smoothing: antialiased;
}

.section-content-block {
  margin-bottom: 40px;
}

@media (min-width: 850px) {
  .section-content-block {
    margin-bottom: 90px;
  }
}
.page-text-serif p,
.page-text-sans-serif p {
  margin-bottom: 20px;
}

.page-text-sans-serif strong {
  font-family: "Folio Medium", sans-serif;
}

.page-text-serif strong {
  font-family: "Sang Bleu Bold";
}

.page-text-sans-serif i,
.page-text-sans-serif em {
  font-style: italic;
}

.page-text-serif i,
.page-text-serif em {
  font-family: "Sang Bleu Regular Italic";
}

.page-text-serif i strong,
.page-text-serif strong i,
.page-text-serif em strong,
.page-text-serif strong em {
  font-family: "Sang Bleu Bold Italic";
  font-style: normal;
}

.page-text-serif ul,
.page-text-sans-serif ul {
  margin-bottom: 20px;
  padding-left: 16px;
  list-style-type: disc;
}

@media (min-width: 850px) {
  .page-text-serif ul,
  .page-text-sans-serif ul {
    padding-left: 20px;
  }
}
.page-text-serif li,
.page-text-sans-serif li {
  padding-left: 20px;
}

.focus-title {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Sang Bleu Bold", serif;
  font-size: 9vw;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
}

.focus-exergue {
  font-family: "Folio Medium", sans-serif;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: #343434;
}

.focus-subtitle {
  font-family: "Sang Bleu Regular", serif;
  color: #343434;
  font-size: 12px;
  line-height: 16px;
}

.block-text-and-image .focus-exergue {
  font-size: 18px;
  line-height: 20px;
  text-align: left;
}

.focus-embed-legend,
.focus-image-legend {
  font-family: "Sang Bleu Regular", serif;
  font-size: 12px;
  line-height: 14px;
  color: #C0C0C0;
}

.focus-legend {
  margin-bottom: 10px;
}

.focus-header-cross,
.focus-header-intro {
  display: none;
}

.block-text-and-image .focus-text-exergue {
  text-align: left;
}

@media (min-width: 850px) {
  .focus-title {
    font-size: 85px;
  }
  .focus-legend {
    margin-bottom: 20px;
  }
  .focus-exergue {
    font-size: 36px;
    line-height: 42px;
  }
  .block-text-and-image .focus-exergue {
    font-size: 28px;
    line-height: 32px;
  }
  .focus-header-cross,
  .focus-header-intro {
    display: block;
  }
  .focus-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
  .focus-embed-legend,
  .focus-image-legend {
    font-size: 14px;
    line-height: 16px;
  }
}
.page-title {
  text-transform: uppercase;
  font-family: "Folio Medium", sans-serif;
  font-size: 28px;
  line-height: 26px;
  color: #343434;
}

.page-sub-title {
  font-family: "Folio Medium", sans-serif;
  font-size: 14px;
  line-height: 16px;
}

@media (min-width: 850px) {
  .page-title {
    font-size: 56px;
    line-height: 52px;
  }
  .page-sub-title {
    font-size: 20px;
    line-height: 24px;
  }
}
.archive-technical .page-sub-title,
.archive-technical .page-text-sans-serif {
  font-size: 14px;
  line-height: 16px;
}

.page-small-text,
.page-text-sans-serif {
  font-family: "Folio Light", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: #343434;
}

.page-text-serif {
  font-family: "Sang Bleu Regular", serif;
  font-size: 14px;
  line-height: 20px;
  color: #343434;
}

@media (min-width: 850px) {
  .agence-info-item p strong,
  .page-text-sans-serif {
    font-size: 20px;
    line-height: 24px;
  }
  .page-text-serif {
    font-size: 20px;
    line-height: 28px;
  }
  .page-small-text {
    font-size: 14px;
    line-height: 16px;
  }
}
.home-page .project-title {
  font-size: 18px;
  line-height: 16px;
}

.project-home-grid .project-title,
.projects-page .project-title,
.relative-projects-section .project-title,
.related-project-title {
  font-family: "Folio Medium", sans-serif;
  font-size: 14px;
  line-height: 12px;
  color: #343434;
}

.related-project-title {
  width: 100%;
  margin-bottom: 20px;
  color: #C0C0C0;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 850px) {
  .home-page .project-title {
    font-size: 24px;
    line-height: 22px;
  }
  .project-home-grid .project-title,
  .projects-page .project-title,
  .relative-projects-section .project-title,
  .related-project-title {
    font-size: 18px;
    line-height: 16px;
  }
}
.image-legend {
  text-align: center;
  margin-top: 10px;
  color: #C0C0C0;
}

body,
.page,
.section,
.full-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

body {
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.page {
  flex-direction: column;
}

.section {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 850px) {
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.media {
  display: block;
  text-align: center;
}

.media-transparent {
  background-color: transparent;
}

canvas {
  display: none;
}

.media img,
.media video {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

.media-transparent img,
.media-transparent video {
  background-color: transparent;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lazy-effect {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.25s ease, transform 0.5s ease, filter 0.5s ease;
}

.lazy-effect.is-loaded {
  opacity: 1;
}

/* Utilities */
.offset-left {
  left: calc(8.3333333333% - 20px);
}

.offset-right {
  right: calc(8.3333333333% - 20px);
}

.gutters {
  padding-left: 5px;
  padding-right: 5px;
}

.gutter-left {
  padding-left: 5px;
}

.gutter-right {
  padding-right: 5px;
}

.w-1 {
  width: 8.3333333333%;
}

.w-2 {
  width: 16.6666666667%;
}

.w-3 {
  width: 25%;
}

.w-4 {
  width: 33.3333333333%;
}

.w-5 {
  width: 41.6666666667%;
}

.w-6 {
  width: 50%;
}

.w-7 {
  width: 58.3333333333%;
}

.w-8 {
  width: 66.6666666667%;
}

.w-9 {
  width: 75%;
}

.w-10 {
  width: 83.3333333333%;
}

.w-11 {
  width: 91.6666666667%;
}

.w-12 {
  width: 100%;
}

.gap-1 {
  margin-left: 8.3333333333%;
}

.gap-2 {
  margin-left: 16.6666666667%;
}

.gap-3 {
  margin-left: 25%;
}

.gap-4 {
  margin-left: 33.3333333333%;
}

.gap-5 {
  margin-left: 41.6666666667%;
}

.gap-6 {
  margin-left: 50%;
}

.gap-7 {
  margin-left: 58.3333333333%;
}

.gap-8 {
  margin-left: 66.6666666667%;
}

.gap-9 {
  margin-left: 75%;
}

.gap-10 {
  margin-left: 83.3333333333%;
}

.gap-11 {
  margin-left: 91.6666666667%;
}

.gap-12 {
  margin-left: 100%;
}

.offset-left,
.offset-right {
  position: relative;
}

.display-block {
  display: block;
}

.display-flex {
  display: flex;
}

.display-none {
  display: none;
}

.offset-left {
  left: calc(8.3333333333% - 20px);
}

.offset-right {
  right: calc(8.3333333333% - 20px);
}

.gutters {
  padding-left: 5px;
  padding-right: 5px;
}

.no-gutters {
  padding-left: 0;
  padding-right: 0;
}

.no-gutter-left {
  padding-left: 0;
}

.no-gutter-right {
  padding-right: 0;
}

@media (min-width: 500px) {
  .s-w-1 {
    width: 8.3333333333%;
  }
  .s-w-2 {
    width: 16.6666666667%;
  }
  .s-w-3 {
    width: 25%;
  }
  .s-w-4 {
    width: 33.3333333333%;
  }
  .s-w-5 {
    width: 41.6666666667%;
  }
  .s-w-6 {
    width: 50%;
  }
  .s-w-7 {
    width: 58.3333333333%;
  }
  .s-w-8 {
    width: 66.6666666667%;
  }
  .s-w-9 {
    width: 75%;
  }
  .s-w-10 {
    width: 83.3333333333%;
  }
  .s-w-11 {
    width: 91.6666666667%;
  }
  .s-w-12 {
    width: 100%;
  }
  .s-gap-1 {
    margin-left: 8.3333333333%;
  }
  .s-gap-2 {
    margin-left: 16.6666666667%;
  }
  .s-gap-3 {
    margin-left: 25%;
  }
  .s-gap-4 {
    margin-left: 33.3333333333%;
  }
  .s-gap-5 {
    margin-left: 41.6666666667%;
  }
  .s-gap-6 {
    margin-left: 50%;
  }
  .s-gap-7 {
    margin-left: 58.3333333333%;
  }
  .s-gap-8 {
    margin-left: 66.6666666667%;
  }
  .s-gap-9 {
    margin-left: 75%;
  }
  .s-gap-10 {
    margin-left: 83.3333333333%;
  }
  .s-gap-11 {
    margin-left: 91.6666666667%;
  }
  .s-gap-12 {
    margin-left: 100%;
  }
  .s-offset-left,
  .s-offset-right {
    position: relative;
  }
  .s-display-block {
    display: block;
  }
  .s-display-flex {
    display: flex;
  }
  .s-display-none {
    display: none;
  }
  .s-offset-left {
    left: calc(8.3333333333% - 20px);
  }
  .s-offset-right {
    right: calc(8.3333333333% - 20px);
  }
  .s-gutters {
    padding-left: 5px;
    padding-right: 5px;
  }
  .s-no-gutters {
    padding-left: 0;
    padding-right: 0;
  }
  .s-no-gutter-left {
    padding-left: 0;
  }
  .s-no-gutter-right {
    padding-right: 0;
  }
}
@media (min-width: 850px) {
  .gutters {
    padding-left: 10px;
    padding-right: 10px;
  }
  .gutter-left {
    padding-left: 10px;
  }
  .gutter-right {
    padding-right: 10px;
  }
  .m-w-1 {
    width: 8.3333333333%;
  }
  .m-w-2 {
    width: 16.6666666667%;
  }
  .m-w-3 {
    width: 25%;
  }
  .m-w-4 {
    width: 33.3333333333%;
  }
  .m-w-5 {
    width: 41.6666666667%;
  }
  .m-w-6 {
    width: 50%;
  }
  .m-w-7 {
    width: 58.3333333333%;
  }
  .m-w-8 {
    width: 66.6666666667%;
  }
  .m-w-9 {
    width: 75%;
  }
  .m-w-10 {
    width: 83.3333333333%;
  }
  .m-w-11 {
    width: 91.6666666667%;
  }
  .m-w-12 {
    width: 100%;
  }
  .m-gap-1 {
    margin-left: 8.3333333333%;
  }
  .m-gap-2 {
    margin-left: 16.6666666667%;
  }
  .m-gap-3 {
    margin-left: 25%;
  }
  .m-gap-4 {
    margin-left: 33.3333333333%;
  }
  .m-gap-5 {
    margin-left: 41.6666666667%;
  }
  .m-gap-6 {
    margin-left: 50%;
  }
  .m-gap-7 {
    margin-left: 58.3333333333%;
  }
  .m-gap-8 {
    margin-left: 66.6666666667%;
  }
  .m-gap-9 {
    margin-left: 75%;
  }
  .m-gap-10 {
    margin-left: 83.3333333333%;
  }
  .m-gap-11 {
    margin-left: 91.6666666667%;
  }
  .m-gap-12 {
    margin-left: 100%;
  }
  .m-offset-left,
  .m-offset-right {
    position: relative;
  }
  .m-display-block {
    display: block;
  }
  .m-display-flex {
    display: flex;
  }
  .m-display-none {
    display: none;
  }
  .m-offset-left {
    left: calc(8.3333333333% - 20px);
  }
  .m-offset-right {
    right: calc(8.3333333333% - 20px);
  }
  .m-gutters {
    padding-left: 10px;
    padding-right: 10px;
  }
  .m-no-gutters {
    padding-left: 0;
    padding-right: 0;
  }
  .m-no-gutter-left {
    padding-left: 0;
  }
  .m-no-gutter-right {
    padding-right: 0;
  }
}
@media (min-width: 1280px) {
  .l-w-1 {
    width: 8.3333333333%;
  }
  .l-w-2 {
    width: 16.6666666667%;
  }
  .l-w-3 {
    width: 25%;
  }
  .l-w-4 {
    width: 33.3333333333%;
  }
  .l-w-5 {
    width: 41.6666666667%;
  }
  .l-w-6 {
    width: 50%;
  }
  .l-w-7 {
    width: 58.3333333333%;
  }
  .l-w-8 {
    width: 66.6666666667%;
  }
  .l-w-9 {
    width: 75%;
  }
  .l-w-10 {
    width: 83.3333333333%;
  }
  .l-w-11 {
    width: 91.6666666667%;
  }
  .l-w-12 {
    width: 100%;
  }
  .l-gap-1 {
    margin-left: 8.3333333333%;
  }
  .l-gap-2 {
    margin-left: 16.6666666667%;
  }
  .l-gap-3 {
    margin-left: 25%;
  }
  .l-gap-4 {
    margin-left: 33.3333333333%;
  }
  .l-gap-5 {
    margin-left: 41.6666666667%;
  }
  .l-gap-6 {
    margin-left: 50%;
  }
  .l-gap-7 {
    margin-left: 58.3333333333%;
  }
  .l-gap-8 {
    margin-left: 66.6666666667%;
  }
  .l-gap-9 {
    margin-left: 75%;
  }
  .l-gap-10 {
    margin-left: 83.3333333333%;
  }
  .l-gap-11 {
    margin-left: 91.6666666667%;
  }
  .l-gap-12 {
    margin-left: 100%;
  }
  .l-offset-left,
  .l-offset-right {
    position: relative;
  }
  .l-display-block {
    display: block;
  }
  .l-display-flex {
    display: flex;
  }
  .l-display-none {
    display: none;
  }
  .l-offset-left {
    left: calc(8.3333333333% - 20px);
  }
  .l-offset-right {
    right: calc(8.3333333333% - 20px);
  }
  .l-gutters {
    padding-left: 10px;
    padding-right: 10px;
  }
  .l-no-gutters {
    padding-left: 0;
    padding-right: 0;
  }
  .l-no-gutter-left {
    padding-left: 0;
  }
  .l-no-gutter-right {
    padding-right: 0;
  }
}
body.is-debug:before {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  z-index: 999999;
  width: calc(100% - 30px);
  max-width: 1470px;
  transform: translateX(-50%);
  height: 9999999px;
  background-image: linear-gradient(90deg, rgb(0, 195, 220) 1px, transparent 0px), linear-gradient(90deg, rgb(0, 195, 220) 1px, transparent 0px), linear-gradient(90deg, rgb(0, 195, 220) 1px, transparent 0px), linear-gradient(90deg, rgba(0, 195, 220, 0.2) calc(100% - 10px), transparent 0px), linear-gradient(0deg, rgba(0, 195, 220, 0.1) 1px, transparent 1px);
  background-size: 8.3333333333% 1px, 8.3333333333% 1px, 8.3333333333% 1px, 8.3333333333% 1px, 100% 5px;
  background-position: -5px 0, 0 0, 5px 0, 5px 0, 0 0;
}

@media (min-width: 850px) {
  body.is-debug:before {
    width: calc(100% - 60px);
    max-width: 1440px;
    background-image: linear-gradient(90deg, rgb(0, 195, 220) 1px, transparent 0px), linear-gradient(90deg, rgb(0, 195, 220) 1px, transparent 0px), linear-gradient(90deg, rgb(0, 195, 220) 1px, transparent 0px), linear-gradient(90deg, rgba(0, 195, 220, 0.2) calc(100% - 20px), transparent 0px), linear-gradient(0deg, rgba(0, 195, 220, 0.1) 1px, transparent 1px);
    background-size: 8.3333333333% 1px, 8.3333333333% 1px, 8.3333333333% 1px, 8.3333333333% 1px, 100% 10px;
    background-position: -10px 0, 0 0, 10px 0, 10px 0, 0 0;
  }
}
@media (min-width: 1510px) {
  body.is-debug:before {
    width: 100%;
  }
}
