/**
 *  Styles
 */
/**
 *  Media Queries and Breakpoints
 */
/**
 *  Library
 *
 *  Contains mixins and functions.
 */
/**
 *  Layout
 */
/**
 *  Settings
 */
/**
 *  Center element
 *  parent element must have position: relative;
 *
 *  @variables: xy, x, y
 *  Default: xy
 */
/**
 *  Border Radius
 *
 *  @variables: $radius (px, em, rem value)
 */
/**
 *  Font size map by Jonathan Suh
 *  https://www.smashingmagazine.com/2015/06/responsive-typography-with-sass-maps/
 */
/**
 *  Media Query Mixins.
 *  Sorted by Minimum, Maximum and Between
 */
/**
 *  Minimums
 * eg.
 * @include minimum(tablet){ @content };
 * css will be active on tablet size and beyond
 *
 * @variables: tablet, small-desktop, desktop
 */
/**
 *  Maximums
 * eg.
 * @include maximum(tablet){ @content };
 * css will be active on tablet size size and beyond
 *
 * @variables: mobile, tablet, small-desktop, desktop
 */
/**
 *  Betweens
 * eg.
 * @include between(tablet,desktop){ @content };
 * css will be active between tablet and desktop breakpoints.
 *
 * @variables: tablet, desktop
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
  outline: none;
  border: none;
  background: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0;
  -webkit-appearance: none;
  color: inherit;
  cursor: pointer; }
  button:focus,
  input:focus,
  optgroup:focus,
  select:focus,
  textarea:focus {
    outline: none; }

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

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

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

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

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

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

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

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

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

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

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

/**
 * Resets ul's and ol's - Bone addition
 */
ul,
ol {
  list-style: none;
  padding: 0px;
  margin: 0px; }
  ul li,
  ol li {
    padding: 0px;
    margin: 0px; }

* {
  margin: 0;
  box-sizing: border-box; }

/**
 *  Typography
 */
@font-face {
  font-family: 'Basis';
  src: url(../fonts/basis-grotesque-regular-pro.eot);
  src: url(../fonts/basis-grotesque-regular-pro.eot#iefix) format("embedded-opentype"), url(../fonts/basis-grotesque-regular-pro.woff2) format("woff2"), url(../fonts/basis-grotesque-regular-pro.woff) format("woff"), url(../fonts/basis-grotesque-regular-pro.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Basis';
  src: url(../fonts/basis-grotesque-bold-pro.eot);
  src: url(../fonts/basis-grotesque-bold-pro.eot#iefix) format("embedded-opentype"), url(../fonts/basis-grotesque-bold-pro.woff2) format("woff2"), url(../fonts/basis-grotesque-bold-pro.woff) format("woff"), url(../fonts/basis-grotesque-bold-pro.ttf) format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Basis Mono';
  src: url(../fonts/basis-grotesque-mono-regular-pro.eot);
  src: url(../fonts/basis-grotesque-mono-regular-pro.eot#iefix) format("embedded-opentype"), url(../fonts/basis-grotesque-mono-regular-pro.woff2) format("woff2"), url(../fonts/basis-grotesque-mono-regular-pro.woff) format("woff"), url(../fonts/basis-grotesque-mono-regular-pro.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

/**
 *  Font weight variables
 */
/**
 *  Font sizes
 *
 *	Map options: null, x-small, small, medium, large, x-large
 *
 */
p, h1, h2, h3, h4, h5 {
  font-family: "Basis", sans-serif; }

p {
  font-size: 14px;
  line-height: 1.2;
  margin: 0px;
  padding: 0px; }
  @media screen and (min-width: 380px) {
    p {
      font-size: 14px;
      line-height: 1.2; } }
  @media screen and (min-width: 700px) {
    p {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 900px) {
    p {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1050px) {
    p {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1230px) {
    p {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1480px) {
    p {
      font-size: 15px;
      line-height: 1.2; } }

body {
  font-weight: normal;
  font-size: 16px;
  color: #282323;
  font-family: "Basis", sans-serif; }

h1 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0px;
  padding: 0px; }
  @media screen and (min-width: 380px) {
    h1 {
      font-size: 14px;
      line-height: 1.4; } }
  @media screen and (min-width: 700px) {
    h1 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 900px) {
    h1 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1050px) {
    h1 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1230px) {
    h1 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1480px) {
    h1 {
      font-size: 16px;
      line-height: 1.4; } }

h2 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  margin: 0px;
  margin-bottom: 25px;
  padding: 0px; }
  @media screen and (min-width: 380px) {
    h2 {
      font-size: 14px;
      line-height: 1.4; } }
  @media screen and (min-width: 700px) {
    h2 {
      font-size: 25px;
      line-height: 1.4; } }
  @media screen and (min-width: 900px) {
    h2 {
      font-size: 25px;
      line-height: 1.4; } }
  @media screen and (min-width: 1050px) {
    h2 {
      font-size: 25px;
      line-height: 1.4; } }
  @media screen and (min-width: 1230px) {
    h2 {
      font-size: 25px;
      line-height: 1.4; } }
  @media screen and (min-width: 1480px) {
    h2 {
      font-size: 25px;
      line-height: 1.4; } }
  @media (max-width: 700px) {
    h2 {
      margin-bottom: 15px; } }

h3 {
  font-size: 14px;
  line-height: 1.2;
  font-weight: normal;
  margin: 0px;
  padding: 0px; }
  @media screen and (min-width: 380px) {
    h3 {
      font-size: 14px;
      line-height: 1.2; } }
  @media screen and (min-width: 700px) {
    h3 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 900px) {
    h3 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1050px) {
    h3 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1230px) {
    h3 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1480px) {
    h3 {
      font-size: 15px;
      line-height: 1.2; } }

h4 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0px;
  padding: 0px; }
  @media screen and (min-width: 380px) {
    h4 {
      font-size: 14px;
      line-height: 1.4; } }
  @media screen and (min-width: 700px) {
    h4 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 900px) {
    h4 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1050px) {
    h4 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1230px) {
    h4 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1480px) {
    h4 {
      font-size: 16px;
      line-height: 1.4; } }

h5 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: normal;
  margin: 0px;
  padding: 0px; }
  @media screen and (min-width: 380px) {
    h5 {
      font-size: 14px;
      line-height: 1.4; } }
  @media screen and (min-width: 700px) {
    h5 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 900px) {
    h5 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1050px) {
    h5 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1230px) {
    h5 {
      font-size: 16px;
      line-height: 1.4; } }
  @media screen and (min-width: 1480px) {
    h5 {
      font-size: 16px;
      line-height: 1.4; } }

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

.content a, body#tinymce.wp-editor a {
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .content a:hover, body#tinymce.wp-editor a:hover {
    opacity: .8;
    text-decoration: underline; }

.content img, body#tinymce.wp-editor img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover; }
  @media (max-width: 700px) {
    .content img, body#tinymce.wp-editor img {
      position: relative;
      left: -30px;
      width: calc(100% + 60px);
      max-width: calc(100% + 60px);
      display: block; } }

.content p, body#tinymce.wp-editor p {
  margin-bottom: 0px;
  text-indent: 30px; }
  @media (max-width: 1480px) {
    .content p, body#tinymce.wp-editor p {
      text-indent: 25px; } }
  .content p:first-of-type, body#tinymce.wp-editor p:first-of-type {
    text-indent: 0px; }

