*,
::before,
::after {
	box-sizing: border-box;
}

html {
	-moz-tab-size: 4;
	tab-size: 4;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

body {
	font-family:
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

hr {
	height: 0;
	color: inherit;
}

abbr[title] {
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
select {
	text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
	appearance: button;
}

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
	box-shadow: none;
}

legend {
	padding: 0;
}

progress {
	vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	-webkit-appearance: textfield;
	appearance: textfield;
	outline-offset: -2px;
}

::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

summary {
	display: list-item;
}

/**
 * Flexbox Grid
 */
.container--fluid {
  margin-right: auto;
  margin-left: auto;
}

.container--fluid-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 30px;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 6px;
  padding-left: 6px;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 10px;
    padding-left: 10px;
  }

  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    align-items: flex-start;
  }

  .middle-sm {
    align-items: center;
  }

  .bottom-sm {
    align-items: flex-end;
  }

  .around-sm {
    justify-content: space-around;
  }

  .between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 10px;
    padding-left: 10px;
  }

  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    justify-content: center;
    text-align: center;
  }

  .end-md {
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    align-items: flex-start;
  }

  .middle-md {
    align-items: center;
  }

  .bottom-md {
    align-items: flex-end;
  }

  .around-md {
    justify-content: space-around;
  }

  .between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 10px;
    padding-left: 10px;
  }

  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    align-items: flex-start;
  }

  .middle-lg {
    align-items: center;
  }

  .bottom-lg {
    align-items: flex-end;
  }

  .around-lg {
    justify-content: space-around;
  }

  .between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}

/**
 * Magnific Popup CSS
 */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000000;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-family: "Webfont", "Helvetica Neue", sans-serif;
  font-size: 14px;
}

.mfp-close:active {
  top: 1px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: var(--white);
  text-align: right;
  width: 100%;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  background: var(--white);
  color: #000000;
  transition: all 0.3s 0s ease;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

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

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

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

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: calc(177.778vh - 320px);
}

.mfp-iframe-holder .mfp-close {
  position: absolute;
  top: -2.75em;
  width: auto;
  display: inline-block;
  border: 1px solid var(--white);
  padding: 0.25em 0.75em;
  border-radius: 1em;
  transition: all 0.3s 0s ease;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* overlay at start */
.mfp-anim.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.mfp-anim.mfp-bg.mfp-ready {
  opacity: 1;
}

.mfp-anim.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-anim.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.mfp-anim.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-anim.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 1400px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/**
 * Font
 */
@font-face {
  font-family: "Webfont";
  src: url("../fonts/SuisseIntl-Book-WebXL.woff2") format("woff2"),
    url("../fonts/SuisseIntl-Book-WebXL.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/**
 * Reset some basic elements
*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/**
 * Basic styling
 */
html {
  --black: #191b1d;
  --gray: #828282;
  --lightgray: #f2f2f2;
  --white: #ffffff;
  --text-color: var(--black);
  --bg-color: var(--white);
  --line-color: var(--gray);
}

::-moz-selection {
  color: var(--white);
  background: var(--black);
}

::selection {
  color: var(--white);
  background: var(--black);
}

body {
  font-family: "Webfont", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-color);
  background: var(--bg-color);
  text-rendering: geometricPrecision;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
}

picture {
  display: block;
  height: 100%;
  width: 100%;
}

.separator {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--lightgray);
  margin: 0;
  padding-bottom: 10px;
  margin-top: 50px;
  clear: both;
  transform-origin: left center;
}

.separator--first {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--lightgray);
  margin: 0;
  padding-bottom: 10px;
  clear: both;
}

ul li,
ol li {
  list-style: none;
}

input[type="radio"],
input[type="radio"]:checked {
  visibility: hidden;
  display: none;
}

/**
 * Wrapper
 */
.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 40px;
}

/**
 * Pace.js
 */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: var(--black);
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
}

/**
 * Splitting
 */
.splitting .word,
.splitting .char {
  display: inline-block;
}

.splitting .char {
  position: relative;
}

.word {
  line-height: 1.1;
}

.line {
  overflow: hidden;
}

.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splitting {
  --word-center: calc((var(--word-total) - 1) / 2);
  --char-center: calc((var(--char-total) - 1) / 2);
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  --word-percent: calc(var(--word-index) / var(--word-total));
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  --char-percent: calc(var(--char-index) / var(--char-total));
  --char-offset: calc(var(--char-index) - var(--char-center));
  --distance: calc(
    (var(--char-offset) * var(--char-offset)) / var(--char-center)
  );
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-size: 12px;
}

