/*!
Theme Name: Barebones
Theme URI: https://benchmark.co.uk/barebones
Author: Benchmark Studios
Author URI: https://benchmark.co.uk/
Description: A lightweight and skeletal WordPress boilerplate theme for HTML5 and beyond
Version: 3.X
License: MIT
License URI: https://mit-license.org/
Text Domain: barebones
*/
@charset "UTF-8";
/*!
Theme Name: Barebones
Theme URI: https://benchmark.co.uk/barebones
Author: Benchmark Studios
Author URI: https://benchmark.co.uk/
Description: A lightweight and skeletal WordPress boilerplate theme for HTML5 and beyond
Version: 3.X
License: MIT
License URI: https://mit-license.org/
Text Domain: barebones
*/
/**
 * Breakpoints
 */
/**
 * Typography
 */
/**
 * Grid
 */
/**
 * Colors
 */
/**
 * Spacing
 */
/**
* Font Sizes
*/
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
/**
 * Default variables and helper mixins
 */
/**
 * Space between columns
 */
/**
 * Max width of container
 */
/**
 * Number of total columns
 */
/**
 * Breakpoints
 */
/**
 * Grid loop mixin
 */
/**
 * Clearfix
 */
/**
 * Grid scaffolding
 */
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 30px;
}
.container.container--wide {
  max-width: 1970px;
}

.row {
  list-style: none;
  margin-left: -30px;
}
.row:not(.row--flex):before, .row:not(.row--flex):after {
  content: " ";
  display: table;
}
.row:not(.row--flex):after {
  clear: both;
}
.row.row--gutterless {
  margin-left: 0;
}
.row.row--flex {
  display: flex;
  flex-wrap: wrap;
}

.col {
  float: left;
  padding-left: 30px;
  box-sizing: border-box;
}
.row--gutterless .col {
  padding-left: 0;
}

/**
 * Columns generator
 */