.content h3, body#tinymce.wp-editor h3 {
  text-decoration: underline;
  padding-left: 60px;
  margin-bottom: 15px;
  margin-top: 30px; }
  @media (max-width: 1480px) {
    .content h3, body#tinymce.wp-editor h3 {
      padding-left: 25px; } }

.content blockquote, body#tinymce.wp-editor blockquote {
  margin-bottom: 22px; }
  @media (max-width: 700px) {
    .content blockquote, body#tinymce.wp-editor blockquote {
      margin-bottom: 14px; } }
  .content blockquote:last-of-type, body#tinymce.wp-editor blockquote:last-of-type {
    margin-bottom: 0; }

.content blockquote, body#tinymce.wp-editor blockquote,
.content blockquote p,
body#tinymce.wp-editor blockquote p {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em; }
  @media (max-width: 700px) {
    .content blockquote, body#tinymce.wp-editor blockquote,
    .content blockquote p,
    body#tinymce.wp-editor blockquote p {
      font-size: 14px;
      line-height: 1.2; } }

body#tinymce.wp-editor {
  background: none; }
  body#tinymce.wp-editor img {
    max-width: 100%;
    width: 100%; }

/**
 *  General
 */
* {
  -webkit-font-smoothing: antialiased;
  font-family: "Basis", sans-serif; }

img {
  max-width: 100%; }

.hidden-link {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translate(-50%, -50%); }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box; }

body {
  margin: 0;
  background: #F9F8F8; }

.transition-fade {
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1; }

html.is-animating .transition-fade {
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0; }

.inner-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  @media (max-width: 900px) {
    .inner-wrapper {
      padding-left: 50px;
      padding-right: 50px; } }
  @media (max-width: 700px) {
    .inner-wrapper {
      padding-left: 20px;
      padding-right: 20px; } }

.empty-div {
  height: 0px !important;
  opacity: 0px !important;
  pointer-events: none !important;
  margin: 0px !important;
  padding: 0px !important; }

.module {
  padding-bottom: 80px; }
  .module:only-child {
    padding-bottom: 0px; }
  .module:last-of-type {
    padding-bottom: 0px; }
  @media (max-width: 700px) {
    .module {
      padding-bottom: 40px; } }

.has-invisible-link {
  position: relative; }
  .has-invisible-link .invisible-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
    display: block;
    z-index: 2; }

.content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch; }
  @media (max-width: 900px) {
    .content-wrapper {
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: start;
          align-items: flex-start; } }

.map-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }
  @media (max-width: 700px) {
    .map-wrapper {
      position: static;
      height: auto;
      width: 100%; } }

.right {
  width: 50%;
  min-height: 100vh;
  background: #B4B2B1;
  padding-left: 140px;
  padding-right: 140px;
  padding-top: 170px;
  padding-bottom: 140px;
  position: relative; }
  @media (max-width: 1480px) {
    .right {
      padding-left: 70px;
      padding-right: 120px; } }
  @media (max-width: 900px) {
    .right {
      width: 100%;
      padding: 60px 120px;
      min-height: auto; } }
  @media (max-width: 700px) {
    .right {
      padding: 75px; } }
  @media (max-width: 380px) {
    .right {
      padding: 50px; } }