.site-big-text h1 {
  font-size: clamp(32px, 7.5vmin, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.site-big-text .letter {
  display: inline-block;
}

/**
 * Buttons
 */
.button {
  border-radius: 2em;
  background: var(--lightgray);
  padding: 0 1em;
  line-height: 2em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button--sm {
  border-radius: 2em;
  background: var(--lightgray);
  padding: 0.25em 0.75em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button:hover,
.button--sm:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

/**
 * Links
 */
a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:visited {
  text-decoration: none;
  color: var(--black);
}

a:hover {
  text-decoration: none;
}

.page--inner a:after {
  content: "\2197";
  margin-left: 4px;
}

/**
 * Navigation
 */
.site-header {
  line-height: 2em;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
}

.site-header .row {
  align-items: center;
  height: 30px;
}

.site-header .menu {
  text-align: right;
}

.site-header--fixed {
  position: fixed;
  z-index: 20;
  right: 0;
  left: 0;
  top: 0;
}

.site-header a:hover {
  text-decoration: none;
}

.site-nav {
  text-align: left;
}

.site-nav .site-nav__link:not(:last-child):not(:last-of-type) {
  margin-right: 40px;
  transition: all 0.25s ease;
}

.site-nav__link,
.site-title {
  position: relative;
  display: inline-block;
}

.site-nav__link--right {
  display: inline-flex;
  float: right;
}

.site-nav--active,
.site-nav--active:before {
  transition: all 0.25s ease;
}

.site-nav--active:before,
.site-nav__link-item:hover:before {
  content: "/";
  font-size: 12px;
  line-height: 2em;
  position: absolute;
  display: inline;
  color: color-mix(in srgb, var(--gray), transparent 75%);
  transform-origin: center;
}

.site-nav__link-item:hover:before {
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
}

.footer-button-container {
  text-align: right;
}

.site-nav__link--right .close {
  cursor: pointer;
  display: inline-flex;
  border-radius: 2em;
  padding: 0.5em;
  transition: all ease 0.3s;
  background: var(--lightgray);
}

.site-nav__link--right .close:hover {
  background: var(--black);
  color: var(--white);
}

.top-button {
  cursor: pointer;
  display: inline-flex;
}

.site-nav__link--right .close {
  margin-left: 5px;
}

.site-nav__link--right .close svg {
  height: 14px;
  stroke-width: 3px;
}

.project-list-header {
  align-self: start;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/**
 * Headroom
 */
.headroom {
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.headroom--pinned {
  transform: translateY(0);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

/**
 * Images
 */
.project-img img,
.project-thumb-container img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.project-img {
  margin: 0 auto 20px auto;
  border-radius: 0.5rem;
  overflow: hidden;
}

/**
 * Page content
 */
.page-content {
  margin-top: 60px;
}

.page-content a,
.page-content a:hover {
  text-decoration: none;
}

.project-thumb-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.project-thumb__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.project-thumb__item {
  margin-bottom: 20px;
}

.project-thumb__title {
  display: block;
  opacity: 0;
  font-weight: normal;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.215, 0.6, 0.355, 1) 150ms;
  transform: translateY(50%);
}

.project-thumb__project-title {
  position: relative;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  display: inline-block;
}

.project-thumb__project-subtitle {
  position: relative;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  opacity: 0.5;
  margin-top: 3px;
}

.project-thumb__title-container {
  opacity: 1;
  display: flex;
  padding: 25px;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s 0s ease;
}

.project-links:hover .project-thumb__title {
  transform: translateY(0);
  opacity: 1;
}

.project-links:hover .project-thumb__overlay {
  opacity: 1;
}

.project-title {
  margin-bottom: 20px;
}

.project-info {
  margin-top: 30px;
  margin-bottom: 50px;
}

.project-meta {
  font-size: 12px;
  color: var(--gray);
  margin-top: 50px;
}

.project-meta span {
  display: block;
}

.project-meta__title {
  font-weight: normal;
}

.site-section-title {
  margin-top: 5px;
  margin-bottom: 15px;
}

.site-big-text {
  margin-top: 150px;
  margin-bottom: 30px;
}

/**
 * Project Filter
 */
.project-list-header-link {
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-list-header-link:not(:last-child) {
  margin-right: 2px;
}

.project-list-header-link.selected {
  background: var(--black);
  color: var(--white);
  transition: all 0.3s ease;
  pointer-events: none;
}

.hide {
  display: none;
}

/**
 * Video
 */
video {
  width: 100%;
  display: block;
}

.video-popup {
  position: relative;
}

.video-popup .project-img {
  display: inline-block;
  position: relative;
}

.video-popup img {
  transition: all 0.4s ease;
}

.video-popup:hover img {
  -webkit-filter: brightness(60%);
  filter: brightness(60%);
  transition: all 0.4s ease;
}

.video-play-button {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  color: var(--white);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.3em;
}

.video-play-button svg {
  width: 70px;
  height: 70px;
  fill: var(--white);
}

/**
 * Screensaver & Loader
 */
.screensaver,
.loader {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999 !important;
  pointer-events: none;
}

.screensaver-container,
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--lightgray);
  width: 100%;
  height: 100%;
  padding: 50px;
}

.screensaver__time {
  margin-top: auto;
  color: var(--black);
  order: 2;
  overflow: hidden;
}

.screensaver__time span {
  font-size: clamp(24px, 15vw, 256px);
  display: inline-block;
  line-height: 1;
}

.loader {
  display: block;
}

.loader-container {
  background: var(--lightgray);
}

.loader-circle,
.loader-circle-static {
  width: 80px;
  height: 80px;
  stroke-width: 1px;
  position: absolute;
  fill: transparent;
}

.loader-circle {
  fill: transparent;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke: var(--black);
}

.loader-circle-static {
  stroke: var(--gray);
  opacity: 0.25;
}

.loader-logo-container {
  position: relative;
  width: 28px;
  height: 17px;
  overflow: hidden;
}

.loader-logo {
  fill: var(--black);
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.screensaver__colon {
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
}

.screensaver__location {
  order: 99;
  margin-top: auto;
  font-size: 12px;
  color: var(--black);
}

/**
 * popup
 */
.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999 !important;
}

.popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  width: 100%;
  height: 100%;
  padding: 12px;
}

.popup-content {
  background: var(--white);
  width: 100%;
  max-width: calc(170vmin - 200px);
  position: relative;
  background: transparent;
}

.popup-content-wrapper {
  overflow: hidden;
  border-radius: 0.5rem;
  display: flex;
  width: fit-content;
  height: fit-content;
  background: transparent;
}

.popup-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  background: transparent;
}

.popup-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
}

.popup-close {
  position: absolute;
  top: -3em;
  right: 0;
  border-radius: 2em;
  border: none;
  color: var(--black);
  font-size: 12px;
  line-height: 2em;
  padding: 0 1em;
  background: var(--white);
  cursor: pointer;
}

.popup-close:hover {
  background: var(--white);
  color: var(--black);
}

/**
 * Footer
 */
.site-footer .row {
  align-items: center;
}

/**
 * Responsive
 */
@media (hover: hover) {
  .page--inner a:hover {
    color: var(--gray);
    transition: all 0.25s ease;
  }

  .site-nav--active:hover {
    text-decoration: none !important;
    transition: all 0.25s ease;
  }
}

@media screen and (min-width: 800px) {
  .top-button {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .site-nav--active:before,
  .site-nav__link-item:hover:before {
    left: -0.85em;
  }
}

@media screen and (max-width: 1200px) {
  body,
  .project-thumb__project-title,
  .project-thumb__project-subtitle,
  .project-list-header-link,
  .project-title,
  .project-meta,
  .site-footer,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 12px;
  }

  .site-nav__link-item:hover:before {
    -webkit-animation: none;
    animation: none;
  }

  .container--fluid-inner {
    max-width: 100%;
    padding: 10px;
  }

  .site-header .container--fluid-inner {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 767px) {
  .container--fluid-inner {
    max-width: 100%;
    padding: 6px;
  }

  .site-header .container--fluid-inner {
    padding: 5px 6px;
  }

  .pace .pace-progress {
    height: 3px;
  }
}

@media screen and (max-width: 600px) {
  .site-header .row {
    height: 32px;
    align-items: center;
  }

  .page--inner h2,
  .project-title {
    margin-bottom: 15px;
  }

  .site-big-text {
    margin-top: 100px;
    margin-bottom: 0;
  }

  .time span {
    font-size: 13vw;
  }

  .site-header {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--white);
    border-bottom: 1px solid var(--lightgray);
  }

  .site-nav {
    text-align: right;
  }

  .site-nav__link--right {
    display: none;
  }

  .site-title:hover,
  .site-footer__link:hover {
    color: var(--black);
  }

  .site-nav--active:before,
  .site-nav__link-item:hover:before {
    left: -0.85em;
    line-height: 24px;
  }

  .page-content {
    margin-top: 50px;
  }

  .separator-first {
    padding-bottom: 10px;
    margin-top: 2px;
  }

  .separator {
    padding-bottom: 10px;
    margin-top: 30px;
  }

  .project-thumb__item {
    width: 100%;
    margin-bottom: 6px;
  }

  .project-thumb__title-container {
    padding: 20px;
  }

  .video-play-button svg {
    width: 50px;
    height: 50px;
  }

  .site-footer {
    margin-top: 30px;
  }

  .site-footer .row {
    height: 42px;
  }

  .project-info {
    clear: both;
  }

  .project-meta {
    margin-top: 40px;
    font-size: 12px;
  }

  .site-nav .site-nav__link:not(:last-child):not(:last-of-type) {
    margin-right: 24px;
  }

  .project-img {
    margin: 0 auto 6px auto;
  }

  .project-img .left,
  .project-img .right {
    width: calc(50% - 3px);
    margin-bottom: 6px;
  }
}