@media only screen and (min-width: 1025px) {
  .col--lg-offset-0 {
    margin-left: 0%;
  }
  .row--reverse .col--lg-offset-0 {
    margin-left: 0;
    margin-right: 0%;
  }
  .col--lg-1 {
    width: 12.5%;
  }
  .row--flex .col--lg-1 {
    flex-basis: 12.5%;
    max-width: 12.5%;
    width: auto;
    float: none;
  }
  .col--lg-offset-1 {
    margin-left: 12.5%;
  }
  .row--reverse .col--lg-offset-1 {
    margin-left: 0;
    margin-right: 12.5%;
  }
  .col--lg-2 {
    width: 25%;
  }
  .row--flex .col--lg-2 {
    flex-basis: 25%;
    max-width: 25%;
    width: auto;
    float: none;
  }
  .col--lg-offset-2 {
    margin-left: 25%;
  }
  .row--reverse .col--lg-offset-2 {
    margin-left: 0;
    margin-right: 25%;
  }
  .col--lg-3 {
    width: 37.5%;
  }
  .row--flex .col--lg-3 {
    flex-basis: 37.5%;
    max-width: 37.5%;
    width: auto;
    float: none;
  }
  .col--lg-offset-3 {
    margin-left: 37.5%;
  }
  .row--reverse .col--lg-offset-3 {
    margin-left: 0;
    margin-right: 37.5%;
  }
  .col--lg-4 {
    width: 50%;
  }
  .row--flex .col--lg-4 {
    flex-basis: 50%;
    max-width: 50%;
    width: auto;
    float: none;
  }
  .col--lg-offset-4 {
    margin-left: 50%;
  }
  .row--reverse .col--lg-offset-4 {
    margin-left: 0;
    margin-right: 50%;
  }
  .col--lg-5 {
    width: 62.5%;
  }
  .row--flex .col--lg-5 {
    flex-basis: 62.5%;
    max-width: 62.5%;
    width: auto;
    float: none;
  }
  .col--lg-offset-5 {
    margin-left: 62.5%;
  }
  .row--reverse .col--lg-offset-5 {
    margin-left: 0;
    margin-right: 62.5%;
  }
  .col--lg-6 {
    width: 75%;
  }
  .row--flex .col--lg-6 {
    flex-basis: 75%;
    max-width: 75%;
    width: auto;
    float: none;
  }
  .col--lg-offset-6 {
    margin-left: 75%;
  }
  .row--reverse .col--lg-offset-6 {
    margin-left: 0;
    margin-right: 75%;
  }
  .col--lg-7 {
    width: 87.5%;
  }
  .row--flex .col--lg-7 {
    flex-basis: 87.5%;
    max-width: 87.5%;
    width: auto;
    float: none;
  }
  .col--lg-offset-7 {
    margin-left: 87.5%;
  }
  .row--reverse .col--lg-offset-7 {
    margin-left: 0;
    margin-right: 87.5%;
  }
  .col--lg-8 {
    width: 100%;
  }
  .row--flex .col--lg-8 {
    flex-basis: 100%;
    max-width: 100%;
    width: auto;
    float: none;
  }
  .col--lg-offset-8 {
    margin-left: 100%;
  }
  .row--reverse .col--lg-offset-8 {
    margin-left: 0;
    margin-right: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .col--md-offset-0 {
    margin-left: 0%;
  }
  .row--reverse .col--md-offset-0 {
    margin-left: 0;
    margin-right: 0%;
  }
  .col--md-1 {
    width: 12.5%;
  }
  .row--flex .col--md-1 {
    flex-basis: 12.5%;
    max-width: 12.5%;
    width: auto;
    float: none;
  }
  .col--md-offset-1 {
    margin-left: 12.5%;
  }
  .row--reverse .col--md-offset-1 {
    margin-left: 0;
    margin-right: 12.5%;
  }
  .col--md-2 {
    width: 25%;
  }
  .row--flex .col--md-2 {
    flex-basis: 25%;
    max-width: 25%;
    width: auto;
    float: none;
  }
  .col--md-offset-2 {
    margin-left: 25%;
  }
  .row--reverse .col--md-offset-2 {
    margin-left: 0;
    margin-right: 25%;
  }
  .col--md-3 {
    width: 37.5%;
  }
  .row--flex .col--md-3 {
    flex-basis: 37.5%;
    max-width: 37.5%;
    width: auto;
    float: none;
  }
  .col--md-offset-3 {
    margin-left: 37.5%;
  }
  .row--reverse .col--md-offset-3 {
    margin-left: 0;
    margin-right: 37.5%;
  }
  .col--md-4 {
    width: 50%;
  }
  .row--flex .col--md-4 {
    flex-basis: 50%;
    max-width: 50%;
    width: auto;
    float: none;
  }
  .col--md-offset-4 {
    margin-left: 50%;
  }
  .row--reverse .col--md-offset-4 {
    margin-left: 0;
    margin-right: 50%;
  }
  .col--md-5 {
    width: 62.5%;
  }
  .row--flex .col--md-5 {
    flex-basis: 62.5%;
    max-width: 62.5%;
    width: auto;
    float: none;
  }
  .col--md-offset-5 {
    margin-left: 62.5%;
  }
  .row--reverse .col--md-offset-5 {
    margin-left: 0;
    margin-right: 62.5%;
  }
  .col--md-6 {
    width: 75%;
  }
  .row--flex .col--md-6 {
    flex-basis: 75%;
    max-width: 75%;
    width: auto;
    float: none;
  }
  .col--md-offset-6 {
    margin-left: 75%;
  }
  .row--reverse .col--md-offset-6 {
    margin-left: 0;
    margin-right: 75%;
  }
  .col--md-7 {
    width: 87.5%;
  }
  .row--flex .col--md-7 {
    flex-basis: 87.5%;
    max-width: 87.5%;
    width: auto;
    float: none;
  }
  .col--md-offset-7 {
    margin-left: 87.5%;
  }
  .row--reverse .col--md-offset-7 {
    margin-left: 0;
    margin-right: 87.5%;
  }
  .col--md-8 {
    width: 100%;
  }
  .row--flex .col--md-8 {
    flex-basis: 100%;
    max-width: 100%;
    width: auto;
    float: none;
  }
  .col--md-offset-8 {
    margin-left: 100%;
  }
  .row--reverse .col--md-offset-8 {
    margin-left: 0;
    margin-right: 100%;
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .col--sm-offset-0 {
    margin-left: 0%;
  }
  .row--reverse .col--sm-offset-0 {
    margin-left: 0;
    margin-right: 0%;
  }
  .col--sm-1 {
    width: 12.5%;
  }
  .row--flex .col--sm-1 {
    flex-basis: 12.5%;
    max-width: 12.5%;
    width: auto;
    float: none;
  }
  .col--sm-offset-1 {
    margin-left: 12.5%;
  }
  .row--reverse .col--sm-offset-1 {
    margin-left: 0;
    margin-right: 12.5%;
  }
  .col--sm-2 {
    width: 25%;
  }
  .row--flex .col--sm-2 {
    flex-basis: 25%;
    max-width: 25%;
    width: auto;
    float: none;
  }
  .col--sm-offset-2 {
    margin-left: 25%;
  }
  .row--reverse .col--sm-offset-2 {
    margin-left: 0;
    margin-right: 25%;
  }
  .col--sm-3 {
    width: 37.5%;
  }
  .row--flex .col--sm-3 {
    flex-basis: 37.5%;
    max-width: 37.5%;
    width: auto;
    float: none;
  }
  .col--sm-offset-3 {
    margin-left: 37.5%;
  }
  .row--reverse .col--sm-offset-3 {
    margin-left: 0;
    margin-right: 37.5%;
  }
  .col--sm-4 {
    width: 50%;
  }
  .row--flex .col--sm-4 {
    flex-basis: 50%;
    max-width: 50%;
    width: auto;
    float: none;
  }
  .col--sm-offset-4 {
    margin-left: 50%;
  }
  .row--reverse .col--sm-offset-4 {
    margin-left: 0;
    margin-right: 50%;
  }
  .col--sm-5 {
    width: 62.5%;
  }
  .row--flex .col--sm-5 {
    flex-basis: 62.5%;
    max-width: 62.5%;
    width: auto;
    float: none;
  }
  .col--sm-offset-5 {
    margin-left: 62.5%;
  }
  .row--reverse .col--sm-offset-5 {
    margin-left: 0;
    margin-right: 62.5%;
  }
  .col--sm-6 {
    width: 75%;
  }
  .row--flex .col--sm-6 {
    flex-basis: 75%;
    max-width: 75%;
    width: auto;
    float: none;
  }
  .col--sm-offset-6 {
    margin-left: 75%;
  }
  .row--reverse .col--sm-offset-6 {
    margin-left: 0;
    margin-right: 75%;
  }
  .col--sm-7 {
    width: 87.5%;
  }
  .row--flex .col--sm-7 {
    flex-basis: 87.5%;
    max-width: 87.5%;
    width: auto;
    float: none;
  }
  .col--sm-offset-7 {
    margin-left: 87.5%;
  }
  .row--reverse .col--sm-offset-7 {
    margin-left: 0;
    margin-right: 87.5%;
  }
  .col--sm-8 {
    width: 100%;
  }
  .row--flex .col--sm-8 {
    flex-basis: 100%;
    max-width: 100%;
    width: auto;
    float: none;
  }
  .col--sm-offset-8 {
    margin-left: 100%;
  }
  .row--reverse .col--sm-offset-8 {
    margin-left: 0;
    margin-right: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .col--xs-offset-0 {
    margin-left: 0%;
  }
  .row--reverse .col--xs-offset-0 {
    margin-left: 0;
    margin-right: 0%;
  }
  .col--xs-1 {
    width: 12.5%;
  }
  .row--flex .col--xs-1 {
    flex-basis: 12.5%;
    max-width: 12.5%;
    width: auto;
    float: none;
  }
  .col--xs-offset-1 {
    margin-left: 12.5%;
  }
  .row--reverse .col--xs-offset-1 {
    margin-left: 0;
    margin-right: 12.5%;
  }
  .col--xs-2 {
    width: 25%;
  }
  .row--flex .col--xs-2 {
    flex-basis: 25%;
    max-width: 25%;
    width: auto;
    float: none;
  }
  .col--xs-offset-2 {
    margin-left: 25%;
  }
  .row--reverse .col--xs-offset-2 {
    margin-left: 0;
    margin-right: 25%;
  }
  .col--xs-3 {
    width: 37.5%;
  }
  .row--flex .col--xs-3 {
    flex-basis: 37.5%;
    max-width: 37.5%;
    width: auto;
    float: none;
  }
  .col--xs-offset-3 {
    margin-left: 37.5%;
  }
  .row--reverse .col--xs-offset-3 {
    margin-left: 0;
    margin-right: 37.5%;
  }
  .col--xs-4 {
    width: 50%;
  }
  .row--flex .col--xs-4 {
    flex-basis: 50%;
    max-width: 50%;
    width: auto;
    float: none;
  }
  .col--xs-offset-4 {
    margin-left: 50%;
  }
  .row--reverse .col--xs-offset-4 {
    margin-left: 0;
    margin-right: 50%;
  }
  .col--xs-5 {
    width: 62.5%;
  }
  .row--flex .col--xs-5 {
    flex-basis: 62.5%;
    max-width: 62.5%;
    width: auto;
    float: none;
  }
  .col--xs-offset-5 {
    margin-left: 62.5%;
  }
  .row--reverse .col--xs-offset-5 {
    margin-left: 0;
    margin-right: 62.5%;
  }
  .col--xs-6 {
    width: 75%;
  }
  .row--flex .col--xs-6 {
    flex-basis: 75%;
    max-width: 75%;
    width: auto;
    float: none;
  }
  .col--xs-offset-6 {
    margin-left: 75%;
  }
  .row--reverse .col--xs-offset-6 {
    margin-left: 0;
    margin-right: 75%;
  }
  .col--xs-7 {
    width: 87.5%;
  }
  .row--flex .col--xs-7 {
    flex-basis: 87.5%;
    max-width: 87.5%;
    width: auto;
    float: none;
  }
  .col--xs-offset-7 {
    margin-left: 87.5%;
  }
  .row--reverse .col--xs-offset-7 {
    margin-left: 0;
    margin-right: 87.5%;
  }
  .col--xs-8 {
    width: 100%;
  }
  .row--flex .col--xs-8 {
    flex-basis: 100%;
    max-width: 100%;
    width: auto;
    float: none;
  }
  .col--xs-offset-8 {
    margin-left: 100%;
  }
  .row--reverse .col--xs-offset-8 {
    margin-left: 0;
    margin-right: 100%;
  }
}
@media only screen and (max-width: 1270px) {
  .col--nav-offset-0 {
    margin-left: 0%;
  }
  .row--reverse .col--nav-offset-0 {
    margin-left: 0;
    margin-right: 0%;
  }
  .col--nav-1 {
    width: 12.5%;
  }
  .row--flex .col--nav-1 {
    flex-basis: 12.5%;
    max-width: 12.5%;
    width: auto;
    float: none;
  }
  .col--nav-offset-1 {
    margin-left: 12.5%;
  }
  .row--reverse .col--nav-offset-1 {
    margin-left: 0;
    margin-right: 12.5%;
  }
  .col--nav-2 {
    width: 25%;
  }
  .row--flex .col--nav-2 {
    flex-basis: 25%;
    max-width: 25%;
    width: auto;
    float: none;
  }
  .col--nav-offset-2 {
    margin-left: 25%;
  }
  .row--reverse .col--nav-offset-2 {
    margin-left: 0;
    margin-right: 25%;
  }
  .col--nav-3 {
    width: 37.5%;
  }
  .row--flex .col--nav-3 {
    flex-basis: 37.5%;
    max-width: 37.5%;
    width: auto;
    float: none;
  }
  .col--nav-offset-3 {
    margin-left: 37.5%;
  }
  .row--reverse .col--nav-offset-3 {
    margin-left: 0;
    margin-right: 37.5%;
  }
  .col--nav-4 {
    width: 50%;
  }
  .row--flex .col--nav-4 {
    flex-basis: 50%;
    max-width: 50%;
    width: auto;
    float: none;
  }
  .col--nav-offset-4 {
    margin-left: 50%;
  }
  .row--reverse .col--nav-offset-4 {
    margin-left: 0;
    margin-right: 50%;
  }
  .col--nav-5 {
    width: 62.5%;
  }
  .row--flex .col--nav-5 {
    flex-basis: 62.5%;
    max-width: 62.5%;
    width: auto;
    float: none;
  }
  .col--nav-offset-5 {
    margin-left: 62.5%;
  }
  .row--reverse .col--nav-offset-5 {
    margin-left: 0;
    margin-right: 62.5%;
  }
  .col--nav-6 {
    width: 75%;
  }
  .row--flex .col--nav-6 {
    flex-basis: 75%;
    max-width: 75%;
    width: auto;
    float: none;
  }
  .col--nav-offset-6 {
    margin-left: 75%;
  }
  .row--reverse .col--nav-offset-6 {
    margin-left: 0;
    margin-right: 75%;
  }
  .col--nav-7 {
    width: 87.5%;
  }
  .row--flex .col--nav-7 {
    flex-basis: 87.5%;
    max-width: 87.5%;
    width: auto;
    float: none;
  }
  .col--nav-offset-7 {
    margin-left: 87.5%;
  }
  .row--reverse .col--nav-offset-7 {
    margin-left: 0;
    margin-right: 87.5%;
  }
  .col--nav-8 {
    width: 100%;
  }
  .row--flex .col--nav-8 {
    flex-basis: 100%;
    max-width: 100%;
    width: auto;
    float: none;
  }
  .col--nav-offset-8 {
    margin-left: 100%;
  }
  .row--reverse .col--nav-offset-8 {
    margin-left: 0;
    margin-right: 100%;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

* {
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  margin: 0;
  padding: 0;
}

html {
  background-color: white;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

input,
select,
textarea,
button {
  color: inherit;
  display: inline-block;
}
input[disabled],
select[disabled],
textarea[disabled],
button[disabled] {
  cursor: not-allowed;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  text-align: left;
}

.visible-lg {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .visible-lg {
    display: block !important;
  }
}

@media only screen and (min-width: 1025px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-md {
  display: none;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .visible-md {
    display: block !important;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

.visible-sm {
  display: none;
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .visible-sm {
    display: block !important;
  }
}

@media only screen and (min-width: 481px) and (max-width:768px) {
  .hidden-sm {
    display: none !important;
  }
}

.visible-xs {
  display: none;
}
@media only screen and (max-width: 480px) {
  .visible-xs {
    display: block !important;
  }
}

@media only screen and (max-width: 480px) {
  .hidden-xs {
    display: none !important;
  }
}

.visible-nav {
  display: none;
}
@media only screen and (max-width: 1270px) {
  .visible-nav {
    display: block !important;
  }
}

@media only screen and (max-width: 1270px) {
  .hidden-nav {
    display: none !important;
  }
}

/**
* Clearing and floating
*/
.alignleft,
.float-left {
  float: left;
}
img .alignleft,
img .float-left {
  margin-right: 30px;
}

.alignright,
.float-right {
  float: right;
}
img .alignright,
img .float-right {
  margin-left: 30px;
}

.aligncenter,
.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img .aligncenter,
img .float-center {
  margin-bottom: 30px;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

/**
* Text aligments
*/
.align-text-left {
  text-align: left;
}

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

.align-text-center {
  text-align: center;
}

/**
* Aligments
*/
.items-center {
  align-items: center;
}

/**
 * Elements visibility
 */
.visible-on-mobile {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .visible-on-mobile {
    display: block !important;
  }
}

.visible-on-tablet {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .visible-on-tablet {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .visible-on-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .visible-on-desktop {
    display: none !important;
  }
}

/**
 * Accessibility
 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
 * Breakpoints
 */
/**
 * Spacing
 */
.py-xl {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pt-xl {
  padding-top: 120px;
}

.pb-xl {
  padding-bottom: 120px;
}

.px-xl {
  padding-left: 120px;
  padding-right: 120px;
}

.pl-xl {
  padding-left: 120px;
}

.pr-xl {
  padding-right: 120px;
}

.my-xl {
  margin-top: 120px;
  margin-bottom: 120px;
}

.mt-xl {
  margin-top: 120px;
}

.mb-xl {
  margin-bottom: 120px;
}

.mx-xl {
  margin-left: 120px;
  margin-right: 120px;
}

.ml-xl {
  margin-left: 120px;
}

.mr-xl {
  margin-right: 120px;
}

@media only screen and (min-width: 1025px) {
  .lg\:py-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .lg\:pt-xl {
    padding-top: 120px;
  }
  .lg\:pb-xl {
    padding-bottom: 120px;
  }
  .lg\:px-xl {
    padding-left: 120px;
    padding-right: 120px;
  }
  .lg\:pl-xl {
    padding-left: 120px;
  }
  .lg\:pr-xl {
    padding-right: 120px;
  }
  .lg\:my-xl {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .lg\:mt-xl {
    margin-top: 120px;
  }
  .lg\:mb-xl {
    margin-bottom: 120px;
  }
  .lg\:mx-xl {
    margin-left: 120px;
    margin-right: 120px;
  }
  .lg\:ml-xl {
    margin-left: 120px;
  }
  .lg\:mr-xl {
    margin-right: 120px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .md\:py-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .md\:pt-xl {
    padding-top: 120px;
  }
  .md\:pb-xl {
    padding-bottom: 120px;
  }
  .md\:px-xl {
    padding-left: 120px;
    padding-right: 120px;
  }
  .md\:pl-xl {
    padding-left: 120px;
  }
  .md\:pr-xl {
    padding-right: 120px;
  }
  .md\:my-xl {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .md\:mt-xl {
    margin-top: 120px;
  }
  .md\:mb-xl {
    margin-bottom: 120px;
  }
  .md\:mx-xl {
    margin-left: 120px;
    margin-right: 120px;
  }
  .md\:ml-xl {
    margin-left: 120px;
  }
  .md\:mr-xl {
    margin-right: 120px;
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .sm\:py-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .sm\:pt-xl {
    padding-top: 120px;
  }
  .sm\:pb-xl {
    padding-bottom: 120px;
  }
  .sm\:px-xl {
    padding-left: 120px;
    padding-right: 120px;
  }
  .sm\:pl-xl {
    padding-left: 120px;
  }
  .sm\:pr-xl {
    padding-right: 120px;
  }
  .sm\:my-xl {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .sm\:mt-xl {
    margin-top: 120px;
  }
  .sm\:mb-xl {
    margin-bottom: 120px;
  }
  .sm\:mx-xl {
    margin-left: 120px;
    margin-right: 120px;
  }
  .sm\:ml-xl {
    margin-left: 120px;
  }
  .sm\:mr-xl {
    margin-right: 120px;
  }
}
@media only screen and (max-width: 480px) {
  .xs\:py-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .xs\:pt-xl {
    padding-top: 120px;
  }
  .xs\:pb-xl {
    padding-bottom: 120px;
  }
  .xs\:px-xl {
    padding-left: 120px;
    padding-right: 120px;
  }
  .xs\:pl-xl {
    padding-left: 120px;
  }
  .xs\:pr-xl {
    padding-right: 120px;
  }
  .xs\:my-xl {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .xs\:mt-xl {
    margin-top: 120px;
  }
  .xs\:mb-xl {
    margin-bottom: 120px;
  }
  .xs\:mx-xl {
    margin-left: 120px;
    margin-right: 120px;
  }
  .xs\:ml-xl {
    margin-left: 120px;
  }
  .xs\:mr-xl {
    margin-right: 120px;
  }
}
@media only screen and (max-width: 1270px) {
  .nav\:py-xl {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .nav\:pt-xl {
    padding-top: 120px;
  }
  .nav\:pb-xl {
    padding-bottom: 120px;
  }
  .nav\:px-xl {
    padding-left: 120px;
    padding-right: 120px;
  }
  .nav\:pl-xl {
    padding-left: 120px;
  }
  .nav\:pr-xl {
    padding-right: 120px;
  }
  .nav\:my-xl {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .nav\:mt-xl {
    margin-top: 120px;
  }
  .nav\:mb-xl {
    margin-bottom: 120px;
  }
  .nav\:mx-xl {
    margin-left: 120px;
    margin-right: 120px;
  }
  .nav\:ml-xl {
    margin-left: 120px;
  }
  .nav\:mr-xl {
    margin-right: 120px;
  }
}
.py-lg {
  padding-top: 90px;
  padding-bottom: 90px;
}

.pt-lg {
  padding-top: 90px;
}

.pb-lg {
  padding-bottom: 90px;
}

.px-lg {
  padding-left: 90px;
  padding-right: 90px;
}

.pl-lg {
  padding-left: 90px;
}

.pr-lg {
  padding-right: 90px;
}

.my-lg {
  margin-top: 90px;
  margin-bottom: 90px;
}

.mt-lg {
  margin-top: 90px;
}

.mb-lg {
  margin-bottom: 90px;
}

.mx-lg {
  margin-left: 90px;
  margin-right: 90px;
}

.ml-lg {
  margin-left: 90px;
}

.mr-lg {
  margin-right: 90px;
}

@media only screen and (min-width: 1025px) {
  .lg\:py-lg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .lg\:pt-lg {
    padding-top: 90px;
  }
  .lg\:pb-lg {
    padding-bottom: 90px;
  }
  .lg\:px-lg {
    padding-left: 90px;
    padding-right: 90px;
  }
  .lg\:pl-lg {
    padding-left: 90px;
  }
  .lg\:pr-lg {
    padding-right: 90px;
  }
  .lg\:my-lg {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .lg\:mt-lg {
    margin-top: 90px;
  }
  .lg\:mb-lg {
    margin-bottom: 90px;
  }
  .lg\:mx-lg {
    margin-left: 90px;
    margin-right: 90px;
  }
  .lg\:ml-lg {
    margin-left: 90px;
  }
  .lg\:mr-lg {
    margin-right: 90px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .md\:py-lg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .md\:pt-lg {
    padding-top: 90px;
  }
  .md\:pb-lg {
    padding-bottom: 90px;
  }
  .md\:px-lg {
    padding-left: 90px;
    padding-right: 90px;
  }
  .md\:pl-lg {
    padding-left: 90px;
  }
  .md\:pr-lg {
    padding-right: 90px;
  }
  .md\:my-lg {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .md\:mt-lg {
    margin-top: 90px;
  }
  .md\:mb-lg {
    margin-bottom: 90px;
  }
  .md\:mx-lg {
    margin-left: 90px;
    margin-right: 90px;
  }
  .md\:ml-lg {
    margin-left: 90px;
  }
  .md\:mr-lg {
    margin-right: 90px;
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .sm\:py-lg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .sm\:pt-lg {
    padding-top: 90px;
  }
  .sm\:pb-lg {
    padding-bottom: 90px;
  }
  .sm\:px-lg {
    padding-left: 90px;
    padding-right: 90px;
  }
  .sm\:pl-lg {
    padding-left: 90px;
  }
  .sm\:pr-lg {
    padding-right: 90px;
  }
  .sm\:my-lg {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .sm\:mt-lg {
    margin-top: 90px;
  }
  .sm\:mb-lg {
    margin-bottom: 90px;
  }
  .sm\:mx-lg {
    margin-left: 90px;
    margin-right: 90px;
  }
  .sm\:ml-lg {
    margin-left: 90px;
  }
  .sm\:mr-lg {
    margin-right: 90px;
  }
}
@media only screen and (max-width: 480px) {
  .xs\:py-lg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .xs\:pt-lg {
    padding-top: 90px;
  }
  .xs\:pb-lg {
    padding-bottom: 90px;
  }
  .xs\:px-lg {
    padding-left: 90px;
    padding-right: 90px;
  }
  .xs\:pl-lg {
    padding-left: 90px;
  }
  .xs\:pr-lg {
    padding-right: 90px;
  }
  .xs\:my-lg {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .xs\:mt-lg {
    margin-top: 90px;
  }
  .xs\:mb-lg {
    margin-bottom: 90px;
  }
  .xs\:mx-lg {
    margin-left: 90px;
    margin-right: 90px;
  }
  .xs\:ml-lg {
    margin-left: 90px;
  }
  .xs\:mr-lg {
    margin-right: 90px;
  }
}
@media only screen and (max-width: 1270px) {
  .nav\:py-lg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .nav\:pt-lg {
    padding-top: 90px;
  }
  .nav\:pb-lg {
    padding-bottom: 90px;
  }
  .nav\:px-lg {
    padding-left: 90px;
    padding-right: 90px;
  }
  .nav\:pl-lg {
    padding-left: 90px;
  }
  .nav\:pr-lg {
    padding-right: 90px;
  }
  .nav\:my-lg {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .nav\:mt-lg {
    margin-top: 90px;
  }
  .nav\:mb-lg {
    margin-bottom: 90px;
  }
  .nav\:mx-lg {
    margin-left: 90px;
    margin-right: 90px;
  }
  .nav\:ml-lg {
    margin-left: 90px;
  }
  .nav\:mr-lg {
    margin-right: 90px;
  }
}
.py-md {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pt-md {
  padding-top: 60px;
}

.pb-md {
  padding-bottom: 60px;
}

.px-md {
  padding-left: 60px;
  padding-right: 60px;
}

.pl-md {
  padding-left: 60px;
}

.pr-md {
  padding-right: 60px;
}

.my-md {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mt-md {
  margin-top: 60px;
}

.mb-md {
  margin-bottom: 60px;
}

.mx-md {
  margin-left: 60px;
  margin-right: 60px;
}

.ml-md {
  margin-left: 60px;
}

.mr-md {
  margin-right: 60px;
}

@media only screen and (min-width: 1025px) {
  .lg\:py-md {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .lg\:pt-md {
    padding-top: 60px;
  }
  .lg\:pb-md {
    padding-bottom: 60px;
  }
  .lg\:px-md {
    padding-left: 60px;
    padding-right: 60px;
  }
  .lg\:pl-md {
    padding-left: 60px;
  }
  .lg\:pr-md {
    padding-right: 60px;
  }
  .lg\:my-md {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .lg\:mt-md {
    margin-top: 60px;
  }
  .lg\:mb-md {
    margin-bottom: 60px;
  }
  .lg\:mx-md {
    margin-left: 60px;
    margin-right: 60px;
  }
  .lg\:ml-md {
    margin-left: 60px;
  }
  .lg\:mr-md {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .md\:py-md {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .md\:pt-md {
    padding-top: 60px;
  }
  .md\:pb-md {
    padding-bottom: 60px;
  }
  .md\:px-md {
    padding-left: 60px;
    padding-right: 60px;
  }
  .md\:pl-md {
    padding-left: 60px;
  }
  .md\:pr-md {
    padding-right: 60px;
  }
  .md\:my-md {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .md\:mt-md {
    margin-top: 60px;
  }
  .md\:mb-md {
    margin-bottom: 60px;
  }
  .md\:mx-md {
    margin-left: 60px;
    margin-right: 60px;
  }
  .md\:ml-md {
    margin-left: 60px;
  }
  .md\:mr-md {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .sm\:py-md {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sm\:pt-md {
    padding-top: 60px;
  }
  .sm\:pb-md {
    padding-bottom: 60px;
  }
  .sm\:px-md {
    padding-left: 60px;
    padding-right: 60px;
  }
  .sm\:pl-md {
    padding-left: 60px;
  }
  .sm\:pr-md {
    padding-right: 60px;
  }
  .sm\:my-md {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .sm\:mt-md {
    margin-top: 60px;
  }
  .sm\:mb-md {
    margin-bottom: 60px;
  }
  .sm\:mx-md {
    margin-left: 60px;
    margin-right: 60px;
  }
  .sm\:ml-md {
    margin-left: 60px;
  }
  .sm\:mr-md {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 480px) {
  .xs\:py-md {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .xs\:pt-md {
    padding-top: 60px;
  }
  .xs\:pb-md {
    padding-bottom: 60px;
  }
  .xs\:px-md {
    padding-left: 60px;
    padding-right: 60px;
  }
  .xs\:pl-md {
    padding-left: 60px;
  }
  .xs\:pr-md {
    padding-right: 60px;
  }
  .xs\:my-md {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .xs\:mt-md {
    margin-top: 60px;
  }
  .xs\:mb-md {
    margin-bottom: 60px;
  }
  .xs\:mx-md {
    margin-left: 60px;
    margin-right: 60px;
  }
  .xs\:ml-md {
    margin-left: 60px;
  }
  .xs\:mr-md {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 1270px) {
  .nav\:py-md {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .nav\:pt-md {
    padding-top: 60px;
  }
  .nav\:pb-md {
    padding-bottom: 60px;
  }
  .nav\:px-md {
    padding-left: 60px;
    padding-right: 60px;
  }
  .nav\:pl-md {
    padding-left: 60px;
  }
  .nav\:pr-md {
    padding-right: 60px;
  }
  .nav\:my-md {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .nav\:mt-md {
    margin-top: 60px;
  }
  .nav\:mb-md {
    margin-bottom: 60px;
  }
  .nav\:mx-md {
    margin-left: 60px;
    margin-right: 60px;
  }
  .nav\:ml-md {
    margin-left: 60px;
  }
  .nav\:mr-md {
    margin-right: 60px;
  }
}
.py-sm {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pt-sm {
  padding-top: 30px;
}

.pb-sm {
  padding-bottom: 30px;
}

.px-sm {
  padding-left: 30px;
  padding-right: 30px;
}

.pl-sm {
  padding-left: 30px;
}

.pr-sm {
  padding-right: 30px;
}

.my-sm {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mt-sm {
  margin-top: 30px;
}

.mb-sm {
  margin-bottom: 30px;
}

.mx-sm {
  margin-left: 30px;
  margin-right: 30px;
}

.ml-sm {
  margin-left: 30px;
}

.mr-sm {
  margin-right: 30px;
}

@media only screen and (min-width: 1025px) {
  .lg\:py-sm {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .lg\:pt-sm {
    padding-top: 30px;
  }
  .lg\:pb-sm {
    padding-bottom: 30px;
  }
  .lg\:px-sm {
    padding-left: 30px;
    padding-right: 30px;
  }
  .lg\:pl-sm {
    padding-left: 30px;
  }
  .lg\:pr-sm {
    padding-right: 30px;
  }
  .lg\:my-sm {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .lg\:mt-sm {
    margin-top: 30px;
  }
  .lg\:mb-sm {
    margin-bottom: 30px;
  }
  .lg\:mx-sm {
    margin-left: 30px;
    margin-right: 30px;
  }
  .lg\:ml-sm {
    margin-left: 30px;
  }
  .lg\:mr-sm {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .md\:py-sm {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .md\:pt-sm {
    padding-top: 30px;
  }
  .md\:pb-sm {
    padding-bottom: 30px;
  }
  .md\:px-sm {
    padding-left: 30px;
    padding-right: 30px;
  }
  .md\:pl-sm {
    padding-left: 30px;
  }
  .md\:pr-sm {
    padding-right: 30px;
  }
  .md\:my-sm {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .md\:mt-sm {
    margin-top: 30px;
  }
  .md\:mb-sm {
    margin-bottom: 30px;
  }
  .md\:mx-sm {
    margin-left: 30px;
    margin-right: 30px;
  }
  .md\:ml-sm {
    margin-left: 30px;
  }
  .md\:mr-sm {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .sm\:py-sm {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .sm\:pt-sm {
    padding-top: 30px;
  }
  .sm\:pb-sm {
    padding-bottom: 30px;
  }
  .sm\:px-sm {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sm\:pl-sm {
    padding-left: 30px;
  }
  .sm\:pr-sm {
    padding-right: 30px;
  }
  .sm\:my-sm {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .sm\:mt-sm {
    margin-top: 30px;
  }
  .sm\:mb-sm {
    margin-bottom: 30px;
  }
  .sm\:mx-sm {
    margin-left: 30px;
    margin-right: 30px;
  }
  .sm\:ml-sm {
    margin-left: 30px;
  }
  .sm\:mr-sm {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .xs\:py-sm {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .xs\:pt-sm {
    padding-top: 30px;
  }
  .xs\:pb-sm {
    padding-bottom: 30px;
  }
  .xs\:px-sm {
    padding-left: 30px;
    padding-right: 30px;
  }
  .xs\:pl-sm {
    padding-left: 30px;
  }
  .xs\:pr-sm {
    padding-right: 30px;
  }
  .xs\:my-sm {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .xs\:mt-sm {
    margin-top: 30px;
  }
  .xs\:mb-sm {
    margin-bottom: 30px;
  }
  .xs\:mx-sm {
    margin-left: 30px;
    margin-right: 30px;
  }
  .xs\:ml-sm {
    margin-left: 30px;
  }
  .xs\:mr-sm {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 1270px) {
  .nav\:py-sm {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .nav\:pt-sm {
    padding-top: 30px;
  }
  .nav\:pb-sm {
    padding-bottom: 30px;
  }
  .nav\:px-sm {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nav\:pl-sm {
    padding-left: 30px;
  }
  .nav\:pr-sm {
    padding-right: 30px;
  }
  .nav\:my-sm {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .nav\:mt-sm {
    margin-top: 30px;
  }
  .nav\:mb-sm {
    margin-bottom: 30px;
  }
  .nav\:mx-sm {
    margin-left: 30px;
    margin-right: 30px;
  }
  .nav\:ml-sm {
    margin-left: 30px;
  }
  .nav\:mr-sm {
    margin-right: 30px;
  }
}
.py-xs {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pt-xs {
  padding-top: 15px;
}

.pb-xs {
  padding-bottom: 15px;
}

.px-xs {
  padding-left: 15px;
  padding-right: 15px;
}

.pl-xs {
  padding-left: 15px;
}

.pr-xs {
  padding-right: 15px;
}

.my-xs {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mt-xs {
  margin-top: 15px;
}

.mb-xs {
  margin-bottom: 15px;
}

.mx-xs {
  margin-left: 15px;
  margin-right: 15px;
}

.ml-xs {
  margin-left: 15px;
}

.mr-xs {
  margin-right: 15px;
}

@media only screen and (min-width: 1025px) {
  .lg\:py-xs {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .lg\:pt-xs {
    padding-top: 15px;
  }
  .lg\:pb-xs {
    padding-bottom: 15px;
  }
  .lg\:px-xs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .lg\:pl-xs {
    padding-left: 15px;
  }
  .lg\:pr-xs {
    padding-right: 15px;
  }
  .lg\:my-xs {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .lg\:mt-xs {
    margin-top: 15px;
  }
  .lg\:mb-xs {
    margin-bottom: 15px;
  }
  .lg\:mx-xs {
    margin-left: 15px;
    margin-right: 15px;
  }
  .lg\:ml-xs {
    margin-left: 15px;
  }
  .lg\:mr-xs {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .md\:py-xs {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .md\:pt-xs {
    padding-top: 15px;
  }
  .md\:pb-xs {
    padding-bottom: 15px;
  }
  .md\:px-xs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .md\:pl-xs {
    padding-left: 15px;
  }
  .md\:pr-xs {
    padding-right: 15px;
  }
  .md\:my-xs {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .md\:mt-xs {
    margin-top: 15px;
  }
  .md\:mb-xs {
    margin-bottom: 15px;
  }
  .md\:mx-xs {
    margin-left: 15px;
    margin-right: 15px;
  }
  .md\:ml-xs {
    margin-left: 15px;
  }
  .md\:mr-xs {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .sm\:py-xs {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sm\:pt-xs {
    padding-top: 15px;
  }
  .sm\:pb-xs {
    padding-bottom: 15px;
  }
  .sm\:px-xs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sm\:pl-xs {
    padding-left: 15px;
  }
  .sm\:pr-xs {
    padding-right: 15px;
  }
  .sm\:my-xs {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .sm\:mt-xs {
    margin-top: 15px;
  }
  .sm\:mb-xs {
    margin-bottom: 15px;
  }
  .sm\:mx-xs {
    margin-left: 15px;
    margin-right: 15px;
  }
  .sm\:ml-xs {
    margin-left: 15px;
  }
  .sm\:mr-xs {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .xs\:py-xs {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .xs\:pt-xs {
    padding-top: 15px;
  }
  .xs\:pb-xs {
    padding-bottom: 15px;
  }
  .xs\:px-xs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .xs\:pl-xs {
    padding-left: 15px;
  }
  .xs\:pr-xs {
    padding-right: 15px;
  }
  .xs\:my-xs {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .xs\:mt-xs {
    margin-top: 15px;
  }
  .xs\:mb-xs {
    margin-bottom: 15px;
  }
  .xs\:mx-xs {
    margin-left: 15px;
    margin-right: 15px;
  }
  .xs\:ml-xs {
    margin-left: 15px;
  }
  .xs\:mr-xs {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 1270px) {
  .nav\:py-xs {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nav\:pt-xs {
    padding-top: 15px;
  }
  .nav\:pb-xs {
    padding-bottom: 15px;
  }
  .nav\:px-xs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .nav\:pl-xs {
    padding-left: 15px;
  }
  .nav\:pr-xs {
    padding-right: 15px;
  }
  .nav\:my-xs {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .nav\:mt-xs {
    margin-top: 15px;
  }
  .nav\:mb-xs {
    margin-bottom: 15px;
  }
  .nav\:mx-xs {
    margin-left: 15px;
    margin-right: 15px;
  }
  .nav\:ml-xs {
    margin-left: 15px;
  }
  .nav\:mr-xs {
    margin-right: 15px;
  }
}
.py-none {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-none {
  padding-top: 0;
}

.pb-none {
  padding-bottom: 0;
}

.px-none {
  padding-left: 0;
  padding-right: 0;
}

.pl-none {
  padding-left: 0;
}

.pr-none {
  padding-right: 0;
}

.my-none {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-none {
  margin-top: 0;
}

.mb-none {
  margin-bottom: 0;
}

.mx-none {
  margin-left: 0;
  margin-right: 0;
}

.ml-none {
  margin-left: 0;
}

.mr-none {
  margin-right: 0;
}

@media only screen and (min-width: 1025px) {
  .lg\:py-none {
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:pt-none {
    padding-top: 0;
  }
  .lg\:pb-none {
    padding-bottom: 0;
  }
  .lg\:px-none {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:pl-none {
    padding-left: 0;
  }
  .lg\:pr-none {
    padding-right: 0;
  }
  .lg\:my-none {
    margin-top: 0;
    margin-bottom: 0;
  }
  .lg\:mt-none {
    margin-top: 0;
  }
  .lg\:mb-none {
    margin-bottom: 0;
  }
  .lg\:mx-none {
    margin-left: 0;
    margin-right: 0;
  }
  .lg\:ml-none {
    margin-left: 0;
  }
  .lg\:mr-none {
    margin-right: 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .md\:py-none {
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\:pt-none {
    padding-top: 0;
  }
  .md\:pb-none {
    padding-bottom: 0;
  }
  .md\:px-none {
    padding-left: 0;
    padding-right: 0;
  }
  .md\:pl-none {
    padding-left: 0;
  }
  .md\:pr-none {
    padding-right: 0;
  }
  .md\:my-none {
    margin-top: 0;
    margin-bottom: 0;
  }
  .md\:mt-none {
    margin-top: 0;
  }
  .md\:mb-none {
    margin-bottom: 0;
  }
  .md\:mx-none {
    margin-left: 0;
    margin-right: 0;
  }
  .md\:ml-none {
    margin-left: 0;
  }
  .md\:mr-none {
    margin-right: 0;
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .sm\:py-none {
    padding-top: 0;
    padding-bottom: 0;
  }
  .sm\:pt-none {
    padding-top: 0;
  }
  .sm\:pb-none {
    padding-bottom: 0;
  }
  .sm\:px-none {
    padding-left: 0;
    padding-right: 0;
  }
  .sm\:pl-none {
    padding-left: 0;
  }
  .sm\:pr-none {
    padding-right: 0;
  }
  .sm\:my-none {
    margin-top: 0;
    margin-bottom: 0;
  }
  .sm\:mt-none {
    margin-top: 0;
  }
  .sm\:mb-none {
    margin-bottom: 0;
  }
  .sm\:mx-none {
    margin-left: 0;
    margin-right: 0;
  }
  .sm\:ml-none {
    margin-left: 0;
  }
  .sm\:mr-none {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .xs\:py-none {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xs\:pt-none {
    padding-top: 0;
  }
  .xs\:pb-none {
    padding-bottom: 0;
  }
  .xs\:px-none {
    padding-left: 0;
    padding-right: 0;
  }
  .xs\:pl-none {
    padding-left: 0;
  }
  .xs\:pr-none {
    padding-right: 0;
  }
  .xs\:my-none {
    margin-top: 0;
    margin-bottom: 0;
  }
  .xs\:mt-none {
    margin-top: 0;
  }
  .xs\:mb-none {
    margin-bottom: 0;
  }
  .xs\:mx-none {
    margin-left: 0;
    margin-right: 0;
  }
  .xs\:ml-none {
    margin-left: 0;
  }
  .xs\:mr-none {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1270px) {
  .nav\:py-none {
    padding-top: 0;
    padding-bottom: 0;
  }
  .nav\:pt-none {
    padding-top: 0;
  }
  .nav\:pb-none {
    padding-bottom: 0;
  }
  .nav\:px-none {
    padding-left: 0;
    padding-right: 0;
  }
  .nav\:pl-none {
    padding-left: 0;
  }
  .nav\:pr-none {
    padding-right: 0;
  }
  .nav\:my-none {
    margin-top: 0;
    margin-bottom: 0;
  }
  .nav\:mt-none {
    margin-top: 0;
  }
  .nav\:mb-none {
    margin-bottom: 0;
  }
  .nav\:mx-none {
    margin-left: 0;
    margin-right: 0;
  }
  .nav\:ml-none {
    margin-left: 0;
  }
  .nav\:mr-none {
    margin-right: 0;
  }
}
/**
 * Fonts
 */
.font-base {
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.font-alt {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/**
 * Font Sizes
 */
.text-3xl {
  font-size: 64px;
  font-size: 4rem;
}

.text-2xl {
  font-size: 40px;
  font-size: 2.5rem;
}

.text-xl {
  font-size: 34px;
  font-size: 2.125rem;
}

.text-lg {
  font-size: 28px;
  font-size: 1.75rem;
}

.text-md {
  font-size: 20px;
  font-size: 1.25rem;
}

.text-sm {
  font-size: 16px;
  font-size: 1rem;
}

.text-xs {
  font-size: 13px;
  font-size: 0.8125rem;
}

.text-xxs {
  font-size: 11.5px;
  font-size: 0.71875rem;
}

/**
 * Colors
 */
.text-base {
  color: #707372;
}

.bg-base {
  background-color: #707372;
}

.text-background {
  color: #F1F1F1;
}

.bg-background {
  background-color: #F1F1F1;
}

.text-brand {
  color: #E03C31;
}

.bg-brand {
  background-color: #E03C31;
}

.text-success {
  color: #E2E3E3;
}

.bg-success {
  background-color: #E2E3E3;
}

.text-info {
  color: #E03C31;
}

.bg-info {
  background-color: #E03C31;
}

.text-warning {
  color: #E03C31;
}

.bg-warning {
  background-color: #E03C31;
}

.text-danger {
  color: #E03C31;
}

.bg-danger {
  background-color: #E03C31;
}

.text-black {
  color: #000;
}

.bg-black {
  background-color: #000;
}

@font-face {
  font-family: "Maison Neue Extended Demi";
  src: url("./fonts/MaisonNeueExtended-Demi.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Maison Neue Demi";
  src: url("./fonts/MaisonNeue-Demi.woff2") format("woff2"), url("./fonts/MaisonNeue-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Maison Neue";
  src: url("./fonts/MaisonNeue-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Maison Neue";
  src: url("./fonts/MaisonNeue-Bold.woff2") format("woff2"), url("./fonts/MaisonNeue-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body:not(.mce-content-body) {
  color: #707372;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-size-adjust: none;
  font-size: 20;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 1400px) {
  body:not(.mce-content-body) {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  body:not(.mce-content-body) {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
body:not(.mce-content-body).menu-open, body:not(.mce-content-body).modal-open, body:not(.mce-content-body).modal-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  :where(body:not(.mce-content-body)) p {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
ul,
ol,
dl {
  margin-bottom: 30px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
hr:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

/**
 * Basic styles for links
 */
a {
  color: #707372;
  text-decoration: none;
}
a:hover {
  color: #707372;
  text-decoration: underline;
}

a[href^=tel] {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  font-style: inherit;
}

/**
 * Rules
 */
hr {
  height: 1px;
  background-color: #707372;
}

:root {
  --section--vertical-padding: 50px;
}
@media screen and (min-width: 768px) {
  :root {
    --section--vertical-padding: 100px;
  }
}

.grid {
  display: grid;
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .grid {
    grid-gap: 15px;
  }
}
@media only screen and (min-width: 1025px) {
  .grid.grid--lg-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--lg-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--lg-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--lg-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--lg-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--lg-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .grid.grid--md-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--md-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--md-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--md-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--md-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--md-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 481px) and (max-width:768px) {
  .grid.grid--sm-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--sm-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--sm-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--sm-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--sm-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--sm-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 480px) {
  .grid.grid--xs-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--xs-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--xs-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--xs-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--xs-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--xs-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 1270px) {
  .grid.grid--nav-1x {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid.grid--nav-2x {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid--nav-3x {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid--nav-4x {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid--nav-5x {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid--nav-6x {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/**
 * Responsive images
 */
.is-fluid {
  display: block;
  width: 100%;
  height: auto;
}

.img--grayscale {
  filter: grayscale(100%);
  transition: filter 500ms ease;
}

.img--color-on-hover:hover .img--grayscale {
  filter: grayscale(0%);
}

.rounded-md {
  border-radius: 30px;
}

*:focus {
  outline: 0;
}

input,
select,
textarea {
  background-color: #F1F1F1;
  border: solid 1px #707372;
  border-radius: 0;
  color: #707372;
  line-height: 45px;
  height: 45px;
  padding: 0 15px;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  background: transparent;
  border: 0;
  line-height: normal;
  height: auto;
  width: auto;
}

input[type=file] {
  line-height: normal;
  height: auto;
  padding: 7.5px 15px;
}

input[type=submit] {
  border-radius: 0;
}

input[disabled] {
  cursor: not-allowed;
}

select {
  line-height: normal;
  padding: 0;
  padding-left: 15px;
}

textarea {
  min-height: 120px;
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

sup {
  font-size: 12px;
  font-size: 0.75rem;
}

/**
 * Form utility classes
 */
.form--inline .form__group {
  display: inline-block;
}

.form .form__group {
  display: block;
  margin-bottom: 30px;
}
.form .form__group .form__label {
  display: block;
  margin-bottom: 15px;
}

.form--black {
  background-color: #000000;
  color: #ffffff;
  border-radius: 30px;
  padding: 40px 30px;
}
.form--black.contact-modal__form {
  padding: 0 !important;
}
@media screen and (min-width: 1024px) {
  .form--black {
    padding: 70px 30px;
  }
}
@media screen and (min-width: 1400px) {
  .form--black {
    padding: 70px 30px;
  }
}
.form--black h1,
.form--black h2,
.form--black h3,
.form--black h4,
.form--black h5,
.form--black h6,
.form--black div,
.form--black span,
.form--black p,
.form--black a,
.form--black label {
  color: #ffffff;
}
.form--black .gform_wrapper .gform_heading,
.form--black .gform_wrapper .gform_title {
  display: none;
}
.form--black .gform_wrapper.gform-theme, .form--black .gform_wrapper.gform-theme *,
.form--black .gform_wrapper .gform_body,
.form--black .gform_wrapper .gform_body * {
  color: #ffffff;
}
.form--black .gform_wrapper .ginput_container_select select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.form--black .gform_wrapper .ginput_container input:not([type=file]) {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #797979 !important;
  box-shadow: none;
  border-radius: 0;
  padding-left: 0;
  color: #ffffff !important;
  font-size: 16px;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.14em;
  background-color: rgba(0, 0, 0, 0);
  outline: none;
}
.form--black .gform_wrapper .ginput_container input:not([type=file])::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.form--black .gform_wrapper .ginput_container input[type=checkbox] {
  border: 1px solid #ffffff !important;
  border-radius: 10px;
}
.form--black .gform_wrapper .ginput_container input[type=checkbox]:before {
  color: #E03C31 !important;
}
.form--black .gform_wrapper textarea {
  color: #000 !important;
  background-color: #fff !important;
  border: 1px solid #797979 !important;
}
.form--black .gform_wrapper textarea::placeholder {
  color: rgba(0, 0, 0, 0.55) !important;
}
.form--black .gform_wrapper .gform-field-label {
  text-transform: uppercase;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #ffffff !important;
}
.form--black .gform_wrapper .gform-field-label.gfield_consent_label {
  text-transform: none;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff !important;
}
.form--black .gform_wrapper .gfield_description,
.form--black .gform_wrapper .ginput_counter,
.form--black .gform_wrapper .gform_fileupload_rules,
.form--black .gform_wrapper .gchoice label,
.form--black .gform_wrapper .gchoice legend {
  color: #ffffff !important;
}
.form--black .gform_wrapper input[type=submit].gform_button,
.form--black .gform_wrapper input[type=submit].gform_button.button, .form--black .gform_wrapper.gform-theme .gform_button.button {
  margin-top: 0 !important;
  background-color: #ffffff !important;
  border-radius: 30px !important;
  color: #000000 !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.14em !important;
  outline: none;
}
@media screen and (min-width: 768px) {
  .form--black .gform_wrapper input[type=submit].gform_button,
  .form--black .gform_wrapper input[type=submit].gform_button.button, .form--black .gform_wrapper.gform-theme .gform_button.button {
    margin-top: 30px !important;
  }
}
.form--black .gform_wrapper input[type=submit].gform_button:hover,
.form--black .gform_wrapper input[type=submit].gform_button.button:hover, .form--black .gform_wrapper.gform-theme .gform_button.button:hover {
  background: #E03C31 !important;
}
.form--black .smallprint {
  margin-top: 20px;
}
.form--black .gfield_required,
.form--black .gfield_required_text {
  display: none !important;
}

.gform_body label {
  letter-spacing: 0.14em !important;
}
.gform_body input:not([type=file]) {
  color: #000 !important;
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
.gform_body input:not([type=file])::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body input:not([type=file])::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body input:not([type=file]):-moz-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body input:not([type=file]):-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body textarea {
  border: none !important;
  background-color: #F1F1F1 !important;
  border-radius: 32px !important;
  font-size: 16px !important;
  padding: 30px !important;
  outline: none !important;
  box-shadow: none !important;
  resize: none !important;
}
.gform_body textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.gform_body .gform_fileupload_rules {
  display: none;
}
.gform_body .ginput_container_select select {
  appearance: none;
  background-color: transparent;
  color: white;
  border: 0;
  padding: 0 12px;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 2.24px;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  background-size: 25px;
  background-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12.5" cy="12.5" r="12.5" transform="rotate(-90 12.5 12.5)" fill="white"/><path d="M8 10L12.5 15L17 10" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
  outline: none !important;
  border: 1px #797979 solid;
  border-radius: 10px;
}
.gform_body .ginput_container_select select:focus, .gform_body .ginput_container_select select:active, .gform_body .ginput_container_select select:hover {
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12.5" cy="12.5" r="12.5" transform="rotate(-90 12.5 12.5)" fill="%23E03C31"/><path d="M8 10L12.5 15L17 10" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
}
.gform_body .gform-field-label.gfield_consent_label {
  letter-spacing: 0 !important;
}
.gform_body .gform_fileupload_rules {
  display: none !important;
}
.gform_body .gfield--type-consent + .gfield--type-consent {
  margin-top: -15px;
}

.gform_wrapper.gform-theme .gform_body .ginput_container_fileupload input[type=file] {
  all: revert !important;
  background-color: transparent !important;
  color: #ffffff !important;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
}
.gform_wrapper.gform-theme .gform_body .ginput_container_fileupload input[type=file]::file-selector-button {
  all: revert !important;
  appearance: none !important;
  background-color: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  margin-inline-end: 12px !important;
  padding: 2px 8px !important;
}

.gform_wrapper.gform-theme .gform_body input::placeholder,
.gform_wrapper.gform-theme .gform_body textarea::placeholder {
  color: #707372;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.3;
}

ul,
ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

.list--unstyled {
  margin-left: 0;
  list-style: none;
}

.list--social {
  display: flex;
  justify-content: space-between;
  margin-left: 0;
}
.list--social img {
  width: 32px;
  height: 32px;
}

ul[role=list] li {
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

strong,
.strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  color: #000;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

em {
  font-style: italic;
}

small {
  font-size: 0.75em;
}

hr {
  background-color: #000;
}

.uppercase {
  text-transform: uppercase;
}

.font-alt {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.font-third {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.d1,
.h1, .h2, .h3, .single-projects .section--text_and_media h5, .single-projects .section--content_and_gallery .content-wrapper h5, .h4, .h5,
.sh1,
.wysiwyg h1, .sh2, .wysiwyg h2, .sh3, .wysiwyg h3, .sh4, .wysiwyg h4 {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.font-medium {
  font-weight: 600;
}

.caption-md {
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  leading-trim: cap-height;
  line-height: 1.2;
  letter-spacing: 0.12em;
  vertical-align: middle;
  text-transform: uppercase;
  color: #000;
}

.d1, .h1, .h2, .h3, .single-projects .section--text_and_media h5, .single-projects .section--content_and_gallery .content-wrapper h5, .h4, .h5, .b1 {
  color: #000;
}

.d1 {
  font-size: 64px;
  font-size: 4rem;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 1400px) {
  .d1 {
    font-size: 48px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .d1 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

.d2 {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-size: 1.5rem;
  color: #000;
  line-height: 130%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .d2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.h1, h1, .sh1, .wysiwyg h1 {
  font-size: 40px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 1400px) {
  .h1, h1, .sh1, .wysiwyg h1 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.h2, h2, .sh2, .wysiwyg h2 {
  font-size: 34px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .h2, h2, .sh2, .wysiwyg h2 {
    font-size: 18px;
    letter-spacing: 0.14em;
  }
}
@media screen and (max-width: 1400px) {
  .h2, h2, .sh2, .wysiwyg h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.h3, .single-projects .section--text_and_media h5, .single-projects .section--content_and_gallery .content-wrapper h5, h3, .sh3, .wysiwyg h3 {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1400px) {
  .h3, .single-projects .section--text_and_media h5, .single-projects .section--content_and_gallery .content-wrapper h5, h3, .sh3, .wysiwyg h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.h4, h4, .sh4, .wysiwyg h4 {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.3em !important;
}
@media screen and (max-width: 1400px) {
  .h4, h4, .sh4, .wysiwyg h4 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.h5, h5, .sh5, .wysiwyg h5 {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.14em;
  line-height: 1.2em;
}
@media screen and (max-width: 1400px) {
  .h5, h5, .sh5, .wysiwyg h5 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.h6, h6, .sh6 {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}

body {
  letter-spacing: 0.01em;
}

.b1, .b1 p {
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .b1, .b1 p {
    font-size: 19px;
    line-height: 24px;
  }
}

.b2, .b2 p {
  font-size: 30px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .b2, .b2 p {
    font-size: 30px;
    letter-spacing: 0.01em;
  }
}

.b3, .b3 p {
  font-size: 20px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .b3, .b3 p {
    font-size: 20px;
    letter-spacing: 0.01em;
  }
}

.b4, .b4 p {
  font-size: 16px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .b4, .b4 p {
    font-size: 14px;
  }
}

.b5, .b5 p {
  font-size: 13px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .b5, .b5 p {
    font-size: 13px;
    letter-spacing: 0.01em;
  }
}

.statement {
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.statement p, .statement a {
  letter-spacing: 0.3px !important;
}

.text-lg {
  line-height: 1.35em;
}
@media screen and (max-width: 768px) {
  .text-lg {
    font-size: 20px !important;
  }
}

.curved-edges {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.main {
  padding-top: 55px;
}
@media screen and (min-width: 1270px) {
  .main {
    padding-top: 90px;
  }
}
.home .main {
  padding-top: 0;
}

body.no-padding #smooth-wrapper {
  padding-top: 0px;
}
@media screen and (min-width: 1270px) {
  body.no-padding #smooth-wrapper {
    padding-top: 0px;
  }
}

.scrolled-away-from-top .header {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
}

.header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 1270px) {
  .header-wrapper {
    padding: 15px 0 0 0;
  }
}

.header {
  display: flex;
  align-items: center;
  padding: 12.5px 0;
  background-color: #000000;
  border-radius: 34px;
  z-index: 10;
  position: relative;
  margin: 0 15px;
  transition: 0.5s;
  min-height: 55px;
}
.header > .container {
  width: 100%;
}
@media screen and (max-width: 1270px) {
  .header {
    margin: 0 5px;
    padding: 8px 16px;
    min-height: inherit;
  }
  .header > .container {
    padding: 0;
  }
}
.scrolled-away-from-top .header {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
}
@media screen and (min-width: 1880px) {
  .header {
    margin: 0 auto;
    width: 1860px;
  }
}
.header a {
  font-size: 14px;
}
@media screen and (max-width: 1270px) {
  .header__navigation {
    display: none;
  }
}
.header__mobile-navigation {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 30px;
}
.header__mobile-navigation .header__mobile-navigation__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.header__mobile-navigation .header__mobile-navigation__content nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.header__mobile-navigation__bottom {
  margin: 0 -12px;
}
.header__mobile-navigation__socials {
  border-bottom: 1px solid #707372;
  display: flex;
  justify-content: space-around;
  margin-bottom: 12px;
  padding: 0 18px 14px;
}
.header__mobile-navigation__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 24px;
}
.header__mobile-navigation__socials img {
  display: block;
  width: auto;
  max-width: 24px;
  height: auto;
  max-height: 24px;
}
.header__mobile-navigation__ctas {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 29px;
}
.header__mobile-navigation__ctas .btn {
  width: 100%;
  padding: 8px 12px;
  font-size: 11px;
  line-height: 1.1;
}
.header__mobile-navigation__footer {
  color: #000000;
  font-size: 10px;
  line-height: 1.35;
}
.header__mobile-navigation__footer a {
  color: inherit;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: inherit;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header__mobile-navigation__footer p {
  margin: 0;
  font-size: 10px !important;
}
.header__toggle {
  display: none;
}
@media screen and (max-width: 1270px) {
  .header__toggle {
    display: block;
  }
}
@media screen and (max-width: 1270px) {
  .header__links {
    display: none;
  }
}
.header__logo {
  text-align: center;
  display: block;
  max-width: 120px;
  margin: 0 auto;
  line-height: 1;
}
.header__logo h1 {
  line-height: 1;
}
.header__contact-search-language-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1270px) {
  .header__contact-search-language-wrapper {
    gap: 50px;
  }
}
.header__contact-search-language-wrapper__contact a {
  color: #ffffff;
  text-transform: uppercase;
  margin-right: 50px;
  transition: color 250ms;
}
.header__contact-search-language-wrapper__contact a:hover {
  color: #E03C31;
  text-decoration: none;
}
.header__contact-search-language-wrapper__search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.header__contact-search-language-wrapper__search img {
  width: 14px;
  min-width: 14px;
  filter: invert(1);
}
@media screen and (min-width: 1270px) {
  .header__contact-search-language-wrapper__search button {
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0;
  }
  .header__contact-search-language-wrapper__search img {
    width: 18px;
    min-width: 18px;
    filter: none;
  }
}
.header__search-container form {
  display: flex;
  width: 300px;
  margin: 0 auto;
}
.header__search-container form label {
  display: none;
}
.header__search-container form input[type=search] {
  background-color: #000000;
  border: none;
  color: #FFFFFF;
  height: 25px;
  line-height: 17px;
  text-align: center;
}
.header__search-container form button {
  display: flex;
  align-items: center;
  width: 18px;
}
.header input::placeholder {
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
}
.header input[type=search i]::-webkit-search-cancel-button {
  display: none;
}
.header__search__close {
  position: absolute;
  font-size: 30px !important;
  transform: translateY(-50%) rotate(45deg);
  color: #ffffff;
  top: 28px;
}
.header__search__close:hover {
  text-decoration: none;
}
.header__contact-search-language-wrapper__language ul li:first-child {
  position: relative;
  padding-right: 5px;
}
.header__contact-search-language-wrapper__language ul li:first-child:after {
  content: "/";
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  right: -5px;
  top: -4px;
}
.header__contact-search-language-wrapper__language a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0;
  transition: color 0.25s;
}
.header__contact-search-language-wrapper__language a:hover {
  color: #E03C31 !important;
  text-decoration: none;
}
.header__contact-search-language-wrapper__language a.active {
  color: #E03C31;
}
.header__contact-search-language-wrapper__language ul.custom-wpml-switcher--desktop {
  display: none;
}
@media screen and (min-width: 1270px) {
  .header__contact-search-language-wrapper__language ul.custom-wpml-switcher--desktop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
}
.header__contact-search-language-wrapper__language ul.custom-wpml-switcher--mobile {
  display: flex;
  gap: 5px;
  margin-right: -5px !important;
}
@media screen and (min-width: 1270px) {
  .header__contact-search-language-wrapper__language ul.custom-wpml-switcher--mobile {
    display: none;
  }
}
.header__contact-search-language-wrapper__language ul.custom-wpml-switcher--mobile li {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 13px;
}
.header__contact-search-language-wrapper__language ul.custom-wpml-switcher--mobile li:first-child {
  padding-right: 0;
}
.header__contact-search-language-wrapper__language ul.custom-wpml-switcher--mobile li:first-child:after {
  content: none;
}
.header__contact-search-language-wrapper__language ul.custom-wpml-switcher--mobile li a {
  color: #000000;
  font-size: 10px;
  white-space: nowrap;
  letter-spacing: 0;
}
.header__contact-search-language-wrapper__language ul.custom-wpml-switcher--mobile li a.active {
  color: #E03C31;
}
.header__contact-search-language-wrapper__language .wpml-ls-legacy-list-horizontal {
  display: flex;
  padding: 0;
  border: none;
}
.header .text-right {
  text-align: right;
}
.header .row-search {
  display: none;
}
.header .fadeIn.fadeFlex[style*="display: block"] {
  display: flex !important;
}
.header .toggle {
  height: 24px;
}
.header .toggle button {
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  width: 24px;
  height: 24px;
  margin-left: -5px;
}
.header .toggle button[data-type=close] {
  display: none;
}
.header .toggle button img {
  min-width: 12px;
  width: 12px;
}

body.mobile-menu-active {
  overflow-y: hidden;
  overflow-x: hidden;
}
body.mobile-menu-active .mobile-nav {
  display: flex;
}

.footer--desktop {
  max-width: 1920px;
  width: 100%;
  background-color: #000000;
  padding: 60px 0 90px 0;
  margin: 0 auto;
}
.footer--desktop__get-in-touch p {
  color: #fff;
}
.footer--desktop__get-in-touch__intro p {
  margin-bottom: 0px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  font-size: 20px;
  font-size: 1.25rem;
}
.footer--desktop__get-in-touch__intro p:last-child {
  margin-bottom: 45px;
}
.footer--desktop__navigation {
  display: flex;
  text-align: right;
  justify-content: flex-end;
}
.footer--desktop__navigation .nav--footer {
  width: 580px;
  margin-bottom: 115px;
}
.footer--desktop__navigation .nav--footer li a {
  color: #fff;
  letter-spacing: 0.14em;
}
.footer--desktop__newsletter-and-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer--desktop__newsletter-and-social__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer--desktop__newsletter-and-social .footer-social-link {
  align-items: center;
  background: #FFFFFF;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
  transition: background 250ms;
}
.footer--desktop__newsletter-and-social .footer-social-link img {
  transition: filter 250ms;
}
.footer--desktop__newsletter-and-social .footer-social-link.footer-social-link--rednote img {
  max-width: 25px;
}
.footer--desktop__newsletter-and-social .footer-social-link:hover {
  background-color: #E03C31;
}
.footer--desktop__newsletter-and-social .footer-social-link__icon {
  display: block;
  height: auto;
  max-height: 24px;
  max-width: 24px;
  width: auto;
}
.footer--desktop__newsletter-and-social .footer-social-link--linkedin .footer-social-link__icon {
  max-height: 20px;
  max-width: 20px;
}
.footer--desktop__newsletter-and-social .footer-social-link--wechat .footer-social-link__icon {
  max-width: 22px;
}
.footer--desktop__newsletter-and-social .footer-social-link--rednote .footer-social-link__icon {
  max-width: 19px;
}
.footer--desktop__newsletter-and-social__newsletter {
  margin-bottom: 0;
}
.footer--desktop hr {
  border-top: 1px solid #FFFFFF;
  height: 1px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 35px;
}
.footer--desktop__copyright {
  color: #fff;
  text-transform: none;
  font-weight: normal;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
}
.footer--desktop__policies {
  text-align: right;
}
.footer--desktop__policies a {
  color: #fff;
  margin-right: 45px;
}
.footer--desktop__policies a:last-child {
  margin-right: 0;
}
.footer--desktop .btn {
  border-radius: 25px;
  padding: 8px 17px;
}

.footer-newsletter {
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
}
.footer-newsletter .h3, .footer-newsletter .single-projects .section--text_and_media h5, .single-projects .section--text_and_media .footer-newsletter h5, .footer-newsletter .single-projects .section--content_and_gallery .content-wrapper h5, .single-projects .section--content_and_gallery .content-wrapper .footer-newsletter h5 {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.footer-newsletter__shell {
  align-items: center;
  border: 1px solid #FFFFFF;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  min-height: 40px;
  padding: 5px 16px;
  transition: background-color 250ms, border-color 250ms, color 250ms;
  width: 369px;
}
.footer-newsletter__input {
  background: transparent;
  border: 0;
  color: #fff;
  flex: 1 1 auto;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0;
  min-width: 0;
  padding: 0;
  font-size: 11.5px;
  font-size: 0.71875rem;
  font-weight: 600;
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.footer-newsletter__input::placeholder {
  color: #666;
  opacity: 1;
}
.footer-newsletter__submit, .footer-newsletter__success, .footer-newsletter__message {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11.5px;
  font-size: 0.71875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-newsletter__submit {
  background: transparent;
  border: 0;
  color: #E03C31;
  flex: 0 0 auto;
  line-height: 1;
  padding: 0;
  text-decoration: underline;
}
.footer-newsletter__submit:hover {
  cursor: pointer;
}
.footer-newsletter__submit[disabled] {
  background: transparent;
  color: #E03C31;
  cursor: wait;
}
.footer-newsletter__success {
  color: #FFFFFF;
  display: none;
  line-height: 1;
  width: 100%;
}
.footer-newsletter__message {
  color: #FFFFFF;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.08em;
  margin: 8px 0 0;
  min-height: 1em;
  text-align: center;
  text-transform: none;
}
.footer-newsletter.is-success .footer-newsletter__shell {
  justify-content: center;
}
.footer-newsletter.is-success .footer-newsletter__input,
.footer-newsletter.is-success .footer-newsletter__submit {
  display: none;
}
.footer-newsletter.is-success .footer-newsletter__success {
  display: block;
}
.footer--mobile {
  width: 100%;
  background-color: #000000;
  padding: 40px 0 25px 0;
  margin: 0 auto;
}
.footer--mobile__get-in-touch__intro p {
  color: #FFFFFF;
  margin-bottom: 5px;
}
.footer--mobile__get-in-touch__intro p:last-child {
  margin-bottom: 25px;
}
.footer--mobile__get-in-touch-and-social {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 10px;
}
.footer--mobile__get-in-touch-and-social__get-in-touch {
  flex: 1;
}
.footer--mobile__get-in-touch-and-social__get-in-touch .btn {
  display: flex;
  width: 100%;
  justify-content: center;
}
.footer--mobile__get-in-touch-and-social__social {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer--mobile__get-in-touch-and-social__social .footer-social-link {
  align-items: center;
  background: #FFFFFF;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  padding: 0;
  width: 30px;
}
.footer--mobile__get-in-touch-and-social__social .footer-social-link__icon {
  display: block;
  height: auto;
  max-height: 18px;
  max-width: 18px;
  width: auto;
}
.footer--mobile__get-in-touch-and-social__social .footer-social-link--linkedin .footer-social-link__icon {
  max-height: 15px;
  max-width: 15px;
}
.footer--mobile__get-in-touch-and-social__social .footer-social-link--wechat .footer-social-link__icon {
  max-width: 16.5px;
}
.footer--mobile__get-in-touch-and-social__social .footer-social-link--rednote .footer-social-link__icon {
  max-width: 18.25px;
}
.footer--mobile__navigation {
  margin-bottom: 0px;
}
.footer--mobile__navigation .footer__nav-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
}
.footer--mobile__navigation ul {
  margin-left: 0;
}
.footer--mobile__navigation ul li {
  list-style: none;
  margin-bottom: 10px;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.footer--mobile__navigation ul li:last-child {
  margin-bottom: 0;
}
.footer--mobile__navigation ul li a {
  color: #FFFFFF;
}
.footer--mobile__navigation .nav--footer {
  gap: 0;
}
.footer--mobile__navigation .nav--footer.nav--left {
  flex-wrap: wrap;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .footer--mobile__navigation .nav--footer.nav--left {
    margin-right: 75px;
  }
}
.footer--mobile__navigation .nav--footer.nav--left li {
  width: 100%;
}
.footer--mobile__navigation .nav--footer.nav--right {
  flex-wrap: wrap;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .footer--mobile__navigation .nav--footer.nav--right {
    margin-right: 75px;
  }
}
.footer--mobile__navigation .nav--footer.nav--right li {
  width: 100%;
}
.footer--mobile__policies {
  display: flex;
  gap: 0;
  text-align: left;
}
.footer--mobile__policies > * {
  width: 50%;
}
.footer--mobile__policies a {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFFFFF;
  font-size: 10px;
  font-size: 0.625rem;
}
.footer--mobile__newsletter {
  margin-bottom: 25px;
}
.footer--mobile__copyright {
  color: #FFFFFF;
  text-align: left;
  font-size: 10px !important;
  text-transform: none;
  font-weight: normal;
  margin-top: 30px;
}
.footer--mobile hr {
  border-top: 1px solid #FFFFFF;
  height: 1px;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.footer-social-link-wrapper,
.wechat-qr-wrapper {
  display: inline-flex;
  position: relative;
}

.footer-wechat-qr,
.wechat-qr {
  background: #FFFFFF;
  border-radius: 6px;
  bottom: calc(100% + 12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  left: 50%;
  padding: 8px;
  position: absolute;
  transform: translateX(-50%);
  width: 180px;
  z-index: 10;
}
.footer-wechat-qr::after,
.wechat-qr::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #FFFFFF;
  content: "";
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
}
.footer-wechat-qr[hidden],
.wechat-qr[hidden] {
  display: none;
}
.footer-wechat-qr img,
.wechat-qr img {
  display: block;
  height: auto;
  width: 100%;
}

.footer--mobile .footer-wechat-qr,
.footer--mobile .wechat-qr {
  width: 150px;
}

.footer--desktop {
  display: none;
}
@media screen and (min-width: 1270px) {
  .footer--desktop {
    display: block;
  }
}

.footer--mobile {
  display: block;
}
@media screen and (min-width: 1270px) {
  .footer--mobile {
    display: none;
  }
}
.footer--mobile .footer-newsletter__shell {
  min-height: 38px;
  max-width: 100%;
  padding-left: 14px;
  padding-right: 10px;
}
.footer--mobile .footer-newsletter__submit, .footer--mobile .footer-newsletter__success, .footer--mobile .footer-newsletter__message, .footer--mobile .footer-newsletter__input {
  font-size: 11.5px;
  font-size: 0.71875rem;
}

.page-wipe-in {
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  z-index: 9;
  transition: height 500ms;
}
.page-wipe-in.leaving {
  top: 0;
  bottom: unset;
  height: 0%;
}
.page-wipe-in.ready {
  bottom: 0;
  height: 0;
}
.page-wipe-in.entering {
  height: 100vh;
}

.page-wipe-out {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 9;
  transform: translateY(0%);
  transition: transform 0.5s;
}
.page-wipe-out.default {
  transform: translateY(100%);
}

.otgs-development-site-front-end {
  display: none;
}

.contact-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  background-color: #FFFFFF;
  width: calc(100% - 32px);
  max-width: 960px;
  border-radius: 30px;
  padding: 32px 20px;
  display: none;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  transform: translate(-50%, -50%);
}
.contact-modal::-webkit-scrollbar {
  display: none;
}
@supports (height: 100dvh) {
  .contact-modal {
    top: 50dvh;
    width: calc(100% - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    max-height: calc(100dvh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }
}
.contact-modal > .container {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .contact-modal {
    width: calc(100% - 64px);
    padding: 40px 32px;
  }
}
@media screen and (min-width: 1400px) {
  .contact-modal {
    padding: 56px 56px 48px;
  }
}
@media (min-width: 1000px) {
  .contact-modal .gform-theme--foundation .gform_fields {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 30px !important;
  }
}
.contact-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .contact-modal__header {
    margin-bottom: 50px;
  }
}
.contact-modal__title {
  min-width: 0;
}
.contact-modal__close {
  flex: 0 0 auto;
  display: block;
  width: 24px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.contact-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-modal__introduction {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact-modal__introduction {
    display: inherit;
  }
}
@media screen and (min-width: 768px) {
  .contact-modal__wrapper {
    display: flex;
  }
}
.contact-modal .text-right {
  text-align: right;
}
.contact-modal .gform_wrapper.gform-theme,
.contact-modal .gform-theme--foundation .gform-body,
.contact-modal .gform-theme--foundation .gform_fields,
.contact-modal .gform-theme--foundation .gfield {
  max-width: 100%;
  min-width: 0;
}
.contact-modal--black {
  background-color: #000000;
  color: #ffffff;
}
.contact-modal--black .contact-modal__title,
.contact-modal--black .contact-modal__title h3,
.contact-modal--black .text-right,
.contact-modal--black .text-right button {
  color: #ffffff;
}
.contact-modal--black .contact-modal__close img {
  filter: invert(1);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 6;
}

.gform_wrapper.gform-theme .gform_heading {
  display: none;
}
.gform_wrapper.gform-theme .ginput_container input {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #000000;
  box-shadow: none;
  border-radius: 0;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  letter-spacing: 0.14em;
  outline: none;
}
.gform_wrapper.gform-theme .ginput_container input[type=checkbox] {
  border: 1px solid #000000;
  border-radius: 10px;
}
.gform_wrapper.gform-theme .ginput_container input[type=checkbox]:before {
  color: #E03C31 !important;
}
.gform_wrapper.gform-theme .gform-field-label {
  text-transform: uppercase;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
.gform_wrapper.gform-theme .gform-field-label.gfield_consent_label {
  text-transform: none;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.gform_wrapper.gform-theme .gform_button.button {
  margin-top: 0px !important;
  background-color: #000000 !important;
  border-radius: 30px !important;
  color: #FFFFFF !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.14em !important;
  transition: background 250ms, color 250ms !important;
}
@media screen and (min-width: 768px) {
  .gform_wrapper.gform-theme .gform_button.button {
    margin-top: 30px !important;
  }
}
.gform_wrapper.gform-theme .gform_button.button:hover {
  background-color: #E03C31 !important;
  color: #000 !important;
}

body.modal-open .modal-overlay,
body.modal-active .modal-overlay {
  display: block;
}

.section-padding-top {
  padding-top: 120px;
}

.section-padding-bottom {
  padding-bottom: 120px;
}

.section--spaced {
  padding: var(--section--vertical-padding) 0;
}
.section--spaced + .section--spaced {
  padding-top: 0;
}

.section {
  position: relative;
}
.section.section--spaced + .section--spaced {
  padding-top: 0;
}
.section.section--spaced + .section--bg-light {
  margin-top: 0;
}
.section.section--bg-light {
  padding-top: var(--section--vertical-padding);
  margin: var(--section--vertical-padding) 0;
}
.section.section--bg-light:last-child {
  margin-bottom: 0;
}
.section.section--bg-light > div {
  position: relative;
  z-index: 1;
}
.section.section--bg-light:before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #F1F1F1;
  border-radius: 30px;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1920px;
}

.wysiwyg p:last-of-type {
  margin-bottom: 0;
}
.wysiwyg blockquote {
  padding-left: 20px;
  padding-right: 20px;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}
.wysiwyg blockquote:before {
  content: "“";
  font-size: 40px;
  position: absolute;
  top: -5px;
  left: -10px;
}
.wysiwyg blockquote:after {
  content: "”";
  font-size: 40px;
  position: absolute;
  top: -5px;
  right: 10px;
}
.wysiwyg a {
  color: #000000;
}
.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  width: auto;
  transition: all 0.5s;
  text-transform: uppercase;
  background-color: #000;
  color: #fff;
  border-radius: 2em;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11.5px;
  font-size: 0.71875rem;
  font-weight: 400;
  padding: 8px 12px;
  letter-spacing: 0.1em;
  border: 1px #000 solid;
  text-decoration: none !important;
}
.btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.btn:hover {
  text-decoration: none;
  background-color: #E03C31;
  border-color: #E03C31;
  color: #000;
}
.btn.is-disabled, .btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn--white {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.btn--ghost,
.btn--white--outline {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 30px;
  padding: 10px 13px;
  line-height: 1;
}
.btn--ghost:hover,
.btn--white--outline:hover {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.btn--black {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 30px;
  padding: 10px 13px;
  line-height: 1;
}
.btn--black:hover {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
}

.btn--inverse {
  background-color: #F1F1F1;
  color: #E03C31;
  border: 1px solid #E03C31;
}
.btn--inverse:hover {
  background-color: #E03C31;
  color: #F1F1F1;
  border-color: transparent;
}

.btn--link {
  display: inline-flex;
  position: relative;
  gap: 15px;
  align-items: center;
  padding: 0;
  background-color: transparent;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #000;
  border: none;
}
.btn--link.btn--link--large {
  font-size: 16px;
  font-size: 1rem;
}
.btn--link:before, .btn--link:after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
}
.btn--link:before {
  background-color: #000;
  border-radius: 100%;
  transition: background 250ms;
}
.btn--link:after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.6 0.59961L6 6.12519L0.845455 11.3996' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  left: 1px;
  top: 0;
}
.btn--link:hover {
  color: #E03C31;
  background-color: transparent;
}
.btn--link:hover:before {
  background-color: #E03C31;
}
.btn--link:hover:after {
  filter: invert(1);
}
.btn--link.btn--link--up:after {
  transform: rotate(-90deg);
}
.btn--link.btn--link--bk:after {
  transform: rotate(-180deg);
  left: unset;
}
.btn--link.btn--link--large:before, .btn--link.btn--link--large:after {
  width: 38px;
  height: 38px;
}
@media screen and (max-width: 768px) {
  .btn--link.btn--link--large {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .btn--link.btn--link--large:before, .btn--link.btn--link--large:after {
    width: 26px;
    height: 26px;
  }
}
.btn--link.btn--link--small {
  font-size: 13px;
  font-size: 0.8125rem;
}
.btn--link.btn--link--inverse:before {
  background-color: #fff;
}
.btn--link.btn--link--inverse:after {
  filter: invert(1);
}
.btn--link.btn--link--inverse:hover:before {
  background-color: #E03C31;
}
@media screen and (max-width: 768px) {
  .btn--link {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .btn--link:before, .btn--link:after {
    width: 26px;
    height: 26px;
  }
}

.js-back-to-top svg,
.js-see-more svg {
  margin-bottom: 15px;
}
.js-back-to-top svg circle,
.js-see-more svg circle {
  transition: fill 250ms;
}
.js-back-to-top button,
.js-see-more button {
  transition: color 250ms;
}
.js-back-to-top:hover svg path,
.js-see-more:hover svg path {
  stroke: #000;
}
.js-back-to-top:hover svg circle,
.js-see-more:hover svg circle {
  fill: #E03C31;
}

.js-see-more svg {
  margin-top: 15px;
  transform: rotate(180deg);
}

.btn-goback {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  letter-spacing: 0.1em;
  transition: color 250ms;
}
.btn-goback svg {
  transform: rotate(-90deg);
  flex-shrink: 0;
}
.btn-goback svg circle {
  transition: fill 250ms;
}
.btn-goback svg path {
  transition: stroke 250ms;
}
.btn-goback:hover {
  text-decoration: none;
  color: #E03C31;
}
.btn-goback:hover svg circle {
  fill: #E03C31;
}
.btn-goback:hover svg path {
  stroke: #000000;
}

.js-go-back:hover {
  text-decoration: none;
}

/**
 * Hamburger menu
 */
.nav-burger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  transition: all 250ms ease-in-out;
}
.nav-burger .nav-burger__line {
  display: block;
  width: 10px;
  height: 1px;
  background-color: #000;
  transition: all 250ms ease-in-out;
}
.nav-burger.open .nav-burger__line:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.nav-burger.open .nav-burger__line:nth-child(2) {
  opacity: 0;
}
.nav-burger.open .nav-burger__line:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

/**
 * Navs
 */
.nav {
  display: flex;
  list-style: none;
  margin: 0;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.nav > li {
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav > li:last-child {
  margin-right: 0;
}
.nav > li > a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}
.nav > li > a:hover {
  color: #E03C31;
  text-decoration: none;
}
.nav > li.current-menu-item a, .nav > li.current_page_parent a, .nav > li.current-page-ancestor a {
  color: #E03C31;
}
.nav > li.visible-nav {
  display: none;
}
@media screen and (max-width: 1270px) {
  .nav > li.visible-nav {
    display: inline-block;
  }
}

.nav--header {
  display: flex;
  line-height: 0;
  gap: 50px;
}
.nav--header li {
  line-height: 1em;
}
.nav--header li a {
  color: #ffffff;
  text-transform: uppercase;
  transition: color 250ms;
}
@media screen and (max-width: 1270px) {
  .nav--header {
    flex-direction: column;
    gap: 15px;
    padding-top: 84px;
    width: 100%;
  }
  .nav--header li {
    padding: 10px 0;
    border-bottom: 1px #000 solid;
  }
  .nav--header li a {
    font-size: 22px;
    font-size: 1.375rem;
    color: #000;
  }
}

.nav--footer {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  font-size: 11.5px;
  font-size: 0.71875rem;
}

.nav--legal li {
  font-size: 10px;
  font-size: 0.625rem;
}
.nav--legal li a {
  color: #000;
  transition: color 250ms;
}
.nav--legal li a:hover {
  color: #E03C31 !important;
}
.footer .nav--legal {
  justify-content: flex-end;
  gap: 40px;
}
.footer .nav--legal li {
  font-size: 11.5px;
  font-size: 0.71875rem;
}
.footer .nav--legal li a {
  color: #fff;
}

.js-search-content {
  display: none;
}

.search-form-wrapper {
  display: flex;
  justify-content: center;
}
.search-form-wrapper__button-and-search {
  position: relative;
}
.search-form-wrapper__button-and-search .search-form {
  display: flex;
  max-width: 350px;
  width: 100%;
}
.search-form-wrapper__button-and-search .search-submit {
  display: flex;
  align-items: center;
}
.search-form-wrapper__close {
  position: absolute;
  right: 25px;
  top: 19px;
  z-index: 4;
  cursor: pointer;
}
@media screen and (max-width: 1270px) {
  .search-form-wrapper__close {
    right: 25px;
    top: 13px;
  }
}
.search-form-wrapper__close img {
  width: 15px;
}
.search-form-wrapper input[type=search] {
  background-color: rgba(0, 0, 0, 0);
  color: #ffffff;
  line-height: 1;
  height: 26px;
  border: none;
  text-align: center;
  padding-top: 2px;
}
@media screen and (min-width: 1270px) {
  .search-form-wrapper input[type=search] {
    height: 30px;
    padding-top: 0px;
  }
}

.alert {
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid transparent;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 30px;
}
.alert.alert--success {
  color: #E2E3E3;
  border-color: #E2E3E3;
}
.alert.alert--info {
  color: #E03C31;
  border-color: #E03C31;
}
.alert.alert--warning {
  color: #E03C31;
  border-color: #E03C31;
}
.alert.alert--danger {
  color: #E03C31;
  border-color: #E03C31;
}

.video-player {
  position: relative;
}
.video-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-player__controls {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  text-align: center;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .video-player__controls {
    bottom: 50px;
  }
}
.video-player__controls button {
  margin: 0 6px;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 100%;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
.video-player__controls button.toggle-sound {
  background-size: 50%;
}
.video-player__controls button.toggle-sound--light {
  border: 1px solid #000000;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.591 11.775L14.7137 5.89775M20.591 5.89774L14.7137 11.775M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00095 4.81074 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.video-player__controls button.toggle-sound--light.active {
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11.7347V5.93813C1 5.37483 1.å43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' fill='white'/%3E%3Cpath d='M14.7137 5.40796C16.0197 7.1494 16.0197 10.5234 14.7137 12.2648M17.6523 1.97955C21.5587 5.71001 21.5824 11.9877 17.6523 15.6932M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.video-player__controls button.toggle-sound--dark {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.591 11.775L14.7137 5.89775M20.591 5.89774L14.7137 11.775M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00095 4.81074 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.video-player__controls button.toggle-sound--dark.active {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' fill='white'/%3E%3Cpath d='M14.7137 5.40796C16.0197 7.1494 16.0197 10.5234 14.7137 12.2648M17.6523 1.97955C21.5587 5.71001 21.5824 11.9877 17.6523 15.6932M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.video-player__controls button.toggle-play {
  background-size: 35%;
}
.video-player__controls button.toggle-play--dark {
  background-position-x: calc(50% + 2px);
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4.03663C0 1.73972 -2.98023e-07 0.5905 0.747938 0.150536C1.49512 -0.289427 2.50021 0.268871 4.50811 1.38395L8.87968 3.81286C10.9915 4.98635 12.0474 5.57271 12.0474 6.46553C12.0474 7.35836 10.9915 7.94472 8.87968 9.11821L4.50811 11.5471C2.49945 12.6622 1.49512 13.2205 0.747938 12.7805C-2.98023e-07 12.3406 0 11.1914 0 8.89444V4.03663Z' fill='white'/%3E%3C/svg%3E%0A");
}
.video-player__controls button.toggle-play--dark.active {
  background-position-x: calc(50% + 0px);
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='17' viewBox='0 0 8 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L7 16' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M1 1L0.999999 16' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: 15%;
}
.video-player__controls button.toggle-play--light {
  border: 1px solid #000000;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='17' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3612 11.9774C10.3612 10.6074 10.3612 9.92186 10.8145 9.65942C11.2674 9.39699 11.8766 9.73001 13.0936 10.3951L15.7433 11.844C17.0233 12.5439 17.6633 12.8937 17.6633 13.4263C17.6633 13.9588 17.0233 14.3086 15.7433 15.0086L13.0936 16.4574C11.8762 17.1225 11.2674 17.4555 10.8145 17.1931C10.3612 16.9307 10.3612 16.2452 10.3612 14.8751V11.9774Z' stroke='black' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.video-player__controls button.toggle-play--light.active {
  background-position-x: calc(50% + 0px);
  border: 1px solid #000000;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='17' viewBox='0 0 8 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L7 16' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M1 1L0.999999 16' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: 15%;
}
.video-player.video-player-alt .video-player__controls {
  align-items: center;
  background-color: #fff;
  border-radius: 25px;
  bottom: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  display: flex;
  padding: 10px 45px;
  transform: translateX(-50%) translateY(35%);
}
.video-player.video-player-alt .video-player__controls button {
  background-position: center;
  border: 1px #fff solid;
  filter: invert(1);
  height: 24px;
  width: 24px;
}
.video-player.video-player-alt .video-player__controls button.play-button:not(.active) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23fff' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986V5.653Z' /%3E%3C/svg%3E%0A");
  background-size: 50%;
}
.video-player video.video--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .video-player video.video--desktop {
    display: inline-block;
  }
}
.video-player video.video--mobile {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .video-player video.video--mobile {
    display: none;
  }
}

.cookie-overlay {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  color: #000;
  z-index: 999;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .cookie-overlay {
    padding: 30px;
  }
}
.cookie-overlay__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cookie-overlay .cookie-modal__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.cookie-options {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  font-size: 16px;
  font-size: 1rem;
}
.cookie-options__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.cookie-options__inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  z-index: 2;
  width: 1070px;
  max-width: 100%;
  max-height: 100svh;
  overflow: auto;
}
.cookie-options__header {
  position: relative;
  padding: 30px 60px;
  border-bottom: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  .cookie-options__header {
    padding: 30px;
  }
}
.cookie-options__close {
  display: block;
  position: absolute;
  top: 50%;
  right: 45px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.757813 5.93652V4.37793H4.80273V0.305176H6.38916V4.37793H10.4341L10.4341 5.93652H6.38916V10H4.80273V5.93652H0.757813Z' fill='%23000000'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .cookie-options__close {
    right: 30px;
  }
}
.cookie-options__body {
  padding: 45px 60px;
}
@media screen and (max-width: 768px) {
  .cookie-options__body {
    padding: 30px;
  }
}
.cookie-options__types dl {
  border: 1px #000 solid;
}
.cookie-options__types dt {
  display: flex;
  position: relative;
  text-transform: uppercase;
  padding: 19.5px 60px;
  border-top: 1px #000 solid;
  margin-bottom: 0;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
.cookie-options__types dt::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  content: "";
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: transform 500ms;
  transform-origin: center;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.757813 5.93652V4.37793H4.80273V0.305176H6.38916V4.37793H10.4341L10.4341 5.93652H6.38916V10H4.80273V5.93652H0.757813Z' fill='%23000000'/%3E%3C/svg%3E%0A");
}
.cookie-options__types dt.active::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cookie-options__types dt:first-child {
  border-top: none;
}
@media screen and (max-width: 1024px) {
  .cookie-options__types dt {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.cookie-options__types dd {
  display: none;
  background: #fff;
  padding: 30px 60px;
  color: #000;
}
.cookie-options__buttons {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin-top: 45px;
  flex-wrap: wrap;
}
.cookie-options__content {
  margin-bottom: 60px;
  color: #000;
}

.cookie-options .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.cookie-options .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-options .switch input:checked + .slider {
  background-color: #ccc;
}
.cookie-options .switch input:checked + .slider::before {
  transform: translateX(21px);
}
.cookie-options .switch input:focus-visible + .slider {
  outline: 2px solid #E03C31;
  outline-offset: 2px;
}
.cookie-options .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 1px #707372 solid;
  transition: 0.4s;
}
.cookie-options .switch .slider::before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: -1px;
  bottom: 0;
  background-color: #707372;
  transition: 0.4s;
}
.cookie-options .switch .slider.round, .cookie-options .switch .slider.round::before {
  border-radius: 50px;
}

.future-experience-bar {
  position: fixed;
  bottom: 6px;
  left: 6px;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  min-height: 91px;
  max-width: calc(100% - 12px);
  padding: 18px 15px 14px;
  color: #fff;
  background: #000;
  transition: opacity 250ms ease, visibility 250ms ease;
  border-radius: 12px;
}

.future-experience-bar.is-dismissed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.future-experience-bar__logo-link,
.future-experience-bar__view {
  color: inherit;
  text-decoration: none;
}

.future-experience-bar__logo-link {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
}

.future-experience-bar__logo {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
}

.future-experience-bar__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 18px;
}

.future-experience-bar__header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.future-experience-bar__view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.future-experience-bar__view:hover {
  text-decoration: none;
  color: #fff;
}
.future-experience-bar__view span {
  margin-bottom: -2px;
}

.future-experience-bar__arrow {
  display: block;
  width: 19px;
  height: 6px;
}

.future-experience-bar__logo-link:focus-visible,
.future-experience-bar__view:focus-visible,
.future-experience-bar__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.future-experience-bar__close {
  position: relative;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.future-experience-bar__close::before,
.future-experience-bar__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
}

.future-experience-bar__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.future-experience-bar__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
  .future-experience-bar {
    width: 260px;
    min-height: 91px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .future-experience-bar {
    transition: none;
  }
}
.blog-post__go-back {
  text-align: center;
  margin: 90px 0 70px 0;
}
@media screen and (max-width: 768px) {
  .blog-post__go-back {
    margin: 24px 0 24px 0;
  }
}
.blog-post__title-wrapper {
  padding-bottom: 50px;
  margin-bottom: 50px !important;
  border-bottom: 1px solid #B7B9B8;
}
.blog-post__thumbnail {
  margin-bottom: 50px;
}
.blog-post__meta__row {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .blog-post__meta__row {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  .blog-post__meta__row__left .row .col:first-child {
    margin-bottom: 20px;
  }
}
.blog-post__meta__row__right {
  display: flex;
  justify-content: flex-end;
}
.blog-post__meta__row__right__share-block {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
}
.blog-post__meta__row__right__share {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
}
.blog-post__meta__row__right__share a {
  align-items: center;
  background: #ececec;
  border-radius: 50%;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .blog-post__meta__row__right__share a {
    height: 40px;
    width: 40px;
  }
}
.blog-post__meta__row__right__share img {
  display: block;
  max-height: 18px;
  max-width: 18px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .blog-post__meta__row__right__share img {
    max-height: 24px;
    max-width: 24px;
  }
}
.blog-post__meta__row__right__share .share-icon--wechat img {
  max-width: 16.5px;
}
@media screen and (min-width: 768px) {
  .blog-post__meta__row__right__share .share-icon--wechat img {
    max-width: 22px;
  }
}
.blog-post__meta__row__right__share .share-icon--rednote img {
  max-width: 18.25px;
}
@media screen and (min-width: 768px) {
  .blog-post__meta__row__right__share .share-icon--rednote img {
    max-width: 19px;
  }
}
.blog-post__meta__row .title {
  display: block;
  line-height: 1;
}
.blog-post__meta__row .title--share {
  margin-bottom: 5px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .blog-post__meta__row .title--share {
    margin-bottom: 15px;
  }
}

.single-post article.post .section:first-of-type {
  padding-top: 0;
}

.section--blog-archive {
  padding: var(--section--vertical-padding) 0 0 0;
  border-top: 0;
}
@media screen and (min-width: 768px) {
  .section--blog-archive {
    padding: 30px 0 var(--section--vertical-padding) 0;
  }
}
@media screen and (min-width: 768px) {
  .section--blog-archive__nav {
    margin-bottom: 60px;
    margin-top: 85px;
  }
}
.section--blog-archive__nav ul {
  width: 100%;
  list-style: none;
  margin-left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .section--blog-archive__nav ul .btn {
    font-size: 10px;
    padding: 7.5px 10px;
  }
}
@media screen and (min-width: 768px) {
  .section--blog-archive__nav ul {
    gap: 50px;
  }
}
.section--blog-archive__nav ul li.active a {
  background-color: #000;
  color: #fff;
}
.section--blog-archive__intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 742px;
  padding-top: 75px;
  padding-bottom: 75px;
}
@media screen and (min-width: 768px) {
  .section--blog-archive__intro {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
.section--blog-archive .article-list {
  padding: 0;
}
.section--blog-archive .article-list .js-article-list-grid-sizer, .section--blog-archive .article-list__article {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section--blog-archive .article-list .js-article-list-grid-sizer, .section--blog-archive .article-list__article {
    width: calc((100% - 90px) / 3);
  }
}
.section--blog-archive .article-list .js-article-list-gutter-sizer {
  width: 10px;
}
@media screen and (min-width: 768px) {
  .section--blog-archive .article-list .js-article-list-gutter-sizer {
    width: 45px;
  }
}
.section--blog-archive .article-list__article {
  margin-bottom: 30px;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .section--blog-archive .article-list__article {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .section--blog-archive .article-list__article:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .section--blog-archive .article-list__article__title .h4 {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.section--blog-archive .article-list__article__image {
  margin-bottom: 18px;
}
.section--blog-archive .article-list__article__image img {
  width: 100%;
}
.section--blog-archive .article-list__article__image--4-3 img, .section--blog-archive .article-list__article__image--4-5 img {
  display: block;
  height: auto;
  object-fit: cover;
}
.section--blog-archive .article-list__article__image--4-3 img {
  aspect-ratio: 4/3;
}
.section--blog-archive .article-list__article__image--4-5 img {
  aspect-ratio: 4/5;
}
.section--blog-archive .article-list__article a {
  transition: 250ms;
}
.section--blog-archive .article-list__article a:hover {
  color: #E03C31;
  text-decoration: none;
}

.section--contact {
  padding: var(--section--vertical-padding) 0;
}
.section--contact .contact__introduction {
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .section--contact .contact__introduction {
    padding-bottom: 90px;
    margin-bottom: 90px;
    line-height: 1.4;
    font-size: 32px;
    letter-spacing: 0.14em;
  }
}
.section--contact .contact__introduction p {
  max-width: 480px;
}
.section--contact .contact__popups-general-and-follow__popups {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .section--contact .contact__popups-general-and-follow__popups {
    margin-bottom: 90px;
  }
}
.section--contact .contact__popups-general-and-follow__popups > div {
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .section--contact .contact__popups-general-and-follow__popups > div {
    margin-bottom: 30px;
  }
}
.section--contact .contact__popups-general-and-follow__general {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .section--contact .contact__popups-general-and-follow__general {
    margin-bottom: 90px;
  }
}
.section--contact .contact__popups-general-and-follow__follow {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .section--contact .contact__popups-general-and-follow__follow {
    margin-bottom: 0;
  }
}
.section--contact .contact__popups-general-and-follow__follow a {
  display: inline-block;
}
.section--contact .contact__popups-general-and-follow__follow .wechat-qr-wrapper {
  display: block;
  width: fit-content;
}
.section--contact .contact__london-and-image__london {
  margin-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .section--contact .contact__london-and-image__london {
    margin-bottom: 90px;
  }
}
.section--contact .contact__london-and-image__image img {
  width: 100%;
}

/* New Project Template */
/**
 * Breakpoints
 */
/**
 * Typography
 */
/**
 * Grid
 */
/**
 * Colors
 */
/**
 * Spacing
 */
/**
* Font Sizes
*/
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
.single-projects .project-slider__caption {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #6F7271;
  text-align: right;
  flex: 1 1 320px;
}
@media screen and (max-width: 1024px) {
  .single-projects .project-slider__caption {
    flex: 0 1 auto;
    text-align: left;
  }
}
.single-projects .project-slider__caption[hidden] {
  display: none !important;
}
.single-projects .project-slider__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .single-projects .project-slider__meta {
    flex-direction: column;
    gap: 8px;
  }
}
.single-projects main {
  padding-top: 0;
}
.single-projects section.section.section--bg-white {
  padding: 0;
}
.single-projects section.section.section--bg-white + .section--bg-white {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .single-projects section.section {
    margin-bottom: var(--section--vertical-padding);
  }
}
.single-projects .bg--light {
  margin-bottom: var(--section--vertical-padding);
}
.single-projects h1,
.single-projects h2,
.single-projects h3,
.single-projects h4 {
  letter-spacing: 0.14em;
}
@media screen and (max-width: 1024px) {
  .single-projects h1,
  .single-projects h2,
  .single-projects h3,
  .single-projects h4 {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.single-projects h3,
.single-projects .h3,
.single-projects .section--text_and_media h5,
.single-projects .section--content_and_gallery .content-wrapper h5 {
  margin-bottom: 15px;
}
.single-projects .section--hero {
  overflow: visible;
  height: auto;
}
.single-projects .section--hero .video-player {
  height: 100svh;
  min-height: 550px;
}
@media screen and (max-width: 768px) {
  .single-projects .section--hero .video-player {
    height: auto;
  }
}
.single-projects .section--hero .video-player video {
  position: absolute;
  inset: 0;
}
.single-projects .section--hero .video-player img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-projects .section--hero .section--hero__overview h1 {
  margin-bottom: 40px;
  margin-top: -2px;
}
.single-projects .section--hero .section--hero__overview {
  padding: var(--section--vertical-padding) 0;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--hero .section--hero__overview {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .single-projects .section--hero .section--hero__overview h1 {
    margin-top: 0;
  }
  .single-projects .section--hero .section--hero__overview .container p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.single-projects .section--hero .section--hero__overview a {
  text-decoration: underline;
  color: #000;
}
.single-projects .section--hero .section--hero__tabs .list--tabs {
  display: flex;
  gap: 60px;
  padding-bottom: 5px;
  border-bottom: 1px #959897 solid;
  margin: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}
.single-projects .section--hero .section--hero__tabs .list--tabs li {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.single-projects .section--hero .section--hero__tabs .list--tabs li a {
  color: #6F7271;
  transition: color 250ms;
}
.single-projects .section--hero .section--hero__tabs .list--tabs li a:hover {
  text-decoration: none;
}
.single-projects .section--hero .section--hero__tabs .list--tabs li a.active {
  color: #000;
}
.single-projects .section--hero .section--hero__tabs .list--tabs li p,
.single-projects .section--hero .section--hero__tabs .list--tabs li dd {
  text-transform: none;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0px;
}
.single-projects .section--hero .section--hero__tabs .list--tabs li.tab-mobile {
  display: none;
}
.single-projects .section--hero .section--hero__tabs .list--tabs li:before {
  display: none;
  padding: 0;
}
.single-projects .section--hero .section--hero__tabs .tab[data-tab=recognition].tab-desktop.active {
  display: block;
}
.single-projects .section--hero .section--hero__tabs .tab[data-tab=recognition] .recognition-entry:last-of-type {
  padding-bottom: 60px;
}
.single-projects .section--hero .section--hero__tabs .tab {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 40px;
  padding: 60px 0;
  font-size: 16px;
  font-size: 1rem;
}
.single-projects .section--hero .section--hero__tabs .tab.active {
  display: grid;
  column-gap: 30px;
}
.single-projects .section--hero .section--hero__tabs .tab dl,
.single-projects .section--hero .section--hero__tabs .tab p,
.single-projects .section--hero .section--hero__tabs .tab div {
  flex-basis: 100%;
  font-size: 16px;
  font-size: 1rem;
}
.single-projects .section--hero .section--hero__tabs .tab.tab--two dl,
.single-projects .section--hero .section--hero__tabs .tab.tab--two p,
.single-projects .section--hero .section--hero__tabs .tab.tab--two div {
  flex-basis: 50%;
}
.single-projects .section--hero .section--hero__tabs .tab.tab--four dl,
.single-projects .section--hero .section--hero__tabs .tab.tab--four p,
.single-projects .section--hero .section--hero__tabs .tab.tab--four div {
  flex-basis: 25%;
}
.single-projects .section--hero .section--hero__tabs .tab.tab--six dl,
.single-projects .section--hero .section--hero__tabs .tab.tab--six p,
.single-projects .section--hero .section--hero__tabs .tab.tab--six div {
  flex-basis: 16.666%;
}
.single-projects .section--hero .section--hero__tabs .tab dl {
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
}
.single-projects .section--hero .section--hero__tabs .tab dl dt {
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
}
.single-projects .section--hero .section--hero__tabs .tab blockquote {
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: none;
  max-width: 650px;
  margin-bottom: 30px;
  padding: 40px 0 0 0;
  position: relative;
  color: #000;
}
.single-projects .section--hero .section--hero__tabs .tab blockquote:before {
  width: 25px;
  height: 19px;
  margin-bottom: 20px;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background-image: url("./assets/images/icon-quote.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.single-projects .section--hero .section--hero__tabs .tab blockquote + p {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 0.14em;
}
.single-projects .section--hero .section--hero__tabs .tab blockquote + p:last-child {
  margin-bottom: 0;
}
.single-projects .section--hero .section--hero__tabs .tab blockquote + span {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .single-projects .section--hero .section--hero__tabs .tab blockquote {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.single-projects .section--hero .section--hero__tabs .tab.tab--press img {
  display: block;
  width: auto;
  height: 90px;
  margin: auto;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--hero .section--hero__tabs .tab.tab--press img {
    display: block;
    margin: auto;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .single-projects .section--hero .section--hero__tabs .list--tabs {
    flex-wrap: wrap;
    gap: 30px;
    border: none;
  }
  .single-projects .section--hero .section--hero__tabs .list--tabs > li {
    flex-basis: 100%;
  }
  .single-projects .section--hero .section--hero__tabs .list--tabs > li:not(.tab-mobile) {
    border-bottom: 1px #707372 solid;
  }
  .single-projects .section--hero .section--hero__tabs .list--tabs > li > a {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .single-projects .section--hero .section--hero__tabs .list--tabs > li > a:after {
    content: "+";
  }
  .single-projects .section--hero .section--hero__tabs .list--tabs > li > a.active:after {
    content: "-";
  }
  .single-projects .section--hero .section--hero__tabs .list--tabs > li.tab-mobile.active {
    display: grid;
  }
  .single-projects .section--hero .section--hero__tabs .tab {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 25px;
    padding: 30px 0;
  }
  .single-projects .section--hero .section--hero__tabs .tab[data-tab=recognition], .single-projects .section--hero .section--hero__tabs .tab[data-tab=testimonials], .single-projects .section--hero .section--hero__tabs .tab.tab--press {
    grid-template-columns: minmax(0, 1fr);
  }
  .single-projects .section--hero .section--hero__tabs .tab dl,
  .single-projects .section--hero .section--hero__tabs .tab p,
  .single-projects .section--hero .section--hero__tabs .tab div {
    font-size: 15px;
    font-size: 0.9375rem;
    flex-basis: 100% !important;
  }
  .single-projects .section--hero .section--hero__tabs .tab dl {
    padding: 0;
  }
  .single-projects .section--hero .section--hero__tabs .tab dl dt {
    margin-bottom: 7.5px;
  }
  .single-projects .section--hero .section--hero__tabs .tab dl dd {
    margin-bottom: 0;
  }
  .single-projects .section--hero .section--hero__tabs .tab.tab--press > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 40px;
    width: 100%;
  }
  .single-projects .section--hero .section--hero__tabs .tab.tab--press > div div {
    min-width: 0;
  }
  .single-projects .section--hero .section--hero__tabs .tab.tab-desktop {
    display: none;
  }
  .single-projects .section--hero .section--hero__tabs blockquote {
    padding: 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .single-projects .section--hero .section--hero__tabs .tab[data-tab=testimonials] blockquote {
    font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.3;
  }
}
.single-projects .section--collage {
  overflow: hidden;
  margin-bottom: var(--section--vertical-padding);
}
.single-projects .section--collage .section--collage__feature {
  position: relative;
  height: 100vh;
  will-change: width, height;
}
.single-projects .section--collage .section--collage__feature .section--collage__feature__image {
  position: relative;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.single-projects .section--collage .section--collage__feature .section--collage__feature__image img {
  position: absolute;
  width: 1700px;
  z-index: 3;
  object-fit: cover;
  object-position: cover;
  max-width: calc(100vw - 80px);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1638/912;
}
.single-projects .section--collage .section--collage__feature .section--collage__feature__image.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 3;
}
.single-projects .section--collage .section--collage__feature .section--collage__feature__image.fixed img {
  width: 100%;
}
.single-projects .section--collage.active .section--collage__feature__image {
  display: none;
}
.single-projects .section--collage .carousel {
  padding-left: 30px;
  font-size: 0;
}
.single-projects .section--collage .carousel .slick-track {
  display: flex !important;
}
.single-projects .section--collage .carousel .slick-slide {
  cursor: pointer;
  height: inherit !important;
}
.single-projects .section--collage .carousel .slick-slide div {
  height: 100%;
}
.single-projects .section--collage .carousel .slide {
  display: none;
  padding-right: 30px;
}
.single-projects .section--collage .carousel .slide img {
  width: auto;
  max-height: 200px;
  object-fit: cover;
  height: 100%;
  max-width: 75vw;
}
.single-projects .section--collage .carousel .slide:first-child {
  display: block;
}
.single-projects .section--collage .section--collage__grid {
  display: grid;
  grid-template-columns: repeat(29, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 0;
  counter-reset: test;
  padding-top: 25vh;
}
.single-projects .section--collage .section--collage__grid.active > div:first-child:nth-child(1) {
  opacity: 1;
}
.single-projects .section--collage .section--collage__grid > div {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.single-projects .section--collage .section--collage__grid > div img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(1) {
  grid-column: 9/span 13;
  grid-row: 2/span 7;
  transition: opacity 0ms;
  opacity: 0;
  aspect-ratio: 1638/912;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(2) {
  grid-column: 9/span 5;
  grid-row: 10/span 4;
  aspect-ratio: 630/519;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(3) {
  grid-column: 15/span 7;
  grid-row: 10/span 4;
  aspect-ratio: 882/522;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(4) {
  grid-column: 2/span 6;
  grid-row: 1/span 4;
  aspect-ratio: 756/521;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(5) {
  grid-column: 23/span 5;
  grid-row: 1/span 5;
  aspect-ratio: 634/657;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(6) {
  grid-column: 3/span 5;
  grid-row: 6/span 7;
  aspect-ratio: 630/915;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(7) {
  grid-column: 23/span 7;
  grid-row: 7/span 7;
  aspect-ratio: 881/913;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(8) {
  grid-column: 8/span 7;
  grid-row: 15/span 5;
  aspect-ratio: 872/642;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(9) {
  grid-column: 16/span 14;
  grid-row: 15/span 8;
  aspect-ratio: 1763/1043;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(10) {
  grid-column: 1/span 6;
  grid-row: 14/span 8;
  aspect-ratio: 756/1044;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(11) {
  grid-column: 8/span 7;
  grid-row: 21/span 7;
  aspect-ratio: 882/913;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(12) {
  grid-column: 16/span 5;
  grid-row: 24/span 4;
  aspect-ratio: 630/522;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(13) {
  grid-column: 1/span 6;
  grid-row: 23/span 6;
  aspect-ratio: 756/780;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(14) {
  grid-column: 22/span 7;
  grid-row: 24/span 4;
  aspect-ratio: 882/521;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(15) {
  grid-column: 8/span 14;
  grid-row: 29/span 8;
  aspect-ratio: 1764/1044;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(16) {
  grid-column: 1/span 6;
  grid-row: 30/span 4;
  aspect-ratio: 756/522;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(17) {
  grid-column: 23/span 7;
  grid-row: 29/span 8;
  aspect-ratio: 851/1009;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(18) {
  grid-column: 1/span 6;
  grid-row: 35/span 4;
  aspect-ratio: 756/504;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(19) {
  grid-column: 8/span 8;
  grid-row: 38/span 5;
  aspect-ratio: 1008/630;
}
.single-projects .section--collage .section--collage__grid > div:nth-child(20) {
  grid-column: 17/span 8;
  grid-row: 38/span 5;
  aspect-ratio: 1008/630;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--collage {
    margin-top: 0;
  }
}
.single-projects .section--collage .mob-gallery {
  display: none;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--collage .mob-gallery {
    position: fixed;
    overflow: scroll;
    background-color: rgba(0, 0, 0, 0.85);
    top: 0;
    z-index: 4;
    max-height: 100vh;
    padding: 14px 0;
  }
  .single-projects .section--collage .mob-gallery > div {
    width: 90%;
    margin: 20px auto 20px;
  }
  .single-projects .section--collage .mob-gallery .data-modal-dismiss {
    position: fixed;
    right: 14px;
    width: 100%;
    text-align: right;
    top: 0px;
  }
}
.single-projects .section--gallery {
  margin-bottom: 0;
}
.single-projects .section--gallery .section--gallery__carousel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.single-projects .section--gallery img,
.single-projects .section--gallery video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.single-projects .section--gallery .slide {
  max-height: 966px;
}
.single-projects .section--gallery .project-gallery__video-player {
  position: relative;
  width: 100%;
  height: 100%;
  isolation: isolate;
}
.single-projects .section--gallery .project-gallery__video-player video {
  display: block;
}
.single-projects .section--gallery .project-gallery__video-controls {
  display: flex;
  height: auto !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: auto;
}
.single-projects .section--gallery .gallery {
  cursor: url("./assets/images/carousel-arrow-right.svg") 25 25, pointer;
  width: 100%;
}
.single-projects .section--gallery .gallery.is-pointing-left {
  cursor: url("./assets/images/carousel-arrow-left.svg") 25 25, pointer;
}
.single-projects .section--gallery .gallery__count {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 0;
  flex: 0 0 auto;
}
.single-projects .section--gallery .project-slider__meta {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--gallery .project-slider__meta {
    padding: 0;
  }
}
.single-projects .section--gallery .slide {
  display: none;
}
.single-projects .section--gallery .slide:first-child {
  display: block;
}
.single-projects .section--gallery .slick-track {
  display: flex !important;
}
.single-projects .section--gallery .slick-slide {
  height: inherit !important;
}
.single-projects .section--gallery .slick-slide div {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--gallery {
    margin-bottom: 50px !important;
  }
}
.single-projects .section--content_and_gallery {
  margin-bottom: var(--section--vertical-padding);
}
@media screen and (min-width: 1024px) {
  .single-projects .section--content_and_gallery .flex {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .single-projects .section--content_and_gallery .flex-row-reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .single-projects .section--content_and_gallery .flex-row-reverse .content-wrapper {
    margin-left: auto;
    padding-right: 0;
    padding-left: 120px;
  }
}
.single-projects .section--content_and_gallery .content-wrapper {
  max-width: 722px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .single-projects .section--content_and_gallery .content-wrapper {
    padding-right: 120px;
  }
}
.single-projects .section--content_and_gallery .content-wrapper h5 {
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px !important;
  line-height: 23px !important;
  letter-spacing: 0.08em !important;
}
.single-projects .section--content_and_gallery .gallery {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--content_and_gallery .col:first-child {
    margin-bottom: 40px;
  }
}
.single-projects .section--statistics {
  padding: var(--section--vertical-padding) 0;
  border-radius: 36px;
}
.single-projects .section--statistics .container--set .row--flex {
  justify-content: center;
}
.single-projects .section--statistics dl {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  letter-spacing: 0.14em;
}
.single-projects .section--statistics dl dt {
  font-size: 64px;
  font-size: 4rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
}
.single-projects .section--statistics dl dt.count--percentage:after {
  content: "%";
}
.single-projects .section--statistics dl dt.count--plus:after {
  content: "+";
}
.single-projects .section--statistics dl dd {
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--statistics .col {
    margin-bottom: 30px;
  }
  .single-projects .section--statistics dl dt {
    font-size: 32px;
    font-size: 2rem;
  }
}
.single-projects .section--carousel {
  padding: var(--section--vertical-padding) 0;
  margin-bottom: var(--section--vertical-padding);
  border-radius: 36px;
}
.single-projects .section--carousel .section--carousel__carousel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 1127px;
  width: 100%;
  margin: auto;
}
.single-projects .section--carousel .slick-prev:before, .single-projects .section--carousel .slick-next:before {
  opacity: 1;
}
.single-projects .section--carousel .gallery,
.single-projects .section--carousel .thumbnails {
  margin: auto;
}
.single-projects .section--carousel .gallery {
  max-width: none;
  width: 100%;
  cursor: url("./assets/images/carousel-arrow-right.svg") 25 25, pointer;
}
.single-projects .section--carousel .gallery.is-pointing-left {
  cursor: url("./assets/images/carousel-arrow-left.svg") 25 25, pointer;
}
.single-projects .section--carousel .gallery img,
.single-projects .section--carousel .gallery video {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  filter: none;
}
.single-projects .section--carousel .gallery .slide {
  display: none;
}
.single-projects .section--carousel .gallery .slide:first-child {
  display: block;
}
.single-projects .section--carousel .gallery.slick-initialized .slide {
  display: block;
}
.single-projects .section--carousel .gallery__count {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 0;
  flex: 0 0 auto;
}
.single-projects .section--carousel .project-slider__meta {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--carousel .project-slider__meta {
    padding: 0;
  }
}
.single-projects .section--carousel .thumbnails {
  font-size: 0;
}
.single-projects .section--carousel .thumbnails img,
.single-projects .section--carousel .thumbnails video {
  object-fit: cover;
  aspect-ratio: 124/75;
  transform: scale(1);
  filter: none;
}
.single-projects .section--carousel .thumbnails .slide {
  display: none;
  padding: 0 30px;
}
.single-projects .section--carousel .thumbnails .slide:first-child {
  display: block;
}
.single-projects .section--carousel .thumbnails.slick-initialized .slide {
  display: block;
}
.single-projects .section--carousel .slick-arrow {
  background-color: #000;
}
.single-projects .section--carousel .slick-arrow {
  width: 40px;
  height: 40px;
}
.single-projects .section--carousel .slick-arrow.slick-prev:before {
  margin-left: -3px;
}
.single-projects .section--carousel .slick-arrow.slick-next:before {
  margin-right: -3px;
}
.single-projects .section--carousel .slick-arrow:before {
  width: 40%;
  height: 40%;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--carousel .thumbnails {
    margin-top: 5px;
  }
  .single-projects .section--carousel .thumbnails .slide {
    padding: 0 5px;
  }
}
.single-projects .section--carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: 2;
}
.single-projects .section--carousel .slick-arrow:before {
  display: block;
  content: "";
  width: 40%;
  height: 40%;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='11' viewBox='0 0 8 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 1L2 5.60465L6.29545 10' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.single-projects .section--carousel .slick-arrow.slick-prev {
  left: -18px;
}
@media screen and (max-width: 768px) {
  .single-projects .section--carousel .slick-arrow.slick-prev {
    left: 5px;
  }
}
.single-projects .section--carousel .slick-arrow.slick-next {
  right: -18px;
}
@media screen and (max-width: 768px) {
  .single-projects .section--carousel .slick-arrow.slick-next {
    right: 5px;
  }
}
.single-projects .section--carousel .slick-arrow.slick-next:before {
  transform: rotate(180deg);
}
.single-projects .section--text_and_media {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 var(--section--vertical-padding);
  padding: var(--section--vertical-padding) 0;
}
.single-projects .section--text_and_media a {
  text-decoration: underline;
  color: #000;
}
.single-projects .section--text_and_media.bg--light {
  background-color: #F8F8F8;
  border-radius: 36px;
  margin: 0 0 var(--section--vertical-padding);
  padding: var(--section--vertical-padding) 0;
}
.single-projects .section--text_and_media h5 {
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px !important;
  line-height: 23px !important;
  letter-spacing: 0.08em !important;
}
@media screen and (min-width: 1024px) {
  .single-projects .section--text_and_media .flex {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .single-projects .section--text_and_media .flex-row-reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1024px) {
  .single-projects .section--text_and_media {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .single-projects .section--text_and_media .col:first-child {
    margin-bottom: 40px;
  }
  .single-projects .section--text_and_media .row.flex-wrap {
    flex-direction: column-reverse;
  }
  .single-projects .section--text_and_media .row.flex-wrap .col:first-child {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1024px) {
  .single-projects .section--text_and_media .row.flex-wrap .col:first-child {
    margin-bottom: 0;
  }
}
.single-projects .section--text_and_media .content-wrapper {
  max-width: 722px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .single-projects .section--text_and_media .content-wrapper {
    padding-right: 120px;
  }
}
.single-projects .section--text_and_media .flex-row-reverse .content-wrapper {
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .single-projects .section--text_and_media .flex-row-reverse .content-wrapper {
    padding-right: 0;
    padding-left: 120px;
  }
}
.single-projects .section--content {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: var(--section--vertical-padding);
  padding: var(--section--vertical-padding) 0;
}
.single-projects .section--content.bg--light {
  background-color: #F8F8F8;
  border-radius: 36px;
  padding: var(--section--vertical-padding) 0;
}
.single-projects .section--content a {
  text-decoration: underline;
  color: #000;
}
.single-projects .section--content h5 {
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
}
.single-projects .section--content .columns {
  column-gap: 295px;
}
.single-projects .section--content .columns.columns--2 {
  columns: 2;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--content .columns.columns--2 {
    columns: 1;
  }
}
.single-projects .section--content .columns p {
  break-inside: avoid;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--content {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 40px;
  }
}
.single-projects .section--socials {
  padding-top: var(--section--vertical-padding);
  padding-bottom: var(--section--vertical-padding);
  margin-bottom: var(--section--vertical-padding);
}
@media screen and (max-width: 1024px) {
  .single-projects .section--socials h3 {
    text-align: center;
    margin-bottom: 33px;
  }
}
.single-projects .section--socials .socials {
  margin: 30px auto 0 auto;
  display: flex;
  gap: 60px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.single-projects .section--socials .socials--drag-cursor {
  cursor: url("./assets/images/horizonal-scroll-cursor.svg") 12 12, grab;
}
.single-projects .section--socials .socials--drag-cursor a {
  cursor: inherit;
}
.single-projects .section--socials .socials--drag-cursor.is-dragging {
  cursor: url("./assets/images/horizonal-scroll-cursor.svg") 12 12, grabbing;
}
.single-projects .section--socials .socials::-webkit-scrollbar {
  display: none;
}
.single-projects .section--socials .socials.is-dragging {
  scroll-snap-type: none;
}
.single-projects .section--socials .socials.is-dragging a {
  pointer-events: none;
}
.single-projects .section--socials .socials.is-snapping {
  scroll-snap-type: none;
}
.single-projects .section--socials .socials .slide {
  display: block;
  flex: 0 0 calc(25% - 45px);
  scroll-snap-align: start;
}
.single-projects .section--socials .socials .slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  .single-projects .section--socials {
    background-color: #F8F8F8;
    padding: 34px 0;
  }
  .single-projects .section--socials .socials {
    margin: 0 auto;
    gap: 30px;
    padding-bottom: 0;
  }
  .single-projects .section--socials .socials.socials--drag-cursor {
    gap: 10px;
  }
  .single-projects .section--socials .socials .slide {
    flex-basis: calc(100% - 60px);
  }
}
.single-projects .section--video_and_image video {
  pointer-events: none;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.single-projects .related-posts {
  margin-top: 30px;
}
.single-projects .related-posts .projects {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .single-projects .related-posts .projects {
    gap: 10px;
  }
  .single-projects .related-posts .projects .card-project:nth-child(3) {
    display: none;
  }
}
.single-projects .section--carousel .thumbnails img {
  width: 100%;
  cursor: pointer;
}
.single-projects .section--skps-episodes-title {
  padding: 0;
  margin-bottom: calc(var(--section--vertical-padding) - 30px) !important;
}
.single-projects .section--skps-episodes-title + .section--skps-episodes {
  margin-top: 0;
}
.single-projects .section--skps-episodes {
  padding: 0 !important;
  margin-bottom: var(--section--vertical-padding);
}
.single-projects .section--skps-episodes a {
  text-decoration: underline;
  color: #000;
}
.single-projects .section--skps-episodes h3 {
  margin-bottom: 100px;
}
.single-projects .section--skps-episodes .episode:last-child {
  padding-bottom: var(--section--vertical-padding);
}
.single-projects .section--skps-episodes .episode {
  padding-top: var(--section--vertical-padding);
}
.single-projects .section--skps-episodes .episode:last-child .video-player {
  margin-bottom: 0px;
}
.single-projects .section--skps-episodes .episode__left {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .single-projects .section--skps-episodes .episode__left {
    margin-bottom: 0;
  }
}
.single-projects .section--skps-episodes .episode .video-player {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .single-projects .section--skps-episodes .episode .video-player {
    margin-bottom: 0;
  }
}
.single-projects .section--skps-episodes__video-wrapper__controls {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  text-align: center;
  margin: 0 auto;
  z-index: 3;
  background-color: #FFFFFF;
  filter: drop-shadow(0px 2px 3px #919191);
  padding: 5px 10px;
  border-radius: 25px;
  height: 38px;
}
@media screen and (min-width: 768px) {
  .single-projects .section--skps-episodes__video-wrapper__controls {
    bottom: -10px;
    padding: 6px 40px;
  }
}
.single-projects .section--skps-episodes__video-wrapper__controls button {
  margin: 0 6px;
  width: 24px;
  height: 24px;
  background-color: #000;
  border-radius: 100%;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-play {
  background-size: 35%;
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-play--dark {
  background-position-x: calc(50% + 2px);
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4.03663C0 1.73972 -2.98023e-07 0.5905 0.747938 0.150536C1.49512 -0.289427 2.50021 0.268871 4.50811 1.38395L8.87968 3.81286C10.9915 4.98635 12.0474 5.57271 12.0474 6.46553C12.0474 7.35836 10.9915 7.94472 8.87968 9.11821L4.50811 11.5471C2.49945 12.6622 1.49512 13.2205 0.747938 12.7805C-2.98023e-07 12.3406 0 11.1914 0 8.89444V4.03663Z' fill='white'/%3E%3C/svg%3E%0A");
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-play--dark.active {
  background-position-x: calc(50% + 0px);
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='17' viewBox='0 0 8 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L7 16' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M1 1L0.999999 16' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: 15%;
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-play--light {
  border: 1px solid #000000;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='17' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3612 11.9774C10.3612 10.6074 10.3612 9.92186 10.8145 9.65942C11.2674 9.39699 11.8766 9.73001 13.0936 10.3951L15.7433 11.844C17.0233 12.5439 17.6633 12.8937 17.6633 13.4263C17.6633 13.9588 17.0233 14.3086 15.7433 15.0086L13.0936 16.4574C11.8762 17.1225 11.2674 17.4555 10.8145 17.1931C10.3612 16.9307 10.3612 16.2452 10.3612 14.8751V11.9774Z' stroke='black' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-play--light.active {
  background-position-x: calc(50% + 0px);
  border: 1px solid #000000;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='17' viewBox='0 0 8 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L7 16' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M1 1L0.999999 16' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: 15%;
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-sound {
  background-size: 50%;
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-sound--light {
  border: 1px solid #000000;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.591 11.775L14.7137 5.89775M20.591 5.89774L14.7137 11.775M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00095 4.81074 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-sound--light.active {
  border: 1px solid #000000;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11.7347V5.93813C1 5.37483 1.å43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' fill='white'/%3E%3Cpath d='M14.7137 5.40796C16.0197 7.1494 16.0197 10.5234 14.7137 12.2648M17.6523 1.97955C21.5587 5.71001 21.5824 11.9877 17.6523 15.6932M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-sound--dark {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.591 11.775L14.7137 5.89775M20.591 5.89774L14.7137 11.775M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00095 4.81074 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.single-projects .section--skps-episodes__video-wrapper__controls button.toggle-sound--dark.active {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='18' viewBox='0 0 22 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' fill='white'/%3E%3Cpath d='M14.7137 5.40796C16.0197 7.1494 16.0197 10.5234 14.7137 12.2648M17.6523 1.97955C21.5587 5.71001 21.5824 11.9877 17.6523 15.6932M1 11.7347V5.93813C1 5.37483 1.43856 4.91819 1.97955 4.91819H5.492C5.75179 4.91819 6.00094 4.81073 6.18464 4.61946L9.12329 1.30078C9.74041 0.658254 10.7955 1.11331 10.7955 2.02198V15.6508C10.7955 16.5658 9.72777 17.018 9.11448 16.3626L6.18609 13.0626C6.00172 12.8657 5.74876 12.7546 5.48461 12.7546H1.97955C1.43856 12.7546 1 12.2979 1 11.7347Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.post-type-archive .main,
.work-template-template-project .main {
  padding-bottom: 0;
}
.post-type-archive .back-to-top,
.work-template-template-project .back-to-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  margin: auto;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #000;
}

.card-project {
  position: relative;
}
.card-project > div a {
  position: relative;
  display: block;
}
.card-project .overlay {
  opacity: 0;
  transition: opacity ease-in-out 250ms;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: white;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .card-project .overlay {
    padding: 25px;
  }
}
.card-project .overlay p {
  color: inherit;
  font-size: 18px;
  text-align: center;
}
.card-project .project__title {
  margin-top: 20px;
}
.card-project .project__title a {
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.card-project .project__title a:hover {
  text-decoration: none;
}
.card-project:hover .overlay {
  opacity: 1;
}

.work-grid .grid-item {
  width: 33.33%;
  padding: 25px;
}
.work-grid .grid-item .project {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .work-grid .grid-item {
    width: 50%;
    padding: 5px;
  }
  .work-grid .grid-item .project__title,
  .work-grid .grid-item .project__title .h5 {
    font-size: 11px;
    font-size: 0.6875rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .work-grid {
    margin: 0 25px;
  }
}

.post-type-archive-work .nav--studio {
  margin-bottom: 70px !important;
  padding-bottom: 0;
  border: none;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-work .nav--studio {
    margin-bottom: 0 !important;
  }
}

/* Project Card */
.project {
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
}
.project.project--coming-soon {
  cursor: default !important;
}
.project.project--coming-soon a {
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .project {
    position: relative;
  }
}
.project img {
  max-width: unset;
  width: 100%;
}
.project > a {
  display: block;
}
@media screen and (min-width: 1024px) {
  .project {
    margin-bottom: 30px;
    position: relative;
  }
  .project:hover {
    cursor: pointer;
  }
  .project:hover .project__info {
    opacity: 1;
    z-index: 2;
    pointer-events: none;
  }
  .project:hover .project__info a:hover {
    text-decoration: none;
  }
  .project:hover .project__overlay {
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.project .project__overlay {
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (max-width: 1024px) {
  .project .project__overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.project .project__info {
  margin-bottom: 45px;
  margin-top: 15px;
}
.project .project__info h2 {
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .project .project__info {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s;
    width: 90%;
    margin: unset;
  }
  .project .project__info h2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .project .project__info {
    margin-bottom: 18px;
  }
}

.slider--projects .slick-slide {
  margin: 0 10px;
}
.slider--projects .slick-list {
  margin: 0 -10px;
}

.single-work .full__image video,
.single-diary .full__image video {
  object-fit: cover;
  height: 100%;
}
.single-work .full__image .pv-video-player,
.single-diary .full__image .pv-video-player {
  height: 100vh !important;
}
.single-work .full__image iframe,
.single-diary .full__image iframe {
  height: 100vh !important;
}
@media screen and (max-width: 1024px) {
  .single-work .full__image iframe,
  .single-diary .full__image iframe {
    height: 50vh !important;
  }
}
@media screen and (max-width: 480px) {
  .single-work .full__image iframe,
  .single-diary .full__image iframe {
    height: 244px !important;
  }
}
@media screen and (max-width: 768px) {
  .single-work .full__image .player-container .volume-btn,
  .single-diary .full__image .player-container .volume-btn {
    right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .single-work main,
  .single-diary main {
    overflow: hidden;
  }
}
.single-work main .row--flex,
.single-diary main .row--flex {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .single-work main .row--flex .col--content,
  .single-diary main .row--flex .col--content {
    position: static;
  }
}
.single-work main .row--flex .col--content .col__inside,
.single-diary main .row--flex .col--content .col__inside {
  max-width: 400px;
  margin: 90px auto 0;
}
@media screen and (min-width: 1400px) {
  .single-work main .row--flex .col--content .col__inside,
  .single-diary main .row--flex .col--content .col__inside {
    max-width: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .single-work main .row--flex .col--content .col__inside,
  .single-diary main .row--flex .col--content .col__inside {
    max-width: 82%;
  }
}
@media screen and (max-width: 768px) {
  .single-work main .row--flex .col--content .col__inside,
  .single-diary main .row--flex .col--content .col__inside {
    max-width: 100%;
  }
}
.single-work main .row--flex .col--content .col__inside h1,
.single-diary main .row--flex .col--content .col__inside h1 {
  font-size: 20px;
  font-size: 1.25rem;
}
.single-work main .row--flex .col--content .col__inside .work__blurb,
.single-diary main .row--flex .col--content .col__inside .work__blurb {
  margin-bottom: 80px;
}
.single-work main .row--flex .col--content .col__inside .work__blurb ul li,
.single-diary main .row--flex .col--content .col__inside .work__blurb ul li {
  color: #707372;
}
@media screen and (max-width: 768px) {
  .single-work main .row--flex .col--content .col__inside .work__blurb,
  .single-diary main .row--flex .col--content .col__inside .work__blurb {
    margin-bottom: 40px;
  }
}
.single-work main .row--flex .col--content .btn.btn--text,
.single-diary main .row--flex .col--content .btn.btn--text {
  margin: 30px 0 0 0;
}
.single-work main .row--flex .col--images .col__media,
.single-diary main .row--flex .col--images .col__media {
  margin-top: 62px;
}
@media screen and (max-width: 1023px) {
  .single-work main .row--flex .col--images .col__media,
  .single-diary main .row--flex .col--images .col__media {
    max-width: 82%;
    margin: 45px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .single-work main .row--flex .col--images .col__media,
  .single-diary main .row--flex .col--images .col__media {
    margin-top: 45px;
    max-width: unset;
  }
}
.single-work main .row--flex .col--images .col__media img,
.single-diary main .row--flex .col--images .col__media img {
  width: 100%;
}
.single-work .work__facts,
.single-diary .work__facts {
  clear: both;
  margin: 30px 0 80px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .single-work .work__facts,
  .single-diary .work__facts {
    margin: 50px auto 80px;
    max-width: 82%;
  }
}
@media screen and (max-width: 1002px) {
  .single-work .work__facts,
  .single-diary .work__facts {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .single-work .work__facts,
  .single-diary .work__facts {
    max-width: 100%;
  }
}
.single-work .work__facts .work__fact,
.single-diary .work__facts .work__fact {
  width: 50%;
  float: left;
  margin-bottom: 30px;
}
.single-work .work__facts .work__fact h5,
.single-diary .work__facts .work__fact h5 {
  margin-bottom: 7.5px;
}
@media screen and (max-width: 1024px) {
  .single-work .work__facts .work__fact,
  .single-diary .work__facts .work__fact {
    width: 100%;
  }
}
.single-work .gallery__images,
.single-diary .gallery__images {
  margin: 0 0 80px 0;
  list-style: none;
}
.single-work .gallery__images li,
.single-diary .gallery__images li {
  margin-bottom: 30px;
  position: relative;
}
.single-work .gallery__images li:hover .image__caption,
.single-diary .gallery__images li:hover .image__caption {
  opacity: 1;
}
.single-work .gallery__images li .image__caption,
.single-diary .gallery__images li .image__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: opacity 0.5s;
  padding: 15px;
  color: #707372;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .single-work .gallery__images,
  .single-diary .gallery__images {
    max-width: unset;
    margin-right: -30px;
  }
}
.single-work .fit-video,
.single-diary .fit-video {
  margin-bottom: 30px;
}
.single-work .related__posts,
.single-diary .related__posts {
  padding-bottom: 50px;
}
.single-work .gallery__item,
.single-diary .gallery__item {
  margin-bottom: 30px;
}
.single-work .gallery__item video,
.single-diary .gallery__item video {
  object-fit: cover;
  height: 100%;
}

.item--animate {
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.item--animate.item--visible {
  opacity: 1;
  transform: translateY(0%);
}

.gallery__item,
.gallery__images li,
.media-image {
  position: relative;
}
.gallery__item:hover .image__caption,
.gallery__images li:hover .image__caption,
.media-image:hover .image__caption {
  opacity: 1;
}
.gallery__item .image__caption,
.gallery__images li .image__caption,
.media-image .image__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: opacity 0.5s;
  padding: 15px;
  color: #707372;
  width: 100%;
}

.section--subnav.section--subnav--project-variation:after {
  display: none;
}
.section--subnav.section--subnav--project-variation button {
  color: #B8B9B9;
}

.section--project-filters {
  padding: 30px 0 0;
}
.section--project-filters .subnav_items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 80px;
  row-gap: 30px;
  list-style: none;
  margin-left: 0;
  justify-content: center;
}
.section--project-filters .subnav_items li {
  color: #B7B9B8;
  letter-spacing: 0.02em;
}
.section--project-filters .subnav_items li.current-page button {
  color: #000;
}
.section--project-filters .subnav_items li button {
  transition: color 250ms;
  color: #B8B9B9;
  letter-spacing: 0.075em;
  text-decoration: none;
}
.section--project-filters .subnav_items li button:hover {
  text-decoration: none;
  color: #000;
}
.section--project-filters .project-filters__toggle-row {
  display: flex;
  justify-content: flex-end;
}
.section--project-filters .project-filters__toggle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section--project-filters .project-filters__toggle:hover {
  color: #000;
}
.section--project-filters .project-filters__toggle-icon {
  display: block;
  width: 27px;
  height: 20px;
  flex: 0 0 27px;
}
.section--project-filters .project-filters__locations {
  display: none;
}
.section--project-filters .project-filters__locations.is-open {
  display: block;
}
.section--project-filters .subnav_items--locations {
  justify-content: center;
}
@media screen and (max-width: 1270px) {
  .section--project-filters {
    padding-top: 40px;
  }
  .section--project-filters .subnav_items {
    flex-direction: column;
    row-gap: 15px;
  }
  .section--project-filters .subnav_items li {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .section--project-filters .project-filters__toggle-row {
    justify-content: flex-start;
  }
  .section--project-filters .subnav_items--locations {
    justify-content: center;
  }
}

.project-filters {
  display: flex;
  justify-content: flex-end;
  gap: 45px;
}
@media screen and (max-width: 1024px) {
  .project-filters {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  .project-filters .project-filter {
    width: 100%;
  }
}
.project-filters .project-filter {
  position: relative;
  display: inline-flex;
  background-color: #F1F1F1;
  border-radius: 34px;
  font-size: 18px;
  font-size: 1.125rem;
  transition: background 250ms;
  min-width: 200px;
}
.project-filters .project-filter.active, .project-filters .project-filter:hover {
  background-color: #E2E3E3;
}
.project-filters .project-filter.active .project-filter__options {
  display: flex;
}
.project-filters .project-filter.selected {
  background-color: #E2E3E3;
}
.project-filters .project-filter.selected .project-filter__icon-wrap {
  transform: rotate(45deg);
}
.project-filters .project-filter .project-filter__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  padding: 9px 14px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.project-filters .project-filter .project-filter__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  transition: transform 250ms;
}
.project-filters .project-filter .project-filter__icon-wrap::before {
  content: "+";
}
.project-filters .project-filter .project-filter__options {
  display: none;
  left: 0;
  top: calc(100% + 10px);
  width: 100%;
  position: absolute;
  flex-direction: column;
  gap: 5px;
  background-color: #F1F1F1;
  border: 1px #707372 solid;
  padding: 12px 25px;
  border-radius: 22px;
  z-index: 5;
}
.project-filters .project-filter .project-filter__options button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}
.project-filters .project-filter .project-filter__options button[aria-pressed=true] {
  color: #000;
}

.search-results-page {
  padding: var(--section--vertical-padding) 0;
}
.search-results-page h1 {
  margin-bottom: 30px;
  color: #000000;
}
.search-results-page .nav-links {
  display: flex;
  justify-content: space-between;
}
.search-results-page .result {
  background-color: #F1F1F1;
  padding: 5px 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.search-results-page .posts-navigation h2 {
  display: none;
}
.search-results-page .nav-links a {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.section--vacancy {
  padding: var(--section--vertical-padding) 0;
}
.section--vacancy .form-and-description .col--form {
  order: 2;
}
@media screen and (min-width: 768px) {
  .section--vacancy .form-and-description .col--form {
    order: 1;
  }
}
.section--vacancy .form-and-description .col--description {
  order: 1;
}
@media screen and (min-width: 768px) {
  .section--vacancy .form-and-description .col--description {
    order: 2;
  }
}
@media screen and (min-width: 1400px) {
  .section--vacancy .form-and-description .col--description {
    padding-left: 90px;
  }
}
.section--vacancy .section--vacancy__title-and-button {
  display: flex;
  justify-content: space-between;
}
.section--vacancy .section--vacancy__title-and-button__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .section--vacancy .section--vacancy__title-and-button__button {
    display: inline-block;
  }
}
.section--vacancy .section--vacancy__title-and-button__button a:after {
  transform: rotate(180deg);
  left: -1px;
}
.section--vacancy .section--vacancy__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .section--vacancy .section--vacancy__tags {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.section--vacancy .section--vacancy__tags span {
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #F1F1F1;
  line-height: 1;
  color: #000000;
}
.section--vacancy .section--vacancy__about-the-role {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .section--vacancy .section--vacancy__about-the-role {
    margin-bottom: 60px;
  }
}
.section--vacancy .section--vacancy__about-you {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .section--vacancy .section--vacancy__about-you {
    margin-bottom: 0px;
  }
}
.section--vacancy .section--vacancy__about-you li {
  margin-bottom: 10px;
}
.section--vacancy .section--vacancy__about-you li::marker {
  color: #000000;
}
.section--vacancy .section--vacancy__form .section--vacancy__form__alignment {
  margin: 0 auto;
  max-width: 466px;
}

.team-member-modal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: #FFFFFF;
  width: 100%;
  border-radius: 30px;
  display: none;
  position: fixed;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.team-member-modal::-webkit-scrollbar {
  display: none;
}
.team-member-modal {
  top: 100px;
  max-width: 1260px;
  padding: 60px 70px;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 768px) {
  .team-member-modal {
    padding: 30px 0;
    top: 0;
    max-height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  .team-member-modal__wrapper {
    display: flex;
  }
}
.team-member-modal__wrapper__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .team-member-modal__wrapper__left {
    min-width: 342px;
    margin-right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .team-member-modal__wrapper__left__back {
    text-align: center;
  }
}
.team-member-modal__wrapper__left img {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .team-member-modal__wrapper__left img {
    margin-bottom: 0;
  }
}
.team-member-modal__wrapper__right .name {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .team-member-modal__wrapper__right .name {
    margin-bottom: 5px;
  }
}
.team-member-modal__wrapper__right .job-title {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .team-member-modal__wrapper__right .job-title {
    margin-bottom: 50px;
    font-size: 18px !important;
  }
}
.team-member-modal__wrapper__right .description {
  margin-bottom: 80px;
}
.team-member-modal .related-posts__post-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 75px;
}
@media screen and (max-width: 768px) {
  .team-member-modal .related-posts__post-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.team-member-modal .related-posts__post {
  width: 100%;
  border-top: 1px solid #707372;
  padding-top: 24px;
}
.team-member-modal .related-posts__post a {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
}
.team-member-modal .related-posts__post a:hover {
  color: #E03C31;
  text-decoration: none;
}
.team-member-modal .related-posts__title {
  margin-bottom: 24px;
}
.team-member-modal .btn-goback {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .team-member-modal .btn-goback {
    margin-bottom: 115px;
    left: inherit;
    transform: none;
  }
}
.team-member-modal--single {
  position: static;
  display: block;
  height: auto;
  overflow: visible;
  max-width: none;
  left: auto;
  top: auto;
  transform: none;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .team-member-modal--single .team-member-modal__wrapper__left {
    flex: 0 0 342px;
    width: 342px;
  }
}

body.post-type-archive-journal,
body.tax-journal-type,
body.single-journal {
  background-color: #f1f1f1;
}

.journal-article__go-back {
  display: flex;
  justify-content: center;
  margin: 93px 0;
}
@media screen and (max-width: 768px) {
  .journal-article__go-back {
    margin: 24px 0 100px 0;
  }
}
.journal-article .section--related-news {
  margin-top: 0;
}
.journal-article .section--related-news .slider__related-news-list__article {
  background-color: transparent;
}
.journal-article .section--related-news .slider__related-news-list__article img {
  width: 100%;
}
.journal-article .section--related-news .slider__related-news-list__meta a:hover,
.journal-article .section--related-news .slider__related-news-list__meta a:focus {
  text-decoration: none;
}
.journal-article .section--related-news .slick-list.draggable {
  margin-bottom: 0;
}

.journal-article-hero {
  --journal-hero-content-left: 124px;
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, min(850px, 50%)) minmax(0, 1fr);
  overflow: hidden;
}
.journal-article-hero--no-image {
  --journal-hero-content-left: clamp(50px, 10vw, 200px);
  grid-template-columns: minmax(0, 1fr);
}
.journal-article-hero__image {
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  aspect-ratio: 1276/1090;
}
.journal-article-hero__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.journal-article-hero__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 70px 78px 70px var(--journal-hero-content-left);
  position: relative;
}
.journal-article-hero__pills {
  margin: 0;
  position: absolute;
  right: 57px;
  top: 51px;
}
.journal-article-hero__copy {
  max-width: 688px;
}
.journal-article-hero__title-group {
  margin-top: 61px;
}
.journal-article-hero__title {
  color: #000;
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 15px;
  text-transform: none;
  padding: 0;
}
.journal-article-hero__excerpt {
  color: #707372;
  font-family: "Maison Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}
.journal-article-hero__excerpt p:last-child {
  margin-bottom: 0;
}
.journal-article-hero__share {
  bottom: 70px;
  left: var(--journal-hero-content-left);
  position: absolute;
}
.journal-article-hero__share-label {
  color: #000;
  display: block;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.journal-article-hero__share-icons {
  display: flex;
  gap: 10px;
}
.journal-article-hero__share-icons a {
  align-items: center;
  background: #e2e3e3;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  transition: background 250ms;
  width: 40px;
}
.journal-article-hero__share-icons a:hover {
  background-color: #E03C31;
}
.journal-article-hero__share-icons img {
  display: block;
  height: auto;
  max-height: 24px;
  max-width: 24px;
  transition: filter 250ms;
  width: auto;
}
.journal-article-hero__share-icons .journal-social-link--linkedin img {
  max-height: 20px;
  max-width: 20px;
}
.journal-article-hero__share-icons .journal-social-link--wechat img {
  max-width: 22px;
}
.journal-article-hero__share-icons .journal-social-link--rednote img {
  max-width: 19px;
}
.journal-article-hero__share-icons .wechat-qr img {
  max-height: none;
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .journal-article-hero {
    --journal-hero-content-left: 70px;
    grid-template-columns: minmax(0, 49%) minmax(0, 1fr);
  }
  .journal-article-hero__details {
    padding-left: var(--journal-hero-content-left);
    padding-right: 55px;
  }
}
@media screen and (max-width: 1024px) {
  .journal-article-hero {
    --journal-hero-content-left: 55px;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
  }
  .journal-article-hero__image {
    aspect-ratio: 850/724;
    height: auto;
    width: 100%;
  }
  .journal-article-hero__details {
    min-height: 520px;
    padding: 55px;
  }
  .journal-article-hero__pills {
    left: 55px;
    right: auto;
    top: 45px;
  }
  .journal-article-hero__share {
    bottom: 55px;
  }
}
@media screen and (max-width: 768px) {
  .journal-article-hero {
    --journal-hero-content-left: 30px;
  }
  .journal-article-hero__details {
    min-height: 480px;
    padding: 40px 30px;
  }
  .journal-article-hero__pills {
    position: static;
  }
  .journal-article-hero__share {
    margin-top: 40px;
    position: static;
  }
  .journal-article-hero__title-group {
    margin-top: 45px;
  }
}

.section--journal-archive {
  margin-bottom: 0;
  padding: 110px 0 0 0;
}
@media screen and (max-width: 768px) {
  .section--journal-archive {
    padding-top: 65px;
  }
}
.section--journal-archive.is-loading .journal-featured,
.section--journal-archive.is-loading .journal-grid {
  opacity: 0.55;
}

.journal-filters {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .journal-filters {
    margin-bottom: 60px;
  }
}
.journal-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 45px;
  justify-content: center;
  list-style: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .journal-filters ul {
    gap: 10px;
  }
}
.journal-filters .btn {
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .journal-filters .btn {
    font-size: 10px;
    min-width: 0;
    padding: 7.5px 10px;
  }
}
.journal-filters .btn.is-active {
  background: #000;
  border-color: #000;
  color: #fff;
}

.journal-intro {
  color: #707372;
  margin: 0 auto 145px;
  max-width: 742px;
  text-align: center;
}
.journal-intro[hidden] {
  display: none;
}
@media screen and (max-width: 768px) {
  .journal-intro {
    margin-bottom: 70px;
    text-align: left;
  }
}
.journal-intro p:last-child {
  margin-bottom: 0;
}

.journal-featured,
.journal-grid {
  transition: opacity 250ms ease-in-out;
}

.journal-featured {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .journal-featured {
    margin-bottom: 30px;
  }
}

.journal-featured-card {
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 530px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .journal-featured-card {
    grid-template-columns: 1fr;
  }
}
.journal-featured-card--no-image {
  grid-template-columns: 1fr;
}
.journal-featured-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 85px);
}
@media screen and (max-width: 768px) {
  .journal-featured-card__content {
    padding: 24px;
  }
}
.journal-featured-card__title {
  color: #000;
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 45px 0 20px;
  text-transform: none;
  padding: 0;
}
.journal-featured-card__title a {
  color: inherit;
  text-decoration: none;
}
.journal-featured-card__excerpt {
  color: #707372;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 0;
}
.journal-featured-card__excerpt p:last-child {
  margin-bottom: 0;
}
.journal-featured-card__image {
  aspect-ratio: 850/566;
  border-radius: 20px 0 0 20px;
  display: block;
  overflow: hidden;
}
.journal-featured-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.journal-featured-card__image:hover img {
  transform: scale(1.02);
}
.journal-featured-card .journal-pills {
  margin-top: 35px;
}
@media screen and (min-width: 1025px) {
  .journal-featured-card__image {
    aspect-ratio: auto;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .journal-featured-card__image {
    border-radius: 20px 20px 0 0;
  }
}

.journal-meta {
  align-items: center;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 6px;
  line-height: 1.2;
}
.journal-meta__author {
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.journal-meta__dot {
  background: currentColor;
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.journal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.journal-pill {
  border: 1px solid currentColor;
  border-radius: 20px;
  color: #707372;
  display: inline-flex;
  font-family: "Maison Neue Extended Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  justify-content: center;
  letter-spacing: 0.14em;
  line-height: 1;
  min-width: 90px;
  padding: 8px 13px;
  text-transform: uppercase;
}

.journal-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: minmax(0, 1fr);
}
@media screen and (min-width: 768px) {
  .journal-grid {
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .journal-grid {
    gap: 45px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1400px) {
  .journal-grid {
    gap: 85px;
  }
}

.journal-card {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 886px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .journal-card {
    height: 760px;
  }
}
@media screen and (max-width: 768px) {
  .journal-card {
    height: unset;
  }
}
.journal-card--layout-one {
  background: #000;
  color: #fff;
}
.journal-card--layout-one .journal-meta {
  color: #fff;
}
.journal-card--layout-one .journal-pill {
  color: #fff;
}
.journal-card--layout-one .journal-card__excerpt {
  color: #b7b9b8;
  font-size: 20px;
  font-size: 1.25rem;
}
.journal-card--layout-two {
  background: #fff;
  color: #000;
}
.journal-card--layout-two .journal-card__excerpt {
  color: #707372;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}
.journal-card--layout-two .journal-card__image {
  border-radius: 20px;
  margin: auto clamp(28px, 3vw, 55px) 12px;
}
.journal-card__content {
  padding: clamp(28px, 3vw, 55px);
}
.journal-card__title {
  color: inherit;
  font-family: "Maison Neue Demi", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 55px 0 20px;
  text-transform: none;
  padding: 0;
}
.journal-card__title a {
  color: inherit;
  text-decoration: none;
}
.journal-card__excerpt {
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 6;
}
.journal-card__excerpt p:last-child {
  margin-bottom: 0;
}
.journal-card__image {
  border-radius: 20px 20px 0 0;
  display: block;
  margin-top: auto;
  overflow: hidden;
}
.journal-card__image img {
  display: block;
  height: auto;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  aspect-ratio: 650/636;
  object-fit: cover;
}
.journal-card__image:hover img {
  transform: scale(1.02);
}
.journal-card__media {
  aspect-ratio: 1/1;
  border-radius: 20px;
  margin: auto clamp(20px, 3vw, 55px) 12px;
  overflow: hidden;
}
.journal-card__media img,
.journal-card__media video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
}
.journal-card__spotify {
  margin: auto clamp(20px, 3vw, 55px) 24px;
}
.journal-card__spotify iframe {
  border: 0;
  display: block;
  max-width: 100%;
  width: 100%;
}
.journal-card__pills {
  margin: 28px clamp(28px, 3vw, 55px) 35px;
}
.journal-card__pills--after-media {
  margin-top: 20px;
}
.journal-card__footer {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 20px clamp(28px, 3vw, 55px) 35px;
}
.journal-card__footer .journal-card__pills {
  margin: 0;
}
.journal-card__read-more {
  color: #000;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
  text-decoration: underline;
}

.journal-see-more {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  margin-top: 55px;
  overflow-anchor: none;
}
.journal-see-more[hidden] {
  display: none !important;
}
.journal-see-more.is-loading {
  opacity: 0.65;
  pointer-events: none;
}
.journal-see-more button {
  background: none;
  border: 0;
  color: #000;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
}

.journal-empty {
  margin: 60px 0;
  text-align: center;
}
.journal-empty[hidden] {
  display: none;
}

.journal-archive-status {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip: rect(0 0 0 0);
}