/*------------------------------------------------------------------------- SMOTH TRANSITION */
/*------------------------------------------------------------------------- DELAYING */
/*------------------------------------------------------------------------- TRANSFORMING */
/*------------------------------------------------------------------------- STYLING EFFECTS */
/*------------------------------------------------------------------------- TYPOGRAPHY */
/*------------------------------------------------------------------------- LAYOUT CONSTRUCTION */
/*------------------------------------------------------------------------ KEY FRAME ANIMATIONS */
/*---------------------------------------------------------------- Slide Up */
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
/*---------------------------------------------------------------- Slide Down */
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
/*---------------------------------------------------------------- Fade In */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*---------------------------------------------------------------- Fade Out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}
/*---------------------------------------------------------------- Up and Down */
@-webkit-keyframes upAndDown {
  from {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
}
@keyframes upAndDown {
  from {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
}
/*---------------------------------------------------------------- Up and Down */
@-webkit-keyframes slideLeft {
  from {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@keyframes slideLeft {
  from {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@-webkit-keyframes slideRight {
  100% {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
  }
}
@keyframes slideRight {
  100% {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
  }
}
/*---------------------------------------------------------------- Button */
@-webkit-keyframes hoverBtn {
  50% {
    height: 100%;
  }
  100% {
    height: 100%;
    width: 100%;
  }
}
@keyframes hoverBtn {
  50% {
    height: 100%;
  }
  100% {
    height: 100%;
    width: 100%;
  }
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: local('Poppins Light'), local('Poppins-Light'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDz8Z1JlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJnedw.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1JlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Saol Display';
  src: url('../eot/saol_display_medium.eot');
  src: url('../eot/saol_display_medium.eot#iefix') format('embedded-opentype'), url('../woff/saol_display_medium.woff') format('woff');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: 'Saol Display';
  src: url('../eot/saol_display_medium_italic.eot');
  src: url('../eot/saol_display_medium_italic.eot#iefix') format('embedded-opentype'), url('../woff/saol_display_medium_italic.woff') format('woff');
  font-style: italic;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
	
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}
/* Handle box-sizing while better addressing child elements: 
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
  max-width: 100%;
}
/* force a vertical scrollbar to prevent a jumpy page */
/* we use a lot of ULs that aren't bulleted. 
	don't forget to restore the bullets within content. */
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  font-weight: bold;
  vertical-align: bottom;
}
td {
  font-weight: normal;
  vertical-align: top;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
input[type="radio"] {
  vertical-align: text-bottom;
}
input[type="checkbox"] {
  vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}
.ie6 input {
  vertical-align: text-bottom;
}
select,
input,
textarea {
  font-family: inherit;
}
table {
  font-size: inherit;
  font: 100%;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
td,
td img {
  vertical-align: top;
}
/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}
/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}
/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* prevent BG image flicker upon hover 
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
* {
  outline: 0!important;
  outline-color: transparent!important;
}
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  color: #262626;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility !important;
  overflow-x: hidden;
}
p + p,
ul + p,
p + ul {
  margin-top: 24px;
}
a {
  display: inline-block;
  color: #262626;
  text-decoration: none;
  outline: 0;
}
strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-weight: normal;
}
em {
  font-style: italic;
}
small {
  font-size: 12px;
}
img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
img[src*="svg"] {
  width: auto;
  max-width: 100%;
}
input[type="text"],
input[type="submit"],
button[type="submit"] {
  background: none;
  color: inherit;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
}
input[type="text"]:focus,
input[type="submit"]:focus,
button[type="submit"]:focus {
  outline: none;
}
input[type="text"]::-webkit-input-placeholder,
input[type="submit"]::-webkit-input-placeholder,
button[type="submit"]::-webkit-input-placeholder {
  color: inherit;
}
input[type="text"]:-ms-input-placeholder,
input[type="submit"]:-ms-input-placeholder,
button[type="submit"]:-ms-input-placeholder {
  color: inherit;
}
input[type="text"]::-ms-input-placeholder,
input[type="submit"]::-ms-input-placeholder,
button[type="submit"]::-ms-input-placeholder {
  color: inherit;
}
input[type="text"]::placeholder,
input[type="submit"]::placeholder,
button[type="submit"]::placeholder {
  color: inherit;
}
button {
  padding: 0;
  background: none;
  color: inherit;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  :not(.c-form):not(.l-sec-contact-content) br {
    display: none;
  }
}
/*------------------------------------------------------------------------- Custom scrollbars */
body::-webkit-scrollbar,
.no-touch .nav-main-wrapper.via-burger::-webkit-scrollbar {
  width: 5px;
  -webkit-appearance: none;
}
body::-webkit-scrollbar-thumb,
.no-touch .nav-main-wrapper.via-burger::-webkit-scrollbar-thumb {
  background-color: #262626;
}
body::-webkit-scrollbar-track,
.no-touch .nav-main-wrapper.via-burger::-webkit-scrollbar-track {
  background-color: white;
}
body::-webkit-scrollbar-button,
.no-touch .nav-main-wrapper.via-burger::-webkit-scrollbar-button {
  height: 0;
  background-color: transparent;
}
/*------------------------------------------------------------------------- Main wrapper */
.o-main-wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.o-main-wrapper.is-loaded {
  display: block;
  opacity: 1;
}
/*------------------------------------------------------------------------- Containers */
.o-container {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 80px;
  padding-left: 80px;
  height: 100%;
}
.o-container:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1680px) {
  .o-container {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .o-container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.o-container.u-no-gutter {
  padding-left: 0;
  padding-right: 0;
}
/*------------------------------------------------------------------------- Image Wrapper */
.o-image {
  display: block;
  width: 100%;
  overflow: hidden;
}
.o-image svg,
.o-image img[src*="svg"] {
  max-width: 100%;
  width: auto;
}
.o-image img {
  display: block;
  max-width: none;
  width: 100%;
}
/*------------------------------------------------------------------------- Headlines */
[class*="c-headline"] {
  position: relative;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}
.c-headline-xxl {
  font-size: 7.1875vw;
  line-height: 1.3;
}
.c-headline-xl {
  font-size: 5.20833333vw;
  line-height: 1.3;
}
.c-headline-l {
  font-size: 3.33333333vw;
  line-height: 1.5;
}
.c-headline-m {
  font-size: 2.5vw;
  line-height: 1.5;
}
.c-headline-ms {
  font-size: 38px;
  line-height: 1.5;
}
.c-headline-s {
  font-size: 21px;
  line-height: 2;
}
.c-headline-xs {
  font-size: 18px;
  line-height: 2;
}
.c-headline-xxs {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .c-headline-xxl {
    font-size: 10.78125vw;
    line-height: 1.3;
  }
  .c-headline-xl {
    font-size: 7.8125vw;
    line-height: 1.3;
  }
  .c-headline-l {
    font-size: 5vw;
    line-height: 1.5;
  }
  .c-headline-m {
    font-size: 3.75vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .c-headline-xxl {
    font-size: 13.65625vw;
    line-height: 1.3;
  }
  .c-headline-xl {
    font-size: 9.89583333vw;
    line-height: 1.3;
  }
  .c-headline-l {
    font-size: 6.33333333vw;
    line-height: 1.5;
  }
  .c-headline-m {
    font-size: 4.75vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 460px) {
  .c-headline-xxl {
    font-size: 13.54166667vw;
    line-height: 1.3;
  }
  .c-headline-xl {
    font-size: 13.54166667vw;
    line-height: 1.3;
  }
  .c-headline-l {
    font-size: 8.66666667vw;
    line-height: 1.5;
  }
  .c-headline-m {
    font-size: 6.5vw;
    line-height: 1.5;
  }
  .c-headline-ms {
    font-size: 38px;
    line-height: 1.5;
  }
  .c-headline-s {
    font-size: 18px;
    line-height: 2;
  }
  .c-headline-xs {
    font-size: 14px;
    line-height: 2;
  }
  .c-headline-xxs {
    font-size: 14px;
    line-height: 2;
  }
}
/*------------------------------------------------------------------------- Buttons */
[class*="c-btn"] {
  position: relative;
  z-index: 0;
  padding: 8px 20px 8px 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}
[class*="c-btn"]::after,
[class*="c-btn"]::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: black;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  content: "";
}
[class*="c-btn"]::after {
  left: 0;
  height: 1px;
  width: 80px;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
[class*="c-btn"]::before {
  left: 80px;
  height: 100%;
  width: 0;
}
[class*="c-btn"]:hover {
  color: white;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
[class*="c-btn"]:hover::after {
  height: 100%;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
[class*="c-btn"]:hover::before {
  width: 100%;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.c-btn--primary {
  font-size: 18px;
  padding-left: 130px;
}
.c-btn--primary::after {
  width: 110px;
}
.c-btn--primary::before {
  left: 110px;
}
.c-btn--secondary {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  [class*="c-btn"] {
    padding-left: 60px;
  }
  [class*="c-btn"]::after {
    width: 40px;
  }
}
/*------------------------------------------------------------------------- Texbox */
.c-textbox-s {
  max-width: 400px;
}
.c-textbox-m {
  max-width: 600px;
}
.c-textbox-l {
  max-width: 800px;
}
.u-tx-c [class*="c-textbox"] {
  margin-left: auto;
  margin-right: auto;
}
/*------------------------------------------------------------------------- Pading box */
.c-box {
  padding: 100px 8.33333333%;
}
.c-box-l {
  padding: 160px 8.33333333%;
}
[class*="c-box"][class*="u-bg-black"] {
  position: relative;
  background-color: transparent;
}
[class*="c-box"][class*="u-bg-black"]::after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  content: "";
}
/*------------------------------------------------------------------------- Article */
.c-article {
  font-size: 18px;
  line-height: 2;
}
.c-article ul {
  display: inline-block;
  max-width: 600px;
}
.c-article ul li {
  position: relative;
  padding-left: 32px;
}
.c-article ul li:after {
  position: absolute;
  top: 18px;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #000000;
  content: "";
}
@media screen and (max-width: 1024px) {
  .c-article {
    font-size: 14px;
  }
}
/*------------------------------------------------------------------------- Form */
.c-form input,
.c-form textarea {
  display: block;
  width: 100%;
  padding: 0 0 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #E6E6E6;
  border-radius: 0;
  font-size: 14px!important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-form input::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px!important;
  color: #848484;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-form input:-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px!important;
  color: #848484;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-form input::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px!important;
  color: #848484;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px!important;
  color: #848484;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-form input:focus::-webkit-input-placeholder,
.c-form textarea:focus::-webkit-input-placeholder {
  color: #262626;
}
.c-form input:focus:-ms-input-placeholder,
.c-form textarea:focus:-ms-input-placeholder {
  color: #262626;
}
.c-form input:focus::-ms-input-placeholder,
.c-form textarea:focus::-ms-input-placeholder {
  color: #262626;
}
.c-form input:focus::placeholder,
.c-form textarea:focus::placeholder {
  color: #262626;
}
.c-form input[type="checkbox"] {
  vertical-align: middle;
}
.c-form input[type="submit"] {
  width: auto;
  border: none;
}
.c-form input[type="submit"] {
  position: relative;
  padding-left: 100px;
  float: right;
  width: auto;
  border: none;
}
.c-form input[type="submit"]::before {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 80px;
  height: 1px;
  background-color: #000000;
  content: "";
}
.c-form br {
  display: block;
}
/*------------------------------------------------------------------------- Portfolio */
.c-project-list,
.c-blogpost-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-project-box:nth-of-type(4n + 1) {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.c-project-box:nth-of-type(4n) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.c-project-box,
.c-blogpost-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-bottom: 130px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-project-box:nth-of-type(2),
.c-blogpost-box:nth-of-type(2) {
  margin-top: 200px;
}
.c-project-box > a,
.c-blogpost-box > a,
.c-project-box > div,
.c-blogpost-box > div {
  display: block;
  width: 80%;
}
.c-project-box a,
.c-blogpost-box a {
  display: inline-block;
}
.c-project-box__date,
.c-blogpost-box__date {
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
.c-project-box__title,
.c-blogpost-box__title {
  font-family: 'Saol Display', serif;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.5;
}
.c-project-box__category,
.c-blogpost-box__category {
  color: #848484;
  font-size: 12px;
}
.c-project-box__intro,
.c-blogpost-box__intro {
  max-width: 600px;
  margin: 42px auto 0;
  font-size: 14px;
  line-height: 2;
}
.c-project-box .c-btn,
.c-blogpost-box .c-btn {
  margin-top: 48px;
}
.c-project-box__image,
.c-blogpost-box__image {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 100%;
  margin-bottom: 48px;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-project-box__image img,
.c-blogpost-box__image img {
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-project-box__image::before,
.c-blogpost-box__image::before,
.c-project-box__image::after,
.c-blogpost-box__image::after {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}
.c-project-box__image:after,
.c-blogpost-box__image:after {
  width: 1px;
  height: calc(50% + 30px);
  margin: auto;
  background-color: #000000;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: translate3d(0, 0, 0) scaleY(0);
  transform: translate3d(0, 0, 0) scaleY(0);
}
.c-project-box[data-animate="cplx"].is-animated a:hover .c-project-box__image img,
.c-blogpost-box[data-animate="cplx"].is-animated a:hover .c-project-box__image img,
.c-project-box a:hover .c-project-box__image img,
.c-blogpost-box a:hover .c-project-box__image img,
.c-project-box[data-animate="cplx"].is-animated a:hover .c-blogpost-box__image img,
.c-blogpost-box[data-animate="cplx"].is-animated a:hover .c-blogpost-box__image img,
.c-project-box a:hover .c-blogpost-box__image img,
.c-blogpost-box a:hover .c-blogpost-box__image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.c-project-box[data-animate="cplx"].is-animated a:hover .c-project-box__image::after,
.c-blogpost-box[data-animate="cplx"].is-animated a:hover .c-project-box__image::after,
.c-project-box a:hover .c-project-box__image::after,
.c-blogpost-box a:hover .c-project-box__image::after,
.c-project-box[data-animate="cplx"].is-animated a:hover .c-blogpost-box__image::after,
.c-blogpost-box[data-animate="cplx"].is-animated a:hover .c-blogpost-box__image::after,
.c-project-box a:hover .c-blogpost-box__image::after,
.c-blogpost-box a:hover .c-blogpost-box__image::after {
  -webkit-transform: translate3d(0, 30px, 0) scaleY(1);
  transform: translate3d(0, 30px, 0) scaleY(1);
}
@media screen and (max-width: 1024px) {
  .c-project-box > a,
  .c-blogpost-box > a,
  .c-project-box > div,
  .c-blogpost-box > div {
    display: block;
    width: 90%;
  }
  .c-project-box__title,
  .c-blogpost-box__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .c-project-box,
  .c-blogpost-box {
    width: 100%;
  }
  .c-project-box:nth-of-type(2),
  .c-blogpost-box:nth-of-type(2) {
    margin-top: 0;
  }
}
.c-project-single .c-project-single__image,
.c-project-single .c-project-single__video {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .c-project-single .c-project-single__image,
  .c-project-single .c-project-single__video {
    margin-bottom: 50px;
  }
}
.c-project-single .c-project-single__video iframe {
  width: 100%;
}
/*------------------------------------------------------------------------- Expander */
.c-expander {
  position: relative;
  z-index: 0;
}
.c-expander__front {
  position: relative;
  padding: 80px 4.16666667%;
}
.c-expander__btn {
  position: absolute;
  z-index: 0;
  right: 4.16666667%;
  bottom: 40px;
  padding: 8px 20px 8px 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  overflow: hidden;
}
.c-expander__btn span {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.c-expander__btn::after,
.c-expander__btn::before {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  height: 1px;
  width: 80px;
  margin: auto;
  background-color: black;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}
.c-expander__back {
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-expander__back > div {
  padding: 40px 4.16666667% 80px;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-expander ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.c-expander ul li:after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 1px;
  background-color: #000000;
  content: "";
}
.c-expander .u-bg-white.u-freeride {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-expander.is-open .c-expander__back {
  height: auto;
}
.c-expander.is-open .c-expander__back > div {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.c-expander.is-open .c-expander__btn {
  top: 80px;
  bottom: auto;
}
.c-expander.is-open .c-expander__btn span {
  opacity: 0;
}
.c-expander.is-open .c-expander__btn::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-expander.is-open .c-expander__btn::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-expander.is-open .u-bg-white.u-freeride {
  left: 0;
  top: 0;
  width: 9999px;
  height: 100%;
}
/*------------------------------------------------------------------------- Mobile Scroll */
@media screen and (max-width: 768px) {
  .c-mobile-scroll {
    white-space: nowrap;
    overflow-x: scroll;
  }
  .c-mobile-scroll::-webkit-scrollbar {
    height: 1px;
    -webkit-appearance: none;
  }
  .c-mobile-scroll::-webkit-scrollbar-thumb {
    background-color: white;
  }
  .c-mobile-scroll::-webkit-scrollbar-track {
    background-color: #262626;
  }
  .c-mobile-scroll::-webkit-scrollbar-button {
    height: 0;
    background-color: transparent;
  }
}
/*------------------------------------------------------------------------- Intro */
.c-intro {
  padding-top: 40vh;
}
/*------------------------------------------------------------------------------------------------------------------- Layout Constraction */
/*------------------------------------------------------------------------- Gutter */
.u-nogutter {
  padding-left: 0;
  padding-right: 0;
}
.u-gutter {
  padding-left: 15px;
  padding-right: 15px;
}
.u-gutter-l {
  padding-left: 30px;
}
.u-gutter-r {
  padding-right: 30px;
}
.u-2xgutter {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .u-2xgutter {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.u-2xgutter-l {
  padding-left: 60px;
}
.u-2xgutter-r {
  padding-right: 60px;
}
/*------------------------------------------------------------------------- Position */
.u-absolute {
  position: absolute;
}
.u-relative {
  position: relative;
}
.u-fixed {
  position: fixed;
}
/*------------------------------------------------------------------------- Placement */
.u-pos-tl {
  left: 0;
  top: 0;
}
.u-pos-tr {
  right: 0;
  top: 0;
}
.u-pos-bl {
  left: 0;
  bottom: 0;
}
.u-pos-br {
  right: 0;
  bottom: 0;
}
.u-z-0 {
  z-index: 0;
}
.u-z-1 {
  z-index: 100;
}
.u-z-2 {
  z-index: 200;
}
/*------------------------------------------------------------------------- Display */
.u-inline {
  display: inline-block;
}
.u-block {
  display: block;
}
u-display-none {
  display: none;
}
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-flex .nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.u-expand-container {
  margin-left: -40px;
  margin-right: -40px;
}
/*------------------------------------------------------------------------- Padding + Margin */
.u-padd-y-xxl {
  padding-top: 260px;
  padding-bottom: 260px;
}
.u-padd-y-xl {
  padding-top: 160px;
  padding-bottom: 160px;
}
.u-padd-y-l {
  padding-top: 96px;
  padding-bottom: 96px;
}
.u-padd-y-m {
  padding-top: 48px;
  padding-bottom: 48px;
}
.u-padd-y-s {
  padding-top: 24px;
  padding-bottom: 24px;
}
.u-padd-y-xs {
  padding-top: 12px;
  padding-bottom: 12px;
}
.u-padd-t-xxl {
  padding-top: 260px;
}
.u-padd-t-xl {
  padding-top: 160px;
}
.u-padd-t-l {
  padding-top: 96px;
}
.u-padd-t-m {
  padding-top: 48px;
}
.u-padd-t-s {
  padding-top: 24px;
}
.u-padd-t-xs {
  padding-top: 12px;
}
.u-padd-b-xxl {
  padding-bottom: 260px;
}
.u-padd-b-xl {
  padding-bottom: 160px;
}
.u-padd-b-l {
  padding-bottom: 96px;
}
.u-padd-b-m {
  padding-bottom: 48px;
}
.u-padd-b-s {
  padding-bottom: 24px;
}
.u-padd-b-xs {
  padding-bottom: 12px;
}
.u-marg-y-xxl {
  margin-top: 260px;
  margin-bottom: 260px;
}
.u-marg-y-xl {
  margin-top: 160px;
  margin-bottom: 160px;
}
.u-marg-y-l {
  margin-top: 96px;
  margin-bottom: 96px;
}
.u-marg-y-m {
  margin-top: 48px;
  margin-bottom: 48px;
}
.u-marg-y-s {
  margin-top: 24px;
  margin-bottom: 24px;
}
.u-marg-y-xs {
  margin-top: 12px;
  margin-bottom: 12px;
}
.u-marg-t-xxl {
  margin-top: 260px;
}
.u-marg-t-xl {
  margin-top: 160px;
}
.u-marg-t-l {
  margin-top: 96px;
}
.u-marg-t-m {
  margin-top: 48px;
}
.u-marg-t-s {
  margin-top: 24px;
}
.u-marg-t-xs {
  margin-top: 12px;
}
.u-marg-b-xxl {
  margin-bottom: 260px;
}
.u-marg-b-xl {
  margin-bottom: 160px;
}
.u-marg-b-l {
  margin-bottom: 96px;
}
.u-marg-b-m {
  margin-bottom: 48px;
}
.u-marg-b-s {
  margin-bottom: 24px;
}
.u-marg-b-xs {
  margin-bottom: 12px;
}
.u-marg-l-auto {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .u-padd-y-xxl {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .u-padd-t-xxl {
    padding-top: 160px;
  }
  .u-padd-b-xxl {
    padding-bottom: 160px;
  }
  .u-marg-y-xxl {
    margin-top: 160px;
    margin-bottom: 160px;
  }
  .u-marg-t-xxl {
    margin-top: 160px;
  }
  .u-marg-b-xxl {
    margin-bottom: 160px;
  }
}
.u-padd-l-1\/2 {
  padding-left: 4.116%;
}
.u-padd-r-1\/2 {
  padding-right: 4.116%;
}
/*------------------------------------------------------------------------- Push up */
.u-pushup-1\/2 {
  margin-top: -50%;
}
/*------------------------------------------------------------------------- Floating */
.u-float-right {
  float: right;
}
.u-float-left {
  float: left;
}
/*------------------------------------------------------------------------- Full width / height */
.u-fit-h {
  height: 100%;
}
.u-fit-w {
  width: 100%;
}
.u-fit-vh {
  height: 100vh;
}
.u-fit-vw {
  width: 100vh;
}
/*------------------------------------------------------------------------- Widths */
@media screen and (min-width: 0px) {
  .u-col-xs-12 {
    width: 100%;
  }
  .u-offset-xs-12 {
    margin-left: 100%;
  }
  .u-col-xs-11 {
    width: 91.66666667%;
  }
  .u-offset-xs-11 {
    margin-left: 91.66666667%;
  }
  .u-col-xs-10 {
    width: 83.33333333%;
  }
  .u-offset-xs-10 {
    margin-left: 83.33333333%;
  }
  .u-col-xs-9 {
    width: 75%;
  }
  .u-offset-xs-9 {
    margin-left: 75%;
  }
  .u-col-xs-8 {
    width: 66.66666667%;
  }
  .u-offset-xs-8 {
    margin-left: 66.66666667%;
  }
  .u-col-xs-7 {
    width: 58.33333333%;
  }
  .u-offset-xs-7 {
    margin-left: 58.33333333%;
  }
  .u-col-xs-6 {
    width: 50%;
  }
  .u-offset-xs-6 {
    margin-left: 50%;
  }
  .u-col-xs-5 {
    width: 41.66666667%;
  }
  .u-offset-xs-5 {
    margin-left: 41.66666667%;
  }
  .u-col-xs-4 {
    width: 33.33333333%;
  }
  .u-offset-xs-4 {
    margin-left: 33.33333333%;
  }
  .u-col-xs-3 {
    width: 25%;
  }
  .u-offset-xs-3 {
    margin-left: 25%;
  }
  .u-col-xs-2 {
    width: 16.66666667%;
  }
  .u-offset-xs-2 {
    margin-left: 16.66666667%;
  }
  .u-col-xs-1 {
    width: 8.33333333%;
  }
  .u-offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .u-col-xs-0 {
    width: 0%;
  }
  .u-offset-xs-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 768px) {
  .u-col-s-12 {
    width: 100%;
  }
  .u-offset-s-12 {
    margin-left: 100%;
  }
  .u-col-s-11 {
    width: 91.66666667%;
  }
  .u-offset-s-11 {
    margin-left: 91.66666667%;
  }
  .u-col-s-10 {
    width: 83.33333333%;
  }
  .u-offset-s-10 {
    margin-left: 83.33333333%;
  }
  .u-col-s-9 {
    width: 75%;
  }
  .u-offset-s-9 {
    margin-left: 75%;
  }
  .u-col-s-8 {
    width: 66.66666667%;
  }
  .u-offset-s-8 {
    margin-left: 66.66666667%;
  }
  .u-col-s-7 {
    width: 58.33333333%;
  }
  .u-offset-s-7 {
    margin-left: 58.33333333%;
  }
  .u-col-s-6 {
    width: 50%;
  }
  .u-offset-s-6 {
    margin-left: 50%;
  }
  .u-col-s-5 {
    width: 41.66666667%;
  }
  .u-offset-s-5 {
    margin-left: 41.66666667%;
  }
  .u-col-s-4 {
    width: 33.33333333%;
  }
  .u-offset-s-4 {
    margin-left: 33.33333333%;
  }
  .u-col-s-3 {
    width: 25%;
  }
  .u-offset-s-3 {
    margin-left: 25%;
  }
  .u-col-s-2 {
    width: 16.66666667%;
  }
  .u-offset-s-2 {
    margin-left: 16.66666667%;
  }
  .u-col-s-1 {
    width: 8.33333333%;
  }
  .u-offset-s-1 {
    margin-left: 8.33333333%;
  }
  .u-col-s-0 {
    width: 0%;
  }
  .u-offset-s-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 1024px) {
  .u-col-m-12 {
    width: 100%;
  }
  .u-offset-m-12 {
    margin-left: 100%;
  }
  .u-col-m-11 {
    width: 91.66666667%;
  }
  .u-offset-m-11 {
    margin-left: 91.66666667%;
  }
  .u-col-m-10 {
    width: 83.33333333%;
  }
  .u-offset-m-10 {
    margin-left: 83.33333333%;
  }
  .u-col-m-9 {
    width: 75%;
  }
  .u-offset-m-9 {
    margin-left: 75%;
  }
  .u-col-m-8 {
    width: 66.66666667%;
  }
  .u-offset-m-8 {
    margin-left: 66.66666667%;
  }
  .u-col-m-7 {
    width: 58.33333333%;
  }
  .u-offset-m-7 {
    margin-left: 58.33333333%;
  }
  .u-col-m-6 {
    width: 50%;
  }
  .u-offset-m-6 {
    margin-left: 50%;
  }
  .u-col-m-5 {
    width: 41.66666667%;
  }
  .u-offset-m-5 {
    margin-left: 41.66666667%;
  }
  .u-col-m-4 {
    width: 33.33333333%;
  }
  .u-offset-m-4 {
    margin-left: 33.33333333%;
  }
  .u-col-m-3 {
    width: 25%;
  }
  .u-offset-m-3 {
    margin-left: 25%;
  }
  .u-col-m-2 {
    width: 16.66666667%;
  }
  .u-offset-m-2 {
    margin-left: 16.66666667%;
  }
  .u-col-m-1 {
    width: 8.33333333%;
  }
  .u-offset-m-1 {
    margin-left: 8.33333333%;
  }
  .u-col-m-0 {
    width: 0%;
  }
  .u-offset-m-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 1200px) {
  .u-col-l-12 {
    width: 100%;
  }
  .u-offset-l-12 {
    margin-left: 100%;
  }
  .u-col-l-11 {
    width: 91.66666667%;
  }
  .u-offset-l-11 {
    margin-left: 91.66666667%;
  }
  .u-col-l-10 {
    width: 83.33333333%;
  }
  .u-offset-l-10 {
    margin-left: 83.33333333%;
  }
  .u-col-l-9 {
    width: 75%;
  }
  .u-offset-l-9 {
    margin-left: 75%;
  }
  .u-col-l-8 {
    width: 66.66666667%;
  }
  .u-offset-l-8 {
    margin-left: 66.66666667%;
  }
  .u-col-l-7 {
    width: 58.33333333%;
  }
  .u-offset-l-7 {
    margin-left: 58.33333333%;
  }
  .u-col-l-6 {
    width: 50%;
  }
  .u-offset-l-6 {
    margin-left: 50%;
  }
  .u-col-l-5 {
    width: 41.66666667%;
  }
  .u-offset-l-5 {
    margin-left: 41.66666667%;
  }
  .u-col-l-4 {
    width: 33.33333333%;
  }
  .u-offset-l-4 {
    margin-left: 33.33333333%;
  }
  .u-col-l-3 {
    width: 25%;
  }
  .u-offset-l-3 {
    margin-left: 25%;
  }
  .u-col-l-2 {
    width: 16.66666667%;
  }
  .u-offset-l-2 {
    margin-left: 16.66666667%;
  }
  .u-col-l-1 {
    width: 8.33333333%;
  }
  .u-offset-l-1 {
    margin-left: 8.33333333%;
  }
  .u-col-l-0 {
    width: 0%;
  }
  .u-offset-l-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 1400px) {
  .u-col-xl-12 {
    width: 100%;
  }
  .u-offset-xl-12 {
    margin-left: 100%;
  }
  .u-col-xl-11 {
    width: 91.66666667%;
  }
  .u-offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .u-col-xl-10 {
    width: 83.33333333%;
  }
  .u-offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .u-col-xl-9 {
    width: 75%;
  }
  .u-offset-xl-9 {
    margin-left: 75%;
  }
  .u-col-xl-8 {
    width: 66.66666667%;
  }
  .u-offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .u-col-xl-7 {
    width: 58.33333333%;
  }
  .u-offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .u-col-xl-6 {
    width: 50%;
  }
  .u-offset-xl-6 {
    margin-left: 50%;
  }
  .u-col-xl-5 {
    width: 41.66666667%;
  }
  .u-offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .u-col-xl-4 {
    width: 33.33333333%;
  }
  .u-offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .u-col-xl-3 {
    width: 25%;
  }
  .u-offset-xl-3 {
    margin-left: 25%;
  }
  .u-col-xl-2 {
    width: 16.66666667%;
  }
  .u-offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .u-col-xl-1 {
    width: 8.33333333%;
  }
  .u-offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .u-col-xl-0 {
    width: 0%;
  }
  .u-offset-xl-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 1680px) {
  .u-col-xxl-12 {
    width: 100%;
  }
  .u-offset-xxl-12 {
    margin-left: 100%;
  }
  .u-col-xxl-11 {
    width: 91.66666667%;
  }
  .u-offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .u-col-xxl-10 {
    width: 83.33333333%;
  }
  .u-offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .u-col-xxl-9 {
    width: 75%;
  }
  .u-offset-xxl-9 {
    margin-left: 75%;
  }
  .u-col-xxl-8 {
    width: 66.66666667%;
  }
  .u-offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .u-col-xxl-7 {
    width: 58.33333333%;
  }
  .u-offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .u-col-xxl-6 {
    width: 50%;
  }
  .u-offset-xxl-6 {
    margin-left: 50%;
  }
  .u-col-xxl-5 {
    width: 41.66666667%;
  }
  .u-offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .u-col-xxl-4 {
    width: 33.33333333%;
  }
  .u-offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .u-col-xxl-3 {
    width: 25%;
  }
  .u-offset-xxl-3 {
    margin-left: 25%;
  }
  .u-col-xxl-2 {
    width: 16.66666667%;
  }
  .u-offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .u-col-xxl-1 {
    width: 8.33333333%;
  }
  .u-offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .u-col-xxl-0 {
    width: 0%;
  }
  .u-offset-xxl-0 {
    margin-left: 0%;
  }
}
[class*="u-col-xxl"]:not([class*="u-col-xl"]):not([class*="u-col-l"]):not([class*="u-col-m"]):not([class*="u-col-s"]):not([class*="u-col-xs"]) {
  width: 100%;
}
@media screen and (max-width: 767px) {
  [class*="u-col-s"]:not([class*="u-col-xs"]) {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  [class*="u-col-m"]:not([class*="u-col-s"]):not([class*="u-col-xs"]) {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  [class*="u-col-l"]:not([class*="u-col-m"]):not([class*="u-col-s"]):not([class*="u-col-xs"]) {
    width: 100%;
  }
}
@media screen and (max-width: 1399px) {
  [class*="u-col-xl"]:not([class*="u-col-l"]):not([class*="u-col-m"]):not([class*="u-col-s"]):not([class*="u-col-xs"]) {
    width: 100%;
  }
}
@media screen and (max-width: 1679px) {
  [class*="u-col-xxl"]:not([class*="u-col-xl"]):not([class*="u-col-l"]):not([class*="u-col-m"]):not([class*="u-col-s"]):not([class*="u-col-xs"]) {
    width: 100%;
  }
}
/*------------------------------------------------------------------------- Equal height */
.u-equal-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/*------------------------------------------------------------------------- Aligning */
.u-tx-r {
  text-align: right;
}
.u-tx-l {
  text-align: left;
}
.u-tx-c {
  text-align: center;
}
.u-align-r {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.u-align-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.u-align-y-t {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.u-align-y-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-align-y-b {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.u-space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/*------------------------------------------------------------------------- Centering */
.u-center-x {
  margin: 0 auto;
}
.u-center-y {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*------------------------------------------------------------------------- Sticking */
.u-stick-l {
  -webkit-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  transform: translateX(-80px);
}
.u-stick-r {
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
}
@media screen and (max-width: 1680px) {
  .u-stick-l {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  .u-stick-r {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
}
@media screen and (max-width: 1280px) {
  .u-stick-l {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  .u-stick-r {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
}
/*------------------------------------------------------------------------------------------------------------------- Styling */
.u-tx-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.u-tx-mid {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.u-tx-caps {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.u-tx-fency {
  font-family: 'Saol Display', serif;
  font-weight: normal;
}
.u-word-per-line {
  word-spacing: 9999999px;
}
.u-tx-dim {
  color: #848484;
}
.u-tx-lh-1 {
  line-height: 1;
}
/*------------------------------------------------------------------------- Bakcgrounds */
.u-bg-black {
  background-color: #000000;
}
.u-bg-dark {
  background-color: #262626;
}
.u-bg-black .c-main-nav a,
.u-bg-dark .c-main-nav a,
.u-bg-black [class*="c-headline"],
.u-bg-dark [class*="c-headline"],
.u-bg-black [class*="c-btn"],
.u-bg-dark [class*="c-btn"],
.u-bg-black a,
.u-bg-dark a,
.u-bg-black p,
.u-bg-dark p,
.u-bg-black em,
.u-bg-dark em {
  color: white;
}
.u-bg-black .c-main-nav a:after,
.u-bg-dark .c-main-nav a:after,
.u-bg-black [class*="c-headline"]:after,
.u-bg-dark [class*="c-headline"]:after,
.u-bg-black [class*="c-btn"]:after,
.u-bg-dark [class*="c-btn"]:after,
.u-bg-black a:after,
.u-bg-dark a:after,
.u-bg-black p:after,
.u-bg-dark p:after,
.u-bg-black em:after,
.u-bg-dark em:after,
.u-bg-black .c-main-nav a::before,
.u-bg-dark .c-main-nav a::before,
.u-bg-black [class*="c-headline"]::before,
.u-bg-dark [class*="c-headline"]::before,
.u-bg-black [class*="c-btn"]::before,
.u-bg-dark [class*="c-btn"]::before,
.u-bg-black a::before,
.u-bg-dark a::before,
.u-bg-black p::before,
.u-bg-dark p::before,
.u-bg-black em::before,
.u-bg-dark em::before {
  background-color: white;
}
.u-bg-black [class*="c-btn"]:hover,
.u-bg-dark [class*="c-btn"]:hover {
  color: #000000;
}
.u-bg-primary {
  background-color: #000000;
}
.u-bg-secondary {
  background-color: #000000;
}
.u-bg-tertiary {
  background-color: #000000;
}
.u-bg-l-grey {
  background-color: #E6E6E6;
}
.u-bg-sl-grey {
  background-color: #F4F4F4;
}
.u-bg-white {
  background-color: white;
}
.u-bg-white .c-main-nav a,
.u-bg-white [class*="c-headline"],
.u-bg-white [class*="c-btn"],
.u-bg-white a,
.u-bg-white p,
.u-bg-white em {
  color: #000000;
}
.u-bg-white .c-main-nav a:after,
.u-bg-white [class*="c-headline"]:after,
.u-bg-white [class*="c-btn"]:after,
.u-bg-white a:after,
.u-bg-white p:after,
.u-bg-white em:after,
.u-bg-white .c-main-nav a::before,
.u-bg-white [class*="c-headline"]::before,
.u-bg-white [class*="c-btn"]::before,
.u-bg-white a::before,
.u-bg-white p::before,
.u-bg-white em::before {
  background-color: #000000;
}
.u-bg-white [class*="c-btn"]:hover {
  color: white;
}
[class*="u-bg-expand"] {
  position: relative;
}
[class*="u-bg-expand"]:before,
[class*="u-bg-expand"]:after {
  position: absolute;
  top: 0;
  width: 9999px;
  height: 100%;
  background-color: inherit;
  content: "";
}
.u-bg-expand-left:before {
  right: 100%;
}
.u-bg-expand-left:after {
  content: none;
}
.u-bg-expand-right:after {
  left: 100%;
}
.u-bg-expand-right:before {
  content: none;
}
.u-bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.u-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.u-circle {
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
}
.u-color-primary {
  color: #000000;
}
.u-freeride {
  position: absolute;
  z-index: -1;
}
.u-freeride + .u-freeride {
  z-index: -2;
}
/*------------------------------------------------------------------------- Header */
.l-header {
  position: fixed;
  z-index: 500;
  top: 0;
  width: 100%;
  padding-top: 60px;
}
.l-header::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  background-color: white;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: "";
}
@media screen and (min-width: 768px) {
  .l-header:hover::after {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
  .l-header:hover .l-nav-main.is-white li a {
    color: #000000;
  }
  .l-header:hover .l-nav-main.is-white li a::after {
    background-color: #000000;
  }
  .l-header:hover .l-logo.is-white a svg {
    fill: #000000;
  }
}
.l-header .l-logo a {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
}
.l-header .l-logo a svg {
  max-width: 150px;
  vertical-align: middle;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header .l-logo.is-white svg {
  fill: white;
}
.l-header .l-nav-main {
  margin-left: auto;
}
.l-header .l-nav-main li {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}
.l-header .l-nav-main li a {
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.l-header .l-nav-main li a::after {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #262626;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}
.l-header .l-nav-main li.current-menu-item a::after,
.l-header .l-nav-main li a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.l-header .l-nav-main.is-white li a {
  color: white;
}
.l-header .l-nav-main.is-white li a::after {
  background-color: white;
}
.l-header .l-burger,
.l-header .l-nav-main-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-top: 30px;
  }
  .l-header .l-nav-main {
    display: none;
  }
  .l-header .l-nav-main-mobile {
    position: fixed;
    left: 30px;
    top: 50%;
    display: block;
    margin-left: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .l-header .l-nav-main-mobile li {
    display: block;
    margin-bottom: 10px;
  }
  .l-header .l-nav-main-mobile li a {
    font-size: 28px;
    color: white;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .l-header .l-burger {
    position: relative;
    display: block;
    width: 40px;
    height: 16px;
    margin-left: auto;
    cursor: pointer;
  }
  .l-header .l-burger span {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 4px;
    margin-bottom: auto;
    margin-top: auto;
    background-color: #000000;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .l-header .l-burger span:nth-of-type(1) {
    -webkit-transform: translate3d(0, -6px, 0) rotate(0) scaleX(1);
    transform: translate3d(0, -6px, 0) rotate(0) scaleX(1);
  }
  .l-header .l-burger span:nth-of-type(2) {
    -webkit-transform: translate3d(0, 6px, 0) rotate(0) scaleX(1);
    transform: translate3d(0, 6px, 0) rotate(0) scaleX(1);
  }
  .l-header .l-burger.is-white span {
    background-color: white;
  }
  .l-header .l-burger.is-open span:nth-of-type(1) {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg) scaleX(0.7);
    transform: translate3d(0, 0, 0) rotate(45deg) scaleX(0.7);
  }
  .l-header .l-burger.is-open span:nth-of-type(2) {
    -webkit-transform: translate3d(0, 0, 0) rotate(-45deg) scaleX(0.7);
    transform: translate3d(0, 0, 0) rotate(-45deg) scaleX(0.7);
  }
}
.l-header.is-white svg {
  fill: white;
}
.l-header.is-white .l-burger span {
  background-color: white;
}
.l-nav-main-bg {
  position: fixed;
  display: none;
  z-index: 200;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  .l-nav-main-bg {
    display: block;
  }
}
/*------------------------------------------------------------------------- Footer */
footer {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
footer li {
  margin-bottom: 12px;
}
footer .l-nav {
  margin-right: 40px;
}
footer .l-logo svg {
  fill: white;
}
footer .u-bg-img.u-freeride {
  left: 8.33333333%;
  bottom: 0;
  width: 29.16666667%;
  height: calc(100% - 100px);
}
@media screen and (max-width: 1200px) {
  footer .u-bg-img.u-freeride {
    left: 8.33333333%;
    width: 58.33333333%;
  }
  footer .l-logo {
    margin-bottom: 24px;
  }
}
/*------------------------------------------------------------------------- Cookies */
.l-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  padding: 100px;
}
.l-cookies p {
  max-width: 600px;
}
.l-cookies .is-active {
  display: block;
}
/*------------------------------------------------------------------------- Preloader */
.l-preloader {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.l-preloader .l-bg {
  position: absolute;
  z-index: 400;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: white;
}
.l-preloader.is-hidden {
  display: none;
}
/*------------------------------------------------------------------------- Home - Intro  */
.l-sec-home-intro .l-image-1 img {
  max-width: 400px;
}
.l-sec-home-intro .l-contact {
  position: absolute;
  left: -40px;
  top: 100%;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-90deg) translate(0, 0);
  -ms-transform: rotate(-90deg) translate(0, 0);
  transform: rotate(-90deg) translate(0, 0);
  white-space: nowrap;
}
.l-sec-home-intro .l-contact span::after {
  content: "|\00a0\00a0";
}
@media screen and (max-width: 1200px) {
  .l-sec-home-intro .l-headline {
    text-align: center;
  }
  .l-sec-home-intro .l-image-2.u-stick-r {
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .l-sec-home-intro .l-contact {
    display: none;
  }
}
/*------------------------------------------------------------------------- Home - About/Offer */
@media screen and (max-width: 640px) {
  .l-sec-home-about-offer .l-about .l-text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .l-sec-home-about-offer .l-about .l-image.u-stick-l {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
/*------------------------------------------------------------------------- Home - Features */
.l-sec-home-about-features .l-image {
  z-index: -1;
}
.l-sec-home-about-features .l-image .o-image {
  margin-top: -50%;
}
@media screen and (max-width: 1200px) {
  .l-sec-home-about-features .l-text {
    text-align: center;
  }
  .l-sec-home-about-features .l-image .o-image {
    margin-top: 24px;
  }
}
/*------------------------------------------------------------------------- Home - Portfolio */
.l-sec-home-portfolio .l-intro .u-bg-black:not(.u-freeride) {
  position: relative;
  background-color: transparent;
}
.l-sec-home-portfolio .l-intro .u-bg-black.u-freeride {
  left: 0;
  top: 0;
  width: 99999px;
  height: calc(100% + 18vw);
  min-height: calc(100% + 250px);
  max-height: calc(100% + 350px);
}
@media screen and (max-width: 768px) {
  .l-sec-home-portfolio .l-intro .u-bg-black.u-freeride {
    min-height: auto;
  }
}
.l-sec-home-portfolio .l-intro .u-bg-img.u-freeride {
  left: 33.33333333%;
  bottom: 10%;
  width: 41.66666667%;
  height: 70%;
}
/*------------------------------------------------------------------------- Home - Benefits */
.l-sec-home-benefits .l-image-1 {
  top: 80px;
  right: calc(100% - 40px);
}
.l-sec-home-benefits .l-image-1 .o-image {
  max-width: 400px;
}
.l-sec-home-benefits .l-image-2 {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.l-sec-home-benefits .l-image-2 .o-image {
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .l-sec-home-benefits .l-text {
    margin-top: 96px;
  }
  .l-sec-home-benefits .l-image-2 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .l-sec-home-benefits .l-image-1.u-freeride {
    position: relative;
    top: 0;
    right: auto;
    margin: -96px 0 96px -30px;
  }
}
/*------------------------------------------------------------------------- About - Intro */
.l-sec-about-intro {
  position: relative;
}
.l-sec-about-intro .l-image-1 {
  top: 0;
  right: 0;
}
.l-sec-about-intro .l-image-2 {
  top: 90%;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .l-sec-about-intro .l-image-2 {
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-about-intro .l-image-2 {
    left: -30px;
  }
}
/*------------------------------------------------------------------------- About - Profile */
.l-sec-about-profile .l-image .o-image {
  max-width: 400px;
}
/*------------------------------------------------------------------------- About - Differentiators */
.l-sec-about-diff {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.l-sec-about-diff .l-list {
  margin-bottom: -48px;
}
.l-sec-about-diff .u-bg-img.u-freeride {
  width: 66.66666667%;
  height: 80%;
  left: 0;
  right: 0;
  top: 20%;
  margin-left: auto;
  margin-right: auto;
}
/*------------------------------------------------------------------------- About - Clients */
.l-sec-about-clients .l-clients-list {
  margin-bottom: -48px;
}
.l-sec-about-clients .l-clients-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12.5%;
  padding-left: 50px;
  padding-right: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.l-sec-about-clients .l-clients-list .o-image {
  max-width: 180px;
}
@media screen and (max-width: 1024px) {
  .l-sec-about-clients .l-clients-list > div {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-sec-about-clients .l-clients-list > div {
    width: 50%;
  }
}
/*------------------------------------------------------------------------- Offer - Intro */
.l-sec-offer-intro {
  position: relative;
  z-index: 0;
}
.l-sec-offer-intro .u-bg-img.u-freeride {
  left: 0;
  top: 0;
  width: 58.33333333%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .l-sec-offer-intro {
    text-align: center;
  }
}
/*------------------------------------------------------------------------- Offer - Competencies */
.l-sec-offer-competencies .l-black.u-bg-black {
  background-color: transparent;
}
.l-sec-offer-competencies .l-black .u-bg-black.u-freeride {
  width: 9999px;
  height: 100%;
  left: 16.66666667%;
  top: 0;
}
@media screen and (max-width: 1400px) {
  .l-sec-offer-competencies .l-arch .c-textbox-s {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-sec-offer-competencies .l-black .u-bg-black.u-freeride {
    left: 0%;
  }
  .l-sec-offer-competencies .l-tile.u-padd-t-xxl {
    padding-top: 0;
  }
  .l-sec-offer-competencies .l-tile.u-marg-t-xxl {
    margin-top: 0;
  }
  .l-sec-offer-competencies .u-flex.u-padd-y-l {
    padding-bottom: 48px;
    padding-top: 0;
  }
}
/*------------------------------------------------------------------------- Portfolio - Intro */
.l-sec-portfolio-intro {
  position: relative;
}
.l-sec-portfolio-intro ul.l-nav-category li {
  margin-bottom: 12px;
}
.l-sec-portfolio-intro ul.l-nav-category li a {
  position: relative;
  font-size: 18px;
}
.l-sec-portfolio-intro ul.l-nav-category li a::after {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: white;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}
.l-sec-portfolio-intro ul.l-nav-category li a.is-current::after,
.l-sec-portfolio-intro ul.l-nav-category li a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.l-sec-portfolio-intro .u-bg-black:not(.u-freeride) {
  position: relative;
  background-color: transparent;
}
.l-sec-portfolio-intro .u-bg-black.u-freeride {
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 18vw);
  min-height: calc(100% + 250px);
  max-height: calc(100% + 350px);
}
@media screen and (max-width: 768px) {
  .l-sec-portfolio-intro .u-bg-black.u-freeride {
    min-height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .l-sec-portfolio-intro {
    text-align: center;
  }
  .l-sec-portfolio-intro ul.l-nav-category li {
    display: inline-block;
  }
  .l-sec-portfolio-intro ul.l-nav-category li a {
    margin-right: 20px;
    font-size: 14px;
  }
}
/*------------------------------------------------------------------------- Project - Side Title */
.l-sec-project-fxtitle {
  position: fixed;
  z-index: 2;
  left: 80px;
  top: 50%;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-90deg) translate(-50%, 0);
  -ms-transform: rotate(-90deg) translate(-50%, 0);
  transform: rotate(-90deg) translate(-50%, 0);
  background-color: transparent;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-sec-project-fxtitle [class*="c-headline"] {
  display: inline-block;
  color: white;
}
.l-sec-project-fxtitle .l-title {
  margin-right: 24px;
}
.l-sec-project-fxtitle.is-show {
  opacity: 1;
}
@media screen and (max-width: 1680px) {
  .l-sec-project-fxtitle {
    left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .l-sec-project-fxtitle {
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-sec-project-fxtitle {
    display: none;
  }
}
/*------------------------------------------------------------------------- Project - Intro */
.l-sec-project-intro {
  position: relative;
  z-index: 0;
}
.l-sec-project-intro .u-bg-img.u-freeride {
  right: 0;
  top: 0;
  width: 66.66666667%;
  height: 100%;
}
.l-sec-project-intro .l-category {
  margin-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  .l-sec-project-intro {
    text-align: center;
  }
  .l-sec-project-intro .l-category {
    margin-bottom: 48px;
  }
}
/*------------------------------------------------------------------------- Project - Summary */
.l-sec-project-summary .l-headline {
  margin-top: -100px;
}
.l-sec-project-summary .l-item {
  min-width: 80px;
  max-width: 200px;
  margin-right: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .l-sec-project-summary .l-headline {
    text-align: center;
  }
  .l-sec-project-summary .l-item {
    margin-right: 24px;
    margin-bottom: 24px;
  }
}
/*------------------------------------------------------------------------- Project - Next */
.l-sec-projet-next .l-headline,
.l-sec-projet-next .l-image {
  height: 52.08333333vw;
  min-height: 400px;
}
.l-sec-projet-next .l-image {
  overflow: hidden;
}
.l-sec-projet-next .u-img {
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
}
.l-sec-projet-next .l-side-title {
  left: 80px;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-90deg) translate(-50%, 0);
  -ms-transform: rotate(-90deg) translate(-50%, 0);
  transform: rotate(-90deg) translate(-50%, 0);
}
@media screen and (max-width: 1680px) {
  .l-sec-projet-next .l-side-title {
    left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .l-sec-projet-next .l-side-title {
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-sec-projet-next .l-side-title {
    display: none;
  }
}
.l-sec-projet-next:hover .u-img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*------------------------------------------------------------------------- Post - Intro */
.l-sec-post-intro .l-image {
  height: 41.66666667vw;
  min-height: 400px;
}
.l-sec-post-intro .l-image .u-img {
  background-attachment: fixed;
}
/*------------------------------------------------------------------------- Career - Intro */
.l-sec-career-intro {
  position: relative;
  z-index: 0;
}
.l-sec-career-intro .u-bg-img.u-freeride {
  right: 0;
  top: 0;
  width: 41.66666667%;
  height: 100%;
}
/*------------------------------------------------------------------------- Contact - Content */
.l-sec-contact-content .l-black {
  position: relative;
  padding-left: 4.16666667%;
}
.l-sec-contact-content .l-black .u-bg-black.u-freeride {
  top: 0;
  left: 0;
  width: 9999px;
  height: calc(100% + 18vw);
  min-height: calc(100% + 100px);
  max-height: calc(100% + 200px);
}
@media screen and (max-width: 1024px) {
  .l-sec-contact-content .l-black {
    padding-left: 16.66666667%;
  }
}
.l-sec-contact-content #google-maps {
  height: 41.66666667vw;
  min-height: 400px;
}
/*------------------------------------------------------------------------- CTA */
.l-sec-cta .c-box-l {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.l-sec-cta [class*="headline"],
.l-sec-cta [class*="c-btn"] {
  margin: 12px 15px;
}
/*------------------------------------------------------------------------- General */
[data-animate="img"] {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: translate3d(0, 50px, 0) scaleY(1);
  transform: translate3d(0, 50px, 0) scaleY(1);
  -webkit-transition: all 1.2s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1.2s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1.2s cubic-bezier(0.86, 0, 0.07, 1);
}
[data-animate="img"] img {
  -webkit-transform-origin: inherit;
  -ms-transform-origin: inherit;
  transform-origin: inherit;
  -webkit-transform: translate3d(0, -300px, 0) scaleY(1.2);
  transform: translate3d(0, -300px, 0) scaleY(1.2);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
[data-animate="img"].is-animated {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
}
[data-animate="img"].is-animated img {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
}
[data-animate="tx"] {
  opacity: 0;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: translate3d(0, 50px, 0) scaleY(1.2);
  transform: translate3d(0, 50px, 0) scaleY(1.2);
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
}
[data-animate="tx"].is-animated {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
}
/*------------------------------------------------------------------------- Components */
/*------------------------------------ Project/Blog Box */
.c-project-box[data-animate="cplx"] .c-project-box__image .o-image,
.c-blogpost-box[data-animate="cplx"] .c-project-box__image .o-image,
.c-project-box[data-animate="cplx"] .c-blogpost-box__image .o-image,
.c-blogpost-box[data-animate="cplx"] .c-blogpost-box__image .o-image {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: translate3d(0, 100px, 0) scaleY(1);
  transform: translate3d(0, 100px, 0) scaleY(1);
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-project-box[data-animate="cplx"] .c-project-box__image .o-image img,
.c-blogpost-box[data-animate="cplx"] .c-project-box__image .o-image img,
.c-project-box[data-animate="cplx"] .c-blogpost-box__image .o-image img,
.c-blogpost-box[data-animate="cplx"] .c-blogpost-box__image .o-image img {
  -webkit-transform-origin: inherit;
  -ms-transform-origin: inherit;
  transform-origin: inherit;
  -webkit-transform: translate3d(0, -200px, 0) scaleY(1.2);
  transform: translate3d(0, -200px, 0) scaleY(1.2);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.c-project-box[data-animate="cplx"] .c-project-box__desc,
.c-blogpost-box[data-animate="cplx"] .c-project-box__desc,
.c-project-box[data-animate="cplx"] .c-blogpost-box__desc,
.c-blogpost-box[data-animate="cplx"] .c-blogpost-box__desc {
  opacity: 0;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: translate3d(0, 50px, 0) scaleY(1.2);
  transform: translate3d(0, 50px, 0) scaleY(1.2);
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.c-project-box[data-animate="cplx"].is-animated .c-project-box__image .o-image,
.c-blogpost-box[data-animate="cplx"].is-animated .c-project-box__image .o-image,
.c-project-box[data-animate="cplx"].is-animated .c-blogpost-box__image .o-image,
.c-blogpost-box[data-animate="cplx"].is-animated .c-blogpost-box__image .o-image {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
}
.c-project-box[data-animate="cplx"].is-animated .c-project-box__image .o-image img,
.c-blogpost-box[data-animate="cplx"].is-animated .c-project-box__image .o-image img,
.c-project-box[data-animate="cplx"].is-animated .c-blogpost-box__image .o-image img,
.c-blogpost-box[data-animate="cplx"].is-animated .c-blogpost-box__image .o-image img {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
}
.c-project-box[data-animate="cplx"].is-animated .c-project-box__desc,
.c-blogpost-box[data-animate="cplx"].is-animated .c-project-box__desc,
.c-project-box[data-animate="cplx"].is-animated .c-blogpost-box__desc,
.c-blogpost-box[data-animate="cplx"].is-animated .c-blogpost-box__desc {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
}
/*------------------------------------ Black Box */
[class*="c-box"][data-animate="cplx"][class*="c-box"][class*="u-bg-black"]::after {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
[class*="c-box"][data-animate="cplx"] [class*="l-btn"],
[class*="c-box"][data-animate="cplx"] [class*="c-headline"] {
  -webkit-transform: translate3d(0, 10px, 0) scaleY(1.2);
  transform: translate3d(0, 10px, 0) scaleY(1.2);
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
}
[class*="c-box"][data-animate="cplx"] [class*="l-btn"] {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
[class*="c-box"][data-animate="cplx"] [class*="c-headline"] {
  -webkit-transition-delay: 0.45s;
  -o-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
[class*="c-box"][data-animate="cplx"].is-animated[class*="c-box"][class*="u-bg-black"]::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
[class*="c-box"][data-animate="cplx"].is-animated [class*="l-btn"],
[class*="c-box"][data-animate="cplx"].is-animated [class*="c-headline"] {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
  opacity: 1;
}
/*------------------------------------------------------------------------- Local */
/*------------------------------------ Preloader */
.l-preloader svg {
  opacity: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scaleY(1.5);
  -ms-transform: scaleY(1.5);
  transform: scaleY(1.5);
  -webkit-animation: preloader 1s cubic-bezier(0.86, 0, 0.07, 1) forwards 0.5s;
  animation: preloader 1s cubic-bezier(0.86, 0, 0.07, 1) forwards 0.5s;
}
@-webkit-keyframes preloader {
  from {
    -webkit-transform: scaleY(1.5);
    transform: scaleY(1.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes preloader {
  from {
    -webkit-transform: scaleY(1.5);
    transform: scaleY(1.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
/*------------------------------------ Home - Portfolio x */
.l-sec-home-portfolio .l-intro[data-animate="cplx"] [class*="u-bg-"] {
  -webkit-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
}
.l-sec-home-portfolio .l-intro[data-animate="cplx"] .u-bg-black.u-freeride {
  -webkit-transform: translate3d(-100px, 0, 0);
  transform: translate3d(-100px, 0, 0);
}
.l-sec-home-portfolio .l-intro[data-animate="cplx"] .u-bg-img {
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: translate3d(50px, 0, 0) scaleX(1.2);
  transform: translate3d(50px, 0, 0) scaleX(1.2);
  -webkit-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
  opacity: 0;
}
.l-sec-home-portfolio .l-intro[data-animate="cplx"].is-animated .u-bg-black.u-freeride {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.l-sec-home-portfolio .l-intro[data-animate="cplx"].is-animated .u-bg-img {
  -webkit-transform: translate3d(0, 0, 0) scaleX(1);
  transform: translate3d(0, 0, 0) scaleX(1);
  opacity: 0.1;
}
/*------------------------------------ About - Differentiators  */
.l-sec-about-diff .u-bg-img[data-animate="cplx"] {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: translate3d(0, 50px, 0) scaleY(1.5);
  transform: translate3d(0, 50px, 0) scaleY(1.5);
  -webkit-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
}
.l-sec-about-diff .u-bg-img[data-animate="cplx"].is-animated {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
  opacity: 0.1;
}
/*------------------------------------ Footer  */
footer[data-animate="cplx"] .o-container {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: translate3d(0, 50px, 0) scaleY(1.2);
  transform: translate3d(0, 50px, 0) scaleY(1.2);
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
}
footer[data-animate="cplx"] .u-bg-img {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: translate3d(0, 50px, 0) scaleY(1.5);
  transform: translate3d(0, 50px, 0) scaleY(1.5);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
}
footer[data-animate="cplx"].is-animated .o-container {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
  opacity: 1;
}
footer[data-animate="cplx"].is-animated .u-bg-img {
  -webkit-transform: translate3d(0, 0, 0) scaleY(1);
  transform: translate3d(0, 0, 0) scaleY(1);
  opacity: 0.1;
}

