.browser-warning {
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 3em 1.5em;
  box-sizing: border-box;
  display: none;
  height: 100%
}

.browser-warning .site-logo {
  max-width: 17em;
  margin: 0 auto 2em
}

.browser-warning .site-logo img {
  display: block;
  width: 100%;
  height: auto
}

.browser-warning .copy {
  max-width: 32em;
  width: 100%;
  padding: 0 1.5em;
  box-sizing: border-box;
  text-align: center;
  color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.browser-warning p {
  line-height: 1.8;
  margin: 0 0 1em
}

.browser-warning p:last-of-type {
  margin: 0
}

.browser-warning p strong {
  font-weight: 600
}

.browser-warning a {
  color: black
}

html.old-ie {
}

html.old-ie .browser-warning {
  display: block
}

@keyframes GlobalHeaderAnimation {
  from {
    opacity: 0;
    transform: translateY(-2em);
  }
}

@keyframes NavItemsAnimation {
  from {
    opacity: 0;
    transform: translateY(-1em);
  }
}

[data-component="global-header"] {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: white;
  padding: 1.5em 1.5em;
  box-sizing: border-box;
  z-index: 3;
  transition: .5s;
  animation: GlobalHeaderAnimation .5s backwards;
  animation-delay: 1s
}

@media (min-width: 51em) {

  [data-component="global-header"] {
    padding: 3em 1.5em
  }
  }

[data-component="global-header"] .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column
}

@media (min-width: 51em) {

  [data-component="global-header"] .container {
    flex-direction: row
  }
}

[data-component="global-header"] .logo {
  display: block;
  max-width: 8em;
  transition: .5s
}

@media (min-width: 51em) {

  [data-component="global-header"] .logo {
    max-width: 12em
  }
}

[data-component="global-header"] nav {
  margin-top: 1.5em;
  width: 100%;
  max-width: 320px
}

@media (min-width: 51em) {

  [data-component="global-header"] nav {
    margin: 0;
    width: auto
  }
}

[data-component="global-header"] nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between
}

[data-component="global-header"] nav ul li {
  animation: NavItemsAnimation .5s backwards
}

@media (min-width: 51em) {

  [data-component="global-header"] nav ul li {
    margin-left: 4em
  }
}

[data-component="global-header"] nav ul li:first-of-type {
  margin-left: 0
}

[data-component="global-header"] nav ul li:nth-child(1) {
  animation-delay: 270ms
}

[data-component="global-header"] nav ul li:nth-child(2) {
  animation-delay: 340ms
}

[data-component="global-header"] nav ul li:nth-child(3) {
  animation-delay: 410ms
}

[data-component="global-header"] nav ul a {
  font-weight: 400;
  color: #7E7E7E;
  font-size: 1.188em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  height: 1em;
  display: inline-block
}

[data-component="global-header"] nav ul a span {
  position: relative;
  display: inline-block;
  transition: transform .3s
}

[data-component="global-header"] nav ul a span:before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  transform: translate3d(0, 0, 0);
  color: #f57613;
  font-weight: 500
}

[data-component="global-header"] nav ul a:hover {
}

[data-component="global-header"] nav ul a:hover span {
  transform: translateY(-100%)
}

[data-component="global-header"].shrunk {
  padding: 1.5em 1.5em
}

[data-component="global-header"].shrunk .logo {
}

@media (min-width: 51em) {

  [data-component="global-header"].shrunk .logo {
    transform: scale(.7);
    transform-origin: 0 50%
  }
}

[data-component="main-title"] {
  color: #f57613;
  padding: 0 1.5em;
  box-sizing: border-box
}

@media (min-width: 51em) {

  [data-component="main-title"] {
    padding: 4em 1.5em 2em
  }
  }

[data-component="main-title"] h1 {
  font-weight: 500;
  font-size: 1.65em;
  line-height: 1.150;
  margin: 0 0 1em
}