.left {
  width: 50%;
  padding-top: 170px;
  padding-left: 230px;
  padding-right: 140px;
  padding-bottom: 140px; }
  @media (max-width: 1480px) {
    .left {
      padding-left: 120px;
      padding-right: 70px; } }
  @media (max-width: 900px) {
    .left {
      width: 100%;
      padding: 120px 120px 60px; } }
  @media (max-width: 700px) {
    .left {
      padding: 75px;
      padding-top: 70px; } }
  @media (max-width: 380px) {
    .left {
      padding: 50px; } }

img {
  width: 100%;
  display: block; }

.owl-next {
  position: fixed;
  bottom: 96px;
  right: calc(50% - 100px);
  transform: translateX(-50%);
  width: 40px;
  height: 16px;
  background: url(../images/arrow-right.svg) no-repeat center !important;
  background-size: contain !important;
  display: block; }
  @media (max-width: 1480px) {
    .owl-next {
      bottom: 59px; } }
  .owl-next span {
    display: none !important; }

.owl-prev {
  position: fixed;
  bottom: 96px;
  left: calc(50% - 100px);
  transform: translateX(50%);
  width: 40px;
  height: 16px;
  background: url(../images/arrow-left.svg) no-repeat center !important;
  background-size: contain !important;
  display: block; }
  @media (max-width: 1480px) {
    .owl-prev {
      bottom: 59px; } }
  .owl-prev span {
    display: none !important; }

.menu {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  z-index: 1000;
  position: fixed; }
  .menu__bar {
    display: inline-block; }
  .menu .menu-items {
    color: #282323;
    list-style: none;
    display: inline-block; }

/**
 *  Spacing Map
 *  Example usage:
 *
 *  $purple-spacing: (
 *    null  : (20px),
 *    small : 20px,
 *    medium: 40px
 *  );
 *
 *  .test{
 *    @include spacing(padding-bottom, $purple-spacing);
 *  }
 */
.validation_error {
  display: none; }

.validation_message {
  font-size: 10px;
  bottom: -22px !important;
  left: 0;
  top: auto !important;
  margin-top: 3px;
  color: red; }

.gform_confirmation_message {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em; }
  @media (max-width: 700px) {
    .gform_confirmation_message {
      font-size: 14px;
      line-height: 1.2; } }

.gform_confirmation_wrapper {
  max-width: 300px;
  margin-top: 70px; }
  @media (max-width: 900px) {
    .gform_confirmation_wrapper {
      margin-top: 50px; } }
  @media (max-width: 700px) {
    .gform_confirmation_wrapper {
      margin-top: 30px;
      margin-bottom: 20px; } }

.gf_clear {
  display: none; }

.gform_card_icon_container,
.ginput_card_security_code_icon {
  display: none !important; }

.gform_wrapper {
  box-sizing: border-box;
  max-width: 300px;
  margin-top: 70px; }
  @media (max-width: 900px) {
    .gform_wrapper {
      margin-top: 50px; } }
  @media (max-width: 700px) {
    .gform_wrapper {
      margin-top: 30px;
      margin-bottom: 20px; } }
  .gform_wrapper form .gform_body {
    margin-bottom: 5px; }
    .gform_wrapper form .gform_body > .gform_fields {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-align: start;
          align-items: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      list-style: none;
      padding: 0px;
      margin: 0px; }
      .gform_wrapper form .gform_body > .gform_fields > li {
        width: 100%;
        margin-bottom: 10px;
        position: relative;
        padding-left: 0px;
        font-size: 14px;
        line-height: 1.2; }
        @media screen and (min-width: 380px) {
          .gform_wrapper form .gform_body > .gform_fields > li {
            font-size: 14px;
            line-height: 1.2; } }
        @media screen and (min-width: 700px) {
          .gform_wrapper form .gform_body > .gform_fields > li {
            font-size: 15px;
            line-height: 1.2; } }
        @media screen and (min-width: 900px) {
          .gform_wrapper form .gform_body > .gform_fields > li {
            font-size: 15px;
            line-height: 1.2; } }
        @media screen and (min-width: 1050px) {
          .gform_wrapper form .gform_body > .gform_fields > li {
            font-size: 15px;
            line-height: 1.2; } }
        @media screen and (min-width: 1230px) {
          .gform_wrapper form .gform_body > .gform_fields > li {
            font-size: 15px;
            line-height: 1.2; } }
        @media screen and (min-width: 1480px) {
          .gform_wrapper form .gform_body > .gform_fields > li {
            font-size: 15px;
            line-height: 1.2; } }
        @media (max-width: 700px) {
          .gform_wrapper form .gform_body > .gform_fields > li {
            width: 100% !important; } }
        .gform_wrapper form .gform_body > .gform_fields > li:after {
          display: none; }
        .gform_wrapper form .gform_body > .gform_fields > li .ginput_preview {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          -ms-flex-pack: start;
              justify-content: flex-start;
          margin-top: 10px; }
          .gform_wrapper form .gform_body > .gform_fields > li .ginput_preview strong {
            font-weight: normal;
            margin-left: 10px; }
        .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: justify;
              justify-content: space-between;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
          .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
            width: 32%; }
            .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span.ginput_full {
              width: 100%;
              margin-bottom: 15px; }
            .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span label {
              display: block;
              margin-bottom: 8px; }
        .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: justify;
              justify-content: space-between;
          -ms-flex-align: center;
              align-items: center; }
          .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div .ginput_container {
            width: 31%;
            position: relative; }
            .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div .ginput_container:after {
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              -webkit-transform: translateY(-50%);
              right: 10px;
              content: '';
              pointer-events: none;
              width: 16px;
              height: 18px; }
        .gform_wrapper form .gform_body > .gform_fields > li .gfield_radio {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: start;
              justify-content: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          list-style: none;
          padding: 0px;
          margin: 0px; }
          .gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: center;
                justify-content: center;
            -ms-flex-align: center;
                align-items: center;
            margin-bottom: 5px;
            padding-left: 0px;
            margin-right: 20px; }
            .gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li:after {
              display: none; }
            .gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li input[type="radio"] {
              margin: 0px;
              -ms-flex-negative: 0;
                  flex-shrink: 0;
              margin-right: 8px; }
        .gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: start;
              justify-content: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          list-style: none;
          padding: 0px;
          margin: 0px; }
          .gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: center;
                justify-content: center;
            -ms-flex-align: center;
                align-items: center;
            margin-bottom: 5px;
            padding-left: 0px;
            margin-right: 20px; }
            .gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li:after {
              display: none; }
            .gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li input[type="checkbox"] {
              margin: 0px;
              -ms-flex-negative: 0;
                  flex-shrink: 0;
              margin-right: 8px; }
        .gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
          display: block;
          margin-bottom: 8px; }
        .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select {
          position: relative;
          width: 100%; }
          .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select:after {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            right: 10px;
            content: '';
            pointer-events: none;
            width: 16px;
            height: 18px; }
          .gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select select {
            -moz-appearance: none;
            -webkit-appearance: none;
            -ms-progress-appearance: none;
            padding-right: 30px; }
        .gform_wrapper form .gform_body > .gform_fields > li.title-block {
          margin-bottom: 20px; }
        .gform_wrapper form .gform_body > .gform_fields > li.hide-label > .gfield_label {
          display: none !important; }
        .gform_wrapper form .gform_body > .gform_fields > li.centre-text > .gfield_label {
          text-align: center;
          display: block; }
        .gform_wrapper form .gform_body > .gform_fields > li.centre-text input[type="text"],
        .gform_wrapper form .gform_body > .gform_fields > li.centre-text input[type="email"],
        .gform_wrapper form .gform_body > .gform_fields > li.centre-text select,
        .gform_wrapper form .gform_body > .gform_fields > li.centre-text textarea {
          text-align: center; }
        .gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
        .gform_wrapper form .gform_body > .gform_fields > li input[type="email"],
        .gform_wrapper form .gform_body > .gform_fields > li select,
        .gform_wrapper form .gform_body > .gform_fields > li textarea {
          width: 100%;
          box-sizing: border-box;
          -moz-appearance: none;
          -webkit-appearance: none;
          -ms-progress-appearance: none;
          background: transparent;
          resize: none;
          border: none;
          border-radius: 0px;
          transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
          border-bottom: solid 1px #282323;
          padding-bottom: 4px; }
          .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus,
          .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:focus,
          .gform_wrapper form .gform_body > .gform_fields > li select:focus,
          .gform_wrapper form .gform_body > .gform_fields > li textarea:focus {
            outline: 0px; }
          .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li select:-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li textarea:-ms-input-placeholder {
            /* Chrome, Firefox, Opera, Safari 10.1+ */
            color: #000;
            opacity: 1; }
          .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li select::placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li textarea::placeholder {
            /* Chrome, Firefox, Opera, Safari 10.1+ */
            color: #000;
            opacity: 1; }
          .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li select:-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li textarea:-ms-input-placeholder {
            /* Internet Explorer 10-11 */
            color: #000;
            opacity: 1; }
          .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li select::-ms-input-placeholder,
          .gform_wrapper form .gform_body > .gform_fields > li textarea::-ms-input-placeholder {
            /* Microsoft Edge */
            color: #000;
            opacity: 1; }
        .gform_wrapper form .gform_body > .gform_fields > li.third {
          width: 31%; }
        .gform_wrapper form .gform_body > .gform_fields > li.half {
          width: calc(50% - 12.5px); }
        .gform_wrapper form .gform_body > .gform_fields > li.two-thirds {
          width: 65.5%; }
  .gform_wrapper form .gform_footer {
    text-align: left; }
    .gform_wrapper form .gform_footer .gform_button {
      -moz-appearance: none;
      -webkit-appearance: none;
      -ms-progress-appearance: none;
      background: transparent;
      border-radius: 0;
      border: solid 1px #282323;
      padding: 4px 14px;
      font-size: 14px;
      line-height: 1.2;
      transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
      @media screen and (min-width: 380px) {
        .gform_wrapper form .gform_footer .gform_button {
          font-size: 14px;
          line-height: 1.2; } }
      @media screen and (min-width: 700px) {
        .gform_wrapper form .gform_footer .gform_button {
          font-size: 15px;
          line-height: 1.2; } }
      @media screen and (min-width: 900px) {
        .gform_wrapper form .gform_footer .gform_button {
          font-size: 15px;
          line-height: 1.2; } }
      @media screen and (min-width: 1050px) {
        .gform_wrapper form .gform_footer .gform_button {
          font-size: 15px;
          line-height: 1.2; } }
      @media screen and (min-width: 1230px) {
        .gform_wrapper form .gform_footer .gform_button {
          font-size: 15px;
          line-height: 1.2; } }
      @media screen and (min-width: 1480px) {
        .gform_wrapper form .gform_footer .gform_button {
          font-size: 15px;
          line-height: 1.2; } }
      .gform_wrapper form .gform_footer .gform_button:hover {
        color: #F9F8F8;
        background: #282323; }
      .gform_wrapper form .gform_footer .gform_button:focus {
        outline: 0px; }

body img.gform_ajax_spinner {
  display: none !important; }

.gform_validation_container {
  position: fixed !important;
  left: 999px;
  visibility: hidden; }

body .gform_wrapper h3.gform_title {
  display: none !important; }

/*RADIO*/
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute !important;
  left: -9999px; }

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative !important;
  padding-left: 21px !important;
  cursor: pointer !important; }