@media (min-width: 51em) {

  [data-component="main-title"] h1 {
    font-size: 2.750em;
    margin: 0
  }
}

@keyframes SliderFadeIn {
  from {
    opacity: 0;
    transform: translateY(1em);
  }
}

@keyframes progress {
	from {
		stroke-dashoffset: 339.292;
	}
	to {
		stroke-dashoffset: 0;
	}
}

[data-component="hero"] {
}

[data-component="hero"] [data-component="project-slider"] {
}

[data-component="hero"] [data-component="project-slider"] img {
  width: auto;
  max-width: 100%;
  margin: 0 auto
}

[data-component="hero"] .hero-copy {
  background-color: #F8F8F8;
  opacity: 0;
  transition: .5s
}

@media (min-width: 51em) {

  [data-component="hero"] .hero-copy {
    margin: 0 5em;
    padding: 5em 0
  }
}

@media (min-width: 75em) {

  [data-component="hero"] .hero-copy {
    width: calc(100% - 6em);
    margin-left: auto;
    margin-right: auto
  }
}

[data-component="hero"] .hero-copy p {
  font-size: 1em;
  text-align: center;
  line-height: 1.8;
  max-width: 37em;
  margin: 0 auto;
  padding: 2em 1em;
  box-sizing: border-box
}

@media (min-width: 51em) {

  [data-component="hero"] .hero-copy p {
    padding: 0 1.5em;
    font-size: 1.250em
  }
}

[data-component="hero"] .hero-copy.visible {
  opacity: 1
}

[data-component="hero"] [data-component="slider"] {
  animation: SliderFadeIn .5s backwards;
  animation-delay: 1s;
  position: relative
}

[data-component="hero"] [data-component="slide-loading-indicator"] {
  max-width: 2.25em;
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 2
}

@media (min-width: 51em) {

  [data-component="hero"] [data-component="slide-loading-indicator"] {
    top: 2em;
    right: 2em
  }
}

[data-component="hero"] [data-component="slide-loading-indicator"] .progress {
  transform: rotate(-90deg)
}

[data-component="hero"] [data-component="slide-loading-indicator"] .progress .transparent-circle {
  opacity: .5
}

[data-component="hero"] [data-component="slide-loading-indicator"] .progress .progress__value {
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292
}

[data-component="hero"] [data-component="slide-loading-indicator"] svg {
  width: 100%;
  height: 100%;
  display: block
}

[data-component="hero"] .project-information {
  position: absolute;
  top: 1.125em;
  right: 4.5em;
  color: #37373D;
  font-size: .9em;
  text-align: right;
  opacity: 0;
  transform: translateX(1em);
  transition: .5s;
  z-index: 3
}

@media (min-width: 51em) {

  [data-component="hero"] .project-information {
    top: 2.25em;
    right: 6em
  }
}

[data-component="hero"] .project-information span {
  display: block;
  line-height: 1.3
}

[data-component="hero"] .swiper-slide-active {
}