[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 2px;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  border: 2px solid #fff;
  box-sizing: border-box; }

[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 2px;
  left: 0px;
  opacity: 1;
  background: #fff;
  border-radius: 100%;
  transition: all .2s; }

[type="radio"]:not(:checked) + label:after {
  opacity: 0; }

[type="radio"]:checked + label:after {
  opacity: 1; }

/* disabled radio */
[type="radio"]:disabled:not(:checked) + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd; }

[type="radio"]:disabled:checked + label:after {
  color: #999; }

[type="radio"]:disabled + label {
  color: #aaa; }

/*CHECKBOX*/
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute !important;
  left: -9999px; }

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative !important;
  padding-left: 22px !important;
  cursor: pointer !important; }

[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 1px;
  box-sizing: border-box;
  height: 15px;
  width: 15px;
  background: transparent;
  border: solid 2px #fff; }

[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 1px;
  left: 0px;
  opacity: 1;
  background: #fff;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[type="checkbox"]:not(:checked) + label:after {
  opacity: 0; }

[type="checkbox"]:checked + label:after {
  opacity: 1; }

/* disabled checkbox */
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd; }

[type="checkbox"]:disabled:checked + label:after {
  color: #999; }

[type="checkbox"]:disabled + label {
  color: #aaa; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.animation__intro .home-logo svg path:nth-child(1) {
  opacity: 1; }

.animation__intro .home-logo svg path:nth-child(2) {
  opacity: 1; }

.animation__intro .home-logo svg path:nth-child(3) {
  opacity: 1; }

.animation__intro .home-logo svg path:nth-child(4) {
  opacity: 1; }

.animation__grid-fadedin .home-logo {
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0; }

.animation__grid-fadedin.home .header,
.animation__grid-fadedin.home .fixed-letter {
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1; }

.home {
  background: #B4B2B1; }
  .home .letter-r svg path,
  .home .letter-n svg path,
  .home .letter-plus svg polygon,
  .home .letter-s svg path {
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    fill: #f6f5f2; }
  .home .header,
  .home .fixed-letter {
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0; }
  .home.page-ready .header,
  .home.page-ready .card-project,
  .home.page-ready .fixed-letter {
    opacity: 1; }

.home-logo {
  opacity: .95;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40vw;
  z-index: 4;
  pointer-events: none; }
  .home-logo svg path:nth-child(1) {
    transition: opacity 50ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transition-delay: 400ms; }
  .home-logo svg path:nth-child(2) {
    transition: opacity 50ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transition-delay: 600ms; }
  .home-logo svg path:nth-child(3) {
    transition: opacity 50ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transition-delay: 800ms; }
  .home-logo svg path:nth-child(4) {
    transition: opacity 50ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transition-delay: 1000ms; }
  @media (max-width: 700px) {
    .home-logo {
      width: 60vw; } }
  .home-logo img {
    width: 100%;
    height: auto;
    display: block; }

.home-grid__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0px 130px;
  padding-top: 180px; }
  @media (max-width: 900px) {
    .home-grid__inner {
      padding: 0px 80px;
      padding-top: 130px; } }
  @media (max-width: 700px) {
    .home-grid__inner {
      padding: 0px 20px;
      padding-top: 66px; } }
  @media (max-width: 380px) {
    .home-grid__inner {
      padding-top: 55px; } }

.card-project {
  width: 29%;
  margin-bottom: 4.25vw;
  opacity: 0;
  transform: translateY(20px);
  transition: all 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .card-project.active {
    transform: translateY(0px);
    opacity: 1; }
  @media (max-width: 1480px) {
    .card-project {
      margin-bottom: 60px; } }
  @media (max-width: 900px) {
    .card-project {
      width: 50%;
      margin-bottom: 100px; } }
  @media (max-width: 700px) {
    .card-project {
      width: 100%; } }
  .card-project__inner {
    position: relative;
    max-width: 70%;
    margin: 0px auto; }
    @media (max-width: 900px) {
      .card-project__inner {
        max-width: 70%; } }
    .card-project__inner:hover .card-project__image {
      filter: grayscale(0) sepia(0) contrast(1); }
    .card-project__inner:hover .card-project__title {
      transform: translate(-50%, 0);
      opacity: 1; }
  .card-project__image {
    width: 100%;
    height: 9vw;
    display: block;
    filter: grayscale(1) sepia(0.3) contrast(0.7);
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    @media (max-width: 1480px) {
      .card-project__image {
        height: 10vw; } }
    @media (max-width: 900px) {
      .card-project__image {
        height: 19vw; } }
    @media (max-width: 700px) {
      .card-project__image {
        height: 55vw; } }
  .card-project__title {
    font-size: 14px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    top: calc(100% + 15px);
    width: 90%;
    text-align: center;
    opacity: 0;
    font-family: "Basis Mono", monospace;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    @media (max-width: 900px) {
      .card-project__title {
        transform: translate(-50%, 0);
        opacity: 1; } }

.previous-project, .next-project {
  display: inline-block;
  position: relative; }
  .previous-project::after, .next-project::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    display: block;
    height: 1px;
    background: #282323;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .previous-project:hover::after, .next-project:hover::after {
    opacity: 1; }

.panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  background: #B4B2B1;
  height: 100%;
  overflow: auto;
  padding-left: 140px;
  padding-right: 140px;
  z-index: 3;
  visibility: hidden;
  transform: translateX(110%);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .panel.active {
    transform: translateX(0px);
    visibility: visible; }
  @media (max-width: 1480px) {
    .panel {
      padding-left: 70px;
      padding-right: 120px; } }
  @media (max-width: 900px) {
    .panel {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      right: auto;
      padding: 120px 120px 60px;
      background: rgba(180, 178, 177, 0.98); } }
  @media (max-width: 700px) {
    .panel {
      padding: 50px;
      padding-top: 70px; } }
  .panel__inner {
    padding-top: 170px;
    padding-bottom: 140px; }
    @media (max-width: 900px) {
      .panel__inner {
        padding-top: 0px; } }
  .panel__details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: start;
        align-items: flex-start; }
    @media (max-width: 1230px) {
      .panel__details {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .panel__details span {
      font-weight: bold;
      margin-bottom: 15px;
      display: block; }
      @media (max-width: 700px) {
        .panel__details span {
          font-size: 14px; } }
    .panel__details .completion-detail {
      display: block;
      margin-top: 1.4em;
      text-indent: 0; }
  .panel__content {
    width: 60%; }
    @media (max-width: 1230px) {
      .panel__content {
        width: 100%;
        margin-bottom: 60px; } }
    @media (max-width: 700px) {
      .panel__content {
        margin-bottom: 40px; } }
  .panel__collabs {
    width: 36%; }
    @media (max-width: 1230px) {
      .panel__collabs {
        width: 100%; } }
    .panel__collabs p {
      text-indent: 0px; }

.project {
  font-size: 15px; }
  .project__title {
    position: fixed;
    left: -127px;
    top: 50%;
    transform: rotate(-90deg) translate(-50%, 219px);
    transform-origin: left top 0;
    white-space: nowrap;
    width: 470px;
    text-align: center;
    font-family: "Basis Mono", monospace;
    z-index: 5; }
    @media (max-width: 1480px) {
      .project__title {
        left: -163px; } }
    @media (max-width: 700px) {
      .project__title {
        font-size: 14px;
        left: -201px; } }
  .project__counter {
    font-family: "Basis Mono", monospace;
    position: fixed;
    bottom: 94px;
    transform: translateX(-50%);
    left: 50%; }
    @media (max-width: 1480px) {
      .project__counter {
        bottom: 57px; } }
    @media (max-width: 700px) {
      .project__counter {
        font-size: 14px;
        bottom: 21px; } }
    @media (max-width: 380px) {
      .project__counter {
        bottom: 19px; } }
  .project__trigger {
    position: fixed;
    right: 76px;
    transform: rotate(90deg) translate(-50%, -452px);
    transform-origin: left top 0;
    top: 50%;
    width: 470px;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    color: #282323;
    font-family: "Basis Mono", monospace;
    z-index: 5;
    display: block; }
    .project__trigger:hover div::before {
      background: #282323; }
    .project__trigger div {
      font-family: inherit;
      display: inline-block;
      position: relative; }
      .project__trigger div::before {
        content: '';
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 100%;
        display: block;
        height: 1px;
        background: transparent;
        transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    @media (max-width: 1480px) {
      .project__trigger {
        right: 36px; } }
    @media (max-width: 700px) {
      .project__trigger {
        font-size: 14px;
        right: 0; } }
  .project__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }
  .project__slide-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 360px);
    height: calc(100vh - 360px);
    display: block; }
    @media (max-width: 1230px) {
      .project__slide-image {
        width: calc(100vw - 280px);
        height: calc(100vh - 280px); } }
    @media (max-width: 700px) {
      .project__slide-image {
        width: calc(100% - 100px);
        height: calc(100% - 200px); } }
  .project__slide-inner {
    position: relative;
    height: 100vh;
    width: 100vw; }

.previous-project {
  position: fixed;
  bottom: 94px;
  left: 230px;
  color: #282323;
  font-family: "Basis Mono", monospace;
  text-decoration: none;
  z-index: 3; }
  .previous-project span {
    font-family: "Basis Mono", monospace; }
  @media (max-width: 1480px) {
    .previous-project {
      left: 170px;
      bottom: 57px; } }
  @media (max-width: 900px) {
    .previous-project span {
      display: none; } }
  @media (max-width: 700px) {
    .previous-project {
      font-size: 14px;
      bottom: 21px;
      left: 90px; } }
  @media (max-width: 380px) {
    .previous-project {
      bottom: 19px;
      left: 50px; } }

.next-project {
  position: fixed;
  bottom: 94px;
  right: 230px;
  color: #282323;
  font-family: "Basis Mono", monospace;
  text-decoration: none;
  z-index: 3; }
  .next-project span {
    font-family: "Basis Mono", monospace; }
  @media (max-width: 1480px) {
    .next-project {
      right: 170px;
      bottom: 57px; } }
  @media (max-width: 900px) {
    .next-project span {
      display: none; } }
  @media (max-width: 700px) {
    .next-project {
      font-size: 14px;
      bottom: 21px;
      right: 90px; } }
  @media (max-width: 380px) {
    .next-project {
      bottom: 19px;
      right: 50px; } }

body.contact .module-content h2 {
  font-size: 14px;
  line-height: 1.2;
  font-weight: bold;
  display: none; }
  @media screen and (min-width: 380px) {
    body.contact .module-content h2 {
      font-size: 14px;
      line-height: 1.2; } }
  @media screen and (min-width: 700px) {
    body.contact .module-content h2 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 900px) {
    body.contact .module-content h2 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1050px) {
    body.contact .module-content h2 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1230px) {
    body.contact .module-content h2 {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1480px) {
    body.contact .module-content h2 {
      font-size: 15px;
      line-height: 1.2; } }
  @media (max-width: 900px) {
    body.contact .module-content h2 {
      display: block; } }

@media (max-width: 700px) {
  body.contact .left {
    padding-bottom: 30px; } }

body.contact .right {
  min-height: 100vh; }
  @media (max-width: 700px) {
    body.contact .right {
      min-height: auto;
      background: transparent;
      padding: 0px 20px; } }
  @media (max-width: 380px) {
    body.contact .right {
      padding: 0px 20px; } }

body.contact .map {
  filter: grayscale(1);
  height: 100vh; }
  @media (max-width: 700px) {
    body.contact .map {
      height: 95vw; } }

.letter-r {
  top: 75px;
  left: 75px;
  width: 51px; }
  @media (max-width: 1480px) {
    .letter-r {
      width: 35px;
      top: 45px;
      left: 45px; } }
  @media (max-width: 700px) {
    .letter-r {
      width: 20px;
      top: 20px;
      left: 20px; } }
  @media (max-width: 380px) {
    .letter-r {
      width: 12px; } }
  .letter-r svg path {
    fill: #282323; }

.letter-n {
  top: 75px;
  right: 75px;
  width: 55px; }
  @media (max-width: 1480px) {
    .letter-n {
      width: 35px;
      top: 45px;
      right: 45px; } }
  @media (max-width: 700px) {
    .letter-n {
      width: 20px;
      top: 20px;
      right: 20px; } }
  @media (max-width: 380px) {
    .letter-n {
      width: 12px; } }
  .letter-n svg path {
    fill: #282323; }

.letter-plus {
  bottom: 75px;
  left: 75px;
  width: 48px; }
  @media (max-width: 1480px) {
    .letter-plus {
      width: 35px;
      bottom: 45px;
      left: 45px; } }
  @media (max-width: 700px) {
    .letter-plus {
      width: 20px;
      bottom: 20px;
      left: 20px; } }
  @media (max-width: 380px) {
    .letter-plus {
      width: 12px;
      bottom: 21px; } }
  .letter-plus svg polygon {
    fill: #282323; }

.letter-s {
  bottom: 75px;
  right: 75px;
  width: 53px; }
  @media (max-width: 1480px) {
    .letter-s {
      width: 35px;
      bottom: 45px;
      right: 45px; } }
  @media (max-width: 700px) {
    .letter-s {
      width: 20px;
      bottom: 20px;
      right: 20px; } }
  @media (max-width: 380px) {
    .letter-s {
      width: 12px; } }
  .letter-s svg path {
    fill: #282323; }

.fixed-letter {
  position: fixed; }
  .fixed-letter svg {
    display: block; }
  .fixed-letter path {
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.header {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 5; }
  @media (max-width: 1480px) {
    .header {
      top: 60px; } }
  .header ul {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    padding: 0 230px; }
    @media (max-width: 1480px) {
      .header ul {
        padding: 0px 120px; } }
    @media (max-width: 900px) {
      .header ul {
        display: none; } }
    .header ul li {
      width: 33%; }
      .header ul li.center-align {
        text-align: center; }
      .header ul li.right-align {
        text-align: right; }
      .header ul li.current-menu-item a::after {
        opacity: 1; }
      .header ul li a {
        text-decoration: none;
        color: #282323;
        font-weight: bold;
        font-size: 15px;
        display: inline-block;
        position: relative;
        transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .header ul li a::after {
          content: '';
          position: absolute;
          bottom: 2px;
          left: 0;
          width: 100%;
          display: block;
          height: 1px;
          background: #282323;
          opacity: 0;
          transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .header ul li a:hover::after {
          opacity: 1; }

.mobile-menu-trigger {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 7; }
  @media (max-width: 900px) {
    .mobile-menu-trigger {
      display: block; } }
  @media (max-width: 700px) {
    .mobile-menu-trigger {
      top: 20px; } }
  .mobile-menu-trigger .mobile-menu-trigger-inner {
    position: relative;
    width: 30px;
    height: 26px; }
    @media (max-width: 700px) {
      .mobile-menu-trigger .mobile-menu-trigger-inner {
        width: 26px;
        height: 26px; } }
    @media (max-width: 380px) {
      .mobile-menu-trigger .mobile-menu-trigger-inner {
        height: 15px;
        width: 15px; } }
    .mobile-menu-trigger .mobile-menu-trigger-inner .bar {
      position: absolute;
      left: 0;
      top: 0;
      background: #282323;
      height: 1px;
      width: 100%;
      display: block;
      transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
      .mobile-menu-trigger .mobile-menu-trigger-inner .bar.bar-2 {
        top: 12px; }
        @media (max-width: 380px) {
          .mobile-menu-trigger .mobile-menu-trigger-inner .bar.bar-2 {
            top: 7px; } }
      .mobile-menu-trigger .mobile-menu-trigger-inner .bar.bar-3 {
        top: 24px; }
        @media (max-width: 380px) {
          .mobile-menu-trigger .mobile-menu-trigger-inner .bar.bar-3 {
            top: 14px; } }

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto; }
  .menu-open .mobile-menu ul {
    transform: none; }

.menu-open .mobile-menu-trigger .mobile-menu-trigger-inner .bar-1 {
  top: 7px;
  transform: rotate(405deg); }

.menu-open .mobile-menu-trigger .mobile-menu-trigger-inner .bar-2 {
  opacity: 0; }

.menu-open .mobile-menu-trigger .mobile-menu-trigger-inner .bar-3 {
  top: 7px;
  transform: rotate(-405deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(180, 178, 177, 0.884);
  z-index: 6;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: none;
  opacity: 0;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none; }
  @media (max-width: 900px) {
    .mobile-menu {
      display: -ms-flexbox;
      display: flex; } }
  .mobile-menu ul {
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px); }
    .mobile-menu ul li.current-menu-item a {
      text-decoration: underline; }
    .mobile-menu ul li a {
      display: block;
      text-align: center;
      text-decoration: none;
      color: #282323;
      font-weight: bold;
      font-size: 32px; }

.studio .module-two-column .content h3 a, .studio .module-two-column body#tinymce.wp-editor h3 a {
  text-decoration: none;
  display: inline-block;
  position: relative; }
  .studio .module-two-column .content h3 a::after, .studio .module-two-column body#tinymce.wp-editor h3 a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    display: block;
    height: 1px;
    background: #282323;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .studio .module-two-column .content h3 a:hover, .studio .module-two-column body#tinymce.wp-editor h3 a:hover {
    opacity: 1; }
    .studio .module-two-column .content h3 a:hover::after, .studio .module-two-column body#tinymce.wp-editor h3 a:hover::after {
      opacity: 1; }

.module-two-column__column-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start; }
  @media (max-width: 1230px) {
    .module-two-column__column-wrapper {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.module-two-column__column-1 {
  width: 48%; }
  @media (max-width: 1230px) {
    .module-two-column__column-1 {
      width: 100%;
      margin-bottom: 40px; } }
  @media (max-width: 900px) {
    .module-two-column__column-1 {
      width: 48%;
      margin-bottom: 0px; } }
  @media (max-width: 700px) {
    .module-two-column__column-1 {
      width: 100%;
      margin-bottom: 40px; } }

.module-two-column__column-2 {
  width: 48%; }
  @media (max-width: 1230px) {
    .module-two-column__column-2 {
      width: 100%; } }
  @media (max-width: 900px) {
    .module-two-column__column-2 {
      width: 48%; } }
  @media (max-width: 700px) {
    .module-two-column__column-2 {
      width: 100%; } }

.module-awards__awards {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  position: relative;
  font-size: 14px;
  line-height: 1.2; }
  @media screen and (min-width: 380px) {
    .module-awards__awards {
      font-size: 14px;
      line-height: 1.2; } }
  @media screen and (min-width: 700px) {
    .module-awards__awards {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 900px) {
    .module-awards__awards {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1050px) {
    .module-awards__awards {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1230px) {
    .module-awards__awards {
      font-size: 15px;
      line-height: 1.2; } }
  @media screen and (min-width: 1480px) {
    .module-awards__awards {
      font-size: 15px;
      line-height: 1.2; } }
  @media (max-width: 700px) {
    .module-awards__awards {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-bottom: 15px; }
      .module-awards__awards:last-child {
        margin-bottom: 0px; } }

.module-awards__year {
  width: 60px;
  margin-right: 10px; }
  @media (max-width: 700px) {
    .module-awards__year {
      margin-right: 0px;
      width: 100%; } }

.module-awards__project {
  width: 145px;
  margin-right: 10px; }
  @media (max-width: 700px) {
    .module-awards__project {
      width: 100%;
      margin-right: 0px; } }

.module-awards__award {
  -ms-flex: 1;
      flex: 1; }

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