[data-component="hero"] .swiper-slide-active .project-information {
  opacity: 1;
  transform: translateX(0)
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: white;
  /* &:before {
    content: '';
    width: 100%;
    height: 5em;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    @media (--hero-breakpoint-1) {
      height: 10em;
    }
  } */
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */

.swiper-wp8-horizontal {
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  touch-action: pan-x;
}

/* Arrows */

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */

.swiper-pagination-progress {
  background: #000000;
  background: rgba(0, 0, 0, .25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: #ffffff;
  background: rgba(255, 255, 255, .5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */

.swiper-container-3d {
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */

.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */

.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
  filter: blur(50px);
  z-index: 0;
}

/* Fade */

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: #000000;
  background: rgba(0, 0, 0, .1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: #000000;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

[data-component="project-list"] {
  padding: 0 1.5em 2em;
  box-sizing: border-box
}

@media (min-width: 51em) {

  [data-component="project-list"] {
    margin: 0 5em;
    padding: 2em 1.5em
  }
  }

@media (min-width: 75em) {

  [data-component="project-list"] {
    width: calc(100% - 6em);
    margin-left: auto;
    margin-right: auto
  }
  }

[data-component="project-list"] ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1em;
  align-items: center;
  justify-content: center
}

[data-component="project-list"] ul li {
  width: 50%;
  max-width: 15em;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center
}

@media (min-width: 51em) {

  [data-component="project-list"] ul li {
    width: 25%;
    max-width: none
  }
}

@keyframes TitleBarWidthAnimation {
  from {
    width: 0;
  }
}

@keyframes TitleAnimation {
  from {
    opacity: 0;
    transform: translateX(-1em);
  }
}

[data-component="title-bar"] {
  display: flex;
  align-items: center;
  animation: TitleBarWidthAnimation 1s backwards;
  animation-delay: 1s;
  margin: 2em 0 1em;
  width: 50%
}

@media (min-width: 51em) {

  [data-component="title-bar"] {
    position: absolute;
    transform: rotate(270deg);
    bottom: 0;
    left: -4em;
    transform-origin: left;
    margin: 2em 0
  }
  }

[data-component="title-bar"]:before {
  content: '';
  height: 1px;
  background-color: black;
  display: block;
  flex: 1
}

[data-component="title-bar"]:after {
  content: attr(data-title);
  text-transform: lowercase;
  display: block;
  white-space: nowrap;
  padding-left: 1em;
  animation: TitleAnimation 1s backwards;
  animation-delay: 2s
}

[data-component="section-wrapper"] {
  position: relative;
}

@keyframes ClientFadeIn {
  from {
    opacity: 0;
    transform: translateY(-1em);
  }
}

[data-component="our-clients"] {
  padding: 4em 1.5em 1em;
  box-sizing: border-box
}

@media (min-width: 55em) {

  [data-component="our-clients"] {
    padding: 6em 1.5em
  }
  }

[data-component="our-clients"] .inner {
}

@media (min-width: 55em) {

  [data-component="our-clients"] .inner {
    display: flex
  }
}

[data-component="our-clients"] h1 {
  font-size: 2em;
  font-weight: 600;
  margin: 0 0 .5em
}

@media (min-width: 55em) {

  [data-component="our-clients"] h1 {
    padding: 1.5em 0 0;
    font-size: 3.250em
  }
}

[data-component="our-clients"] p {
  color: #5E5E5E;
  font-size: 1em;
  line-height: 1.7;
  margin: 0;
  box-sizing: border-box
}

@media (min-width: 55em) {

  [data-component="our-clients"] p {
    font-size: 1.125em;
    padding: 0 0 0 4em;
    max-width: 23em
  }
}

[data-component="our-clients"] .copy {
}

@media (min-width: 55em) {

  [data-component="our-clients"] .copy {
    margin-right: 5em
  }
}

[data-component="our-clients"] .client-logos {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -1.5em 0;
  justify-content: center;
  align-items: center
}

@media (min-width: 55em) {

  [data-component="our-clients"] .client-logos {
    flex: 1;
    margin: 0
  }
}

[data-component="our-clients"] .client-logos article {
  display: inline-block;
  vertical-align: top;
  padding: 1.5em;
  box-sizing: border-box;
  opacity: 0
}

@media (min-width: 55em) {

  [data-component="our-clients"] .client-logos article {
    width: 33.33333%
  }
}

[data-component="our-clients"] .client-logos article > div {
  display: flex;
  height: 2em;
  align-items: center
}

@media (min-width: 55em) {

  [data-component="our-clients"] .client-logos article > div {
    height: 5em
  }
}

[data-component="our-clients"] .client-logos article .image-wrapper {
  max-width: 5em;
  margin: 0 auto
}

@media (min-width: 55em) {

  [data-component="our-clients"] .client-logos article .image-wrapper {
    max-width: 8em
  }
}

[data-component="our-clients"].visible {
}

[data-component="our-clients"].visible article {
  opacity: 1;
  animation: ClientFadeIn .5s backwards
}

[data-component="our-clients"].visible article:nth-child(1) {
  animation-delay: 1140ms
}

[data-component="our-clients"].visible article:nth-child(2) {
  animation-delay: 1210ms
}

[data-component="our-clients"].visible article:nth-child(3) {
  animation-delay: 1280ms
}

[data-component="our-clients"].visible article:nth-child(4) {
  animation-delay: 1350ms
}

[data-component="our-clients"].visible article:nth-child(5) {
  animation-delay: 1420ms
}

[data-component="our-clients"].visible article:nth-child(6) {
  animation-delay: 1490ms
}

[data-component="our-clients"].visible article:nth-child(7) {
  animation-delay: 1560ms
}

[data-component="our-clients"].visible article:nth-child(8) {
  animation-delay: 1630ms
}

[data-component="our-clients"].visible article:nth-child(9) {
  animation-delay: 1700ms
}

[data-component="our-clients"].visible article:nth-child(10) {
  animation-delay: 1770ms
}

[data-component="our-clients"].visible article:nth-child(11) {
  animation-delay: 1840ms
}

[data-component="our-clients"].visible article:nth-child(12) {
  animation-delay: 1910ms
}

[data-component="our-clients"].visible article:nth-child(13) {
  animation-delay: 1980ms
}

[data-component="our-clients"].visible article:nth-child(14) {
  animation-delay: 2050ms
}

[data-component="our-clients"].visible article:nth-child(15) {
  animation-delay: 2120ms
}

[data-component="our-clients"].visible article:nth-child(16) {
  animation-delay: 2190ms
}

[data-component="our-clients"].visible article:nth-child(17) {
  animation-delay: 2260ms
}

[data-component="our-clients"].visible article:nth-child(18) {
  animation-delay: 2330ms
}

[data-component="our-clients"].visible article:nth-child(19) {
  animation-delay: 2400ms
}

[data-component="our-clients"].visible article:nth-child(20) {
  animation-delay: 2470ms
}

@keyframes HeadingLineWidth {
  from {
    width: 0;
  }
}

[data-component="about-us"] {
  padding: 4em 1.5em 0;
  box-sizing: border-box
}

@media (min-width: 60em) {

  [data-component="about-us"] {
    padding: 5em 0 0;
    position: relative
  }
  }

[data-component="about-us"] .inner {
  background-color: #F8F8F8;
  padding: 4em 1.5em;
  box-sizing: border-box;
  margin: 0 -1.5em;
  position: relative
}

@media (min-width: 60em) {

  [data-component="about-us"] .inner {
    padding: 8em 0 6em;
    margin: 0
  }
}

@media (min-width: 60em) {

  [data-component="about-us"] .inner {
    width: calc(100% - 6em);
    margin: 0 auto
  }
}

[data-component="about-us"] .inner .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 65em;
  opacity: .1;
  display: none
}

@media (min-width: 60em) {

  [data-component="about-us"] .inner .bg-image {
    display: block
  }
}

[data-component="about-us"] .container {
}

@media (min-width: 60em) {

  [data-component="about-us"] .container {
    display: flex;
    position: relative
  }
}

[data-component="about-us"] .column {
  margin-bottom: 1.5em
}

@media (min-width: 60em) {

  [data-component="about-us"] .column {
    padding: 1.5em;
    box-sizing: border-box
  }
}

@media (min-width: 78.125em) {

  [data-component="about-us"] .column {
    padding: 0
  }
}

[data-component="about-us"] .column h1 {
  font-size: 2em;
  font-weight: 600;
  margin: 0 0 .5em
}

@media (min-width: 60em) {

  [data-component="about-us"] .column h1 {
    padding: 1.5em 0 0;
    font-size: 3.250em
  }
}

[data-component="about-us"] .column .image-wrapper {
  margin-bottom: 2em;
  transform: translateY(2em);
  opacity: 0;
  transition: .5s;
  width: 100%
}

@media (min-width: 60em) {

  [data-component="about-us"] .column .image-wrapper {
    display: none
  }
}

[data-component="about-us"] .column p {
  font-size: 1em;
  line-height: 1.8;
  margin: 0 auto 1em;
  padding: 0;
  box-sizing: border-box
}

@media (min-width: 60em) {

  [data-component="about-us"] .column p {
    padding: 0;
    font-size: 1.125em;
    max-width: 26em;
    margin: 0 0 1em
  }
}

[data-component="about-us"] .column:first-of-type {
}

@media (min-width: 60em) {

  [data-component="about-us"] .column:first-of-type {
    flex: 1;
    margin-right: 3em
  }
}

[data-component="about-us"] .column:last-of-type {
}

@media (min-width: 60em) {

  [data-component="about-us"] .column:last-of-type {
    flex: 1;
    margin-top: 12em
  }
}

[data-component="about-us"].visible {
}

[data-component="about-us"].visible .image-wrapper {
  transform: translateY(0);
  opacity: .5
  /*transition-delay: 1.5s;*/
}

[data-component="about-us"].visible #about-reveal {
}

[data-component="about-us"].visible #about-reveal:before {
  opacity: 1;
  animation: HeadingLineWidth .5s backwards;
  animation-delay: 1s
}

[data-component="block-reveal"] {
}

[data-component="block-reveal"] .content__title__inner {
  flex: none;
  display: inline-block;
  white-space: nowrap;
  position: relative
}

[data-component="block-reveal"] .block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0
}

[data-component="block-reveal"] #about-reveal {
}

[data-component="block-reveal"] #about-reveal:before {
  content: '';
  width: 70%;
  display: block;
  height: 2px;
  background-color: #f57613;
  margin-bottom: .5em;
  opacity: 0
}

[data-component="block-reveal"] span {
}

[data-component="block-reveal"] span#reputation-reveal,
    [data-component="block-reveal"] span#quality-reveal,
    [data-component="block-reveal"] span#clients-copy-reveal {
}

[data-component="block-reveal"] span#reputation-reveal .block-revealer__content, [data-component="block-reveal"] span#quality-reveal .block-revealer__content, [data-component="block-reveal"] span#clients-copy-reveal .block-revealer__content {
  border-bottom: 2px solid #f57613
}

[data-component="block-reveal"] span#clients-copy-reveal {
  white-space: normal
}

[data-component="block-reveal"] span#clients-copy-reveal .block-revealer__content {
  padding-bottom: .5em
}

[data-component="block-reveal"] span#quality-reveal {
  white-space: normal
}

@media (min-width: 51em) {

  [data-component="block-reveal"] span#quality-reveal {
    white-space: nowrap
  }
}

[data-component="block-reveal"] span#about-lexon-first-copy-reveal,
    [data-component="block-reveal"] span#about-lexon-second-copy-reveal,
    [data-component="block-reveal"] span#about-lexon-third-copy-reveal,
    [data-component="block-reveal"] span#about-lexon-fourth-copy-reveal {
  white-space: normal
}

@keyframes ContactColumnFadeIn {
  from {
    opacity: 0;
    transform: translateY(-1em);
  }
}

[data-component="contact"] {
  padding: 4em 1.5em 0;
  box-sizing: border-box
}

@media (min-width: 51em) {

  [data-component="contact"] {
    padding: 6em 3em 0
  }
  }

[data-component="contact"] h1 {
  font-size: 2em;
  font-weight: 600;
  margin: 1em 0
}

@media (min-width: 51em) {

  [data-component="contact"] h1 {
    padding: 0;
    font-size: 3.250em;
    margin: 0 0 .5em
  }
}

[data-component="contact"] .contact-info {
  background-color: #f57613;
  padding: 2em 1.5em;
  box-sizing: border-box;
  color: white;
  margin: 0 -1.5em;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: .5s
}

@media (min-width: 51em) {

  [data-component="contact"] .contact-info {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 3em
  }
}

[data-component="contact"] .contact-info .column {
  margin-bottom: 2em;
  opacity: 0
}

@media (min-width: 51em) {

  [data-component="contact"] .contact-info .column {
    width: 50%;
    margin: 0
  }
}

[data-component="contact"] .contact-info .column h4 {
  font-weight: 400;
  margin: 0 0 1em;
  font-size: 1.25em
}

@media (min-width: 51em) {

  [data-component="contact"] .contact-info .column h4 {
    font-size: 1.625em
  }
}

[data-component="contact"] .contact-info .column p {
  line-height: 1.3;
  font-size: 1.125em;
  margin: 0 0 1em
}

[data-component="contact"] .contact-info .column p:last-of-type {
  margin: 0
}

[data-component="contact"] .contact-info .column a {
  color: white;
  text-decoration: none
}

[data-component="contact"] .contact-info .column:last-of-type {
  margin: 0
}

[data-component="contact"] .contact-info .column:last-of-type p {
  font-size: 1em;
  margin: 0 0 .5em
}

@media (min-width: 51em) {

  [data-component="contact"] .contact-info .column:last-of-type p {
    margin: 0 0 1em
  }
}

[data-component="contact"] .contact-info .column:last-of-type p:last-of-type {
  margin: 0
}

[data-component="contact"] .contact-info .column:last-of-type h4 {
  margin: 0 0 1em
}

[data-component="contact"].visible {
}

[data-component="contact"].visible .contact-info {
  opacity: 1;
  transition-delay: 1s
}

[data-component="contact"].visible .column {
  opacity: 1;
  animation: ContactColumnFadeIn .5s backwards
}

[data-component="contact"].visible .column:nth-child(1) {
  animation-delay: 1370ms
}

[data-component="contact"].visible .column:nth-child(2) {
  animation-delay: 1440ms
}

[data-component="contact"].visible [data-component="map"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s
}

[data-component="map"] {
  margin: 0 -1.5em;
  opacity: 0;
  transform: translateY(2em);
  transition: .5s
}

@media (min-width: 51em) {

  [data-component="map"] {
    margin: -4em 0 0
  }
  }

[data-component="map"] .map-wrapper {
  position: relative;
  padding-top: 75%;
  width: 100%;
  margin: 0 auto;
  z-index: 0
}

@media (min-width: 51em) {

  [data-component="map"] .map-wrapper {
    padding-top: 40em
  }
}

[data-component="map"] .map-wrapper #map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0
}

[data-component="global-footer"] {
  padding: 2em 1.5em;
  text-align: center;
  box-sizing: border-box
}

@media (min-width: 48) {

  [data-component="global-footer"] {
    padding: 4em 1.5em 6em
  }
  }

[data-component="global-footer"] .social {
  margin-bottom: 2em
}

[data-component="global-footer"] .social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center
}

[data-component="global-footer"] .social ul li {
  margin: 0 .5em
}

[data-component="global-footer"] .social ul a {
  display: block;
  background-color: black;
  max-width: 1.25em;
  padding: .75em;
  border-radius: 50%;
  opacity: .5;
  transition: .5s
}

[data-component="global-footer"] .social ul a:hover {
  opacity: 1
}

[data-component="global-footer"] p {
  text-transform: uppercase;
  font-size: .75em;
  line-height: 1.3
}

[data-component="global-footer"] p a {
  color: #37373D;
  transition: .5s
}

[data-component="global-footer"] p a:hover {
  color: #f57613
}

html {
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Work Sans', sans-serif;
  line-height: 1;
  color: #37373D;
  background-color: white;
  padding-top: 130.72px;
  overflow-x: hidden;
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

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

::-moz-selection {
  background-color: #f57613;
  color: white;
}

::selection {
  background-color: #f57613;
  color: white;
}

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