@charset "UTF-8";
/*
@function tracking($unit, $base: 16, $return: 'px') {
	@if $return = 'em' {
		@return ($unit) / 1000;
	} @else {
		@return ($unit * $base) / 1000;
	}
}

@mixin tracking( $target, $base ){
	letter-spacing: tracking( $target, $base );
}
*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 25px;
  height: 17px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 25px;
    height: 3px;
    background-color: #FFF;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -7px; }
  .hamburger-inner::after {
    bottom: -7px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 50px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 50px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 50px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 50px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5px, -6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5px, 6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5px, -6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5px, 6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -14px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -14px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 7px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 14px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 7px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 14px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 7px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -50px;
      top: -50px;
      transform: translate3d(50px, 50px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -50px;
      top: -50px;
      transform: translate3d(-50px, 50px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 7px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -50px;
      top: 50px;
      transform: translate3d(50px, -50px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -50px;
      top: 50px;
      transform: translate3d(-50px, -50px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 14px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-3.57143px, -4px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 14px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(3.57143px, -4px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 7px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 14px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 7px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -14px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/* BEGIN reset css */
/* remove and neutralize the inconsistent default styling of HTML elements */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0; }

section, aside {
  padding: 0; }

/* END reset css */
/*!
 * App CSS
 * @description App CSS
 * @author Ricardo Lopes
 */
html, body {
  min-height: 100%;
  height: 100%;
  background-color: #FFFFFF;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  color: #212121;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: none;
  font-weight: 400; }

.clear {
  *zoom: 1; }
  .clear:after, .clear:before {
    content: "";
    display: table; }
  .clear:after {
    clear: both; }

.clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0pt;
  visibility: hidden; }

img, video {
  border: none; }
  img.responsive, video.responsive {
    max-width: 100%;
    height: auto; }
  img.responsive-full, video.responsive-full {
    max-width: none;
    width: 100%;
    height: auto; }

::selection {
  background: #212121;
  color: #FFFFFF;
  /* Safari */ }

::-moz-selection {
  background: #212121;
  color: #FFFFFF;
  /* Firefox */ }

img::selection {
  color: white;
  background: transparent; }

img::-moz-selection {
  color: white;
  background: transparent; }

input, textarea, select {
  outline: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  color: #212121;
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  margin: 0; }

p {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 28px;
  font-weight: 400;
  color: #212121; }

b, strong {
  font-weight: 700; }

a {
  color: #212121;
  text-decoration: none; }
  @media (min-width: 1024px) {
    a {
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
      a:hover {
        text-decoration: underline;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; } }

.fleft {
  float: left; }

.fright {
  float: right; }

.no-padding {
  padding: 0; }

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

table {
  width: 100%; }
  table td {
    vertical-align: top; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.hidden {
  display: none; }

.hidden-xs {
  display: none; }

@media (min-width: 768px) {
  .hidden-xs {
    display: block; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none; } }

@media (min-width: 992px) and (max-width: 1023px) {
  .hidden-md {
    display: none; } }

@media (min-width: 1024px) and (max-width: 1299px) {
  .hidden-lg {
    display: none; } }

@media (min-width: 1300px) {
  .hidden-xl {
    display: none; } }

.visible-xs {
  display: none; }

.visible-sm {
  display: none; }

@media (max-width: 767px) {
  .visible-xs {
    display: block; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block; } }

body.in-popup, body.is-in-popup {
  overflow: hidden; }

#mainWrapper, #main {
  padding-top: 100px; }
  @media (min-width: 1024px) {
    #mainWrapper, #main {
      padding-top: 0; } }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px; }
  @media (min-width: 992px) {
    .container {
      padding: 0 40px; } }
  @media (min-width: 1600px) {
    .container {
      max-width: 1488px; } }

a, a:visited {
  -webkit-tap-highlight-color: transparent; }

a.button, a.button:visited {
  display: inline-block;
  border-radius: 36px;
  background-color: #212121;
  border: 2px solid #212121;
  color: #FFFFFF;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.028em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 230px;
  text-align: left;
  position: relative; }
  a.button:after, a.button:visited:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 30px;
    left: auto;
    width: 20px;
    height: 13px;
    background: url("../img/svg/icon-arrow-right-light.svg") center center no-repeat transparent;
    background-size: contain; }
  a.button.btn-secondary, a.button:visited.btn-secondary {
    color: #212121;
    background-color: transparent;
    border: 2px solid #212121;
    padding: 15px 30px; }
    a.button.btn-secondary:after, a.button:visited.btn-secondary:after {
      background-image: url("../img/svg/icon-arrow-right.svg"); }
  @media (max-width: 1023px) {
    a.button.btn-mobile-primary, a.button:visited.btn-mobile-primary {
      background-color: transparent; }
      a.button.btn-mobile-primary:before, a.button:visited.btn-mobile-primary:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 36px;
        border: 2px solid #212121;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; }
      a.button.btn-mobile-primary:before, a.button:visited.btn-mobile-primary:before {
        border-color: #FFFFFF; } }
  @media (min-width: 1024px) {
    a.button, a.button:visited {
      border-radius: 36px;
      padding: 18px 32px;
      font-size: 20px;
      line-height: 24px;
      border: 0 !important;
      letter-spacing: 0em;
      min-width: 267px;
      overflow: hidden; }
      a.button:after, a.button:visited:after {
        right: 32px;
        width: 22px;
        height: 14px;
        z-index: 3; }
      a.button:before, a.button:visited:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 36px;
        border: 2px solid #212121;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; }
      a.button span.hover-layer, a.button:visited span.hover-layer {
        background-color: #212121;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        color: #ffffff;
        display: block;
        height: 0;
        position: absolute;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: height 0.6s, width 0.6s;
        -moz-transition: height 0.6s, width 0.6s;
        -ms-transition: height 0.6s, width 0.6s;
        -o-transition: height 0.6s, width 0.6s;
        transition: height 0.6s, width 0.6s;
        width: 0;
        z-index: 1; }
      a.button span.button-text, a.button:visited span.button-text {
        position: relative;
        z-index: 2; }
      a.button:hover, a.button:visited:hover {
        color: #FFFFFF;
        text-decoration: none;
        /*border-color: transparent;*/ }
        a.button:hover span.hover-layer, a.button:visited:hover span.hover-layer {
          height: 700px;
          width: 700px; }
        a.button:hover:after, a.button:visited:hover:after {
          background-image: url("../img/svg/icon-arrow-right-light.svg"); }
      a.button.btn-secondary-desktop, a.button:visited.btn-secondary-desktop {
        color: #212121;
        background-color: transparent;
        border: 2px solid #212121;
        padding: 18px 32px; }
        a.button.btn-secondary-desktop:after, a.button:visited.btn-secondary-desktop:after {
          background-image: url("../img/svg/icon-arrow-right.svg"); }
        a.button.btn-secondary-desktop:hover, a.button:visited.btn-secondary-desktop:hover {
          color: #FFFFFF; }
          a.button.btn-secondary-desktop:hover:after, a.button:visited.btn-secondary-desktop:hover:after {
            background-image: url("../img/svg/icon-arrow-right-light.svg"); }
      a.button.btn-primary, a.button:visited.btn-primary {
        background-color: transparent;
        border: 2px solid transparent !important;
        padding: 18px 32px; }
        a.button.btn-primary:before, a.button:visited.btn-primary:before {
          background-color: #212121;
          border-color: #FFFFFF; }
        a.button.btn-primary span.hover-layer, a.button:visited.btn-primary span.hover-layer {
          background-color: #FFFFFF; }
        a.button.btn-primary:hover, a.button:visited.btn-primary:hover {
          border: 2px solid #212121 !important;
          color: #212121; }
          a.button.btn-primary:hover:after, a.button:visited.btn-primary:hover:after {
            background-image: url("../img/svg/icon-arrow-right.svg"); }
      a.button.btn-secondary, a.button.btn-secondary-desktop, a.button:visited.btn-secondary, a.button:visited.btn-secondary-desktop {
        padding: 18px 32px; } }
  @media (min-width: 1600px) {
    a.button, a.button:visited {
      padding: 21px 40px;
      font-size: 24px;
      line-height: 30px;
      min-width: 317px; }
      a.button:after, a.button:visited:after {
        right: 40px;
        width: 26px;
        height: 17px; }
      a.button.btn-secondary, a.button.btn-secondary-desktop, a.button:visited.btn-secondary, a.button:visited.btn-secondary-desktop {
        padding: 18px 40px; } }

a.full-link, a.full-link:visited {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

input:focus::-webkit-input-placeholder {
  color: transparent !important; }

input:focus:-moz-placeholder {
  color: transparent !important; }

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent !important; }

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent !important; }

/* IE 10+ */
textarea:focus::-webkit-input-placeholder {
  color: transparent !important; }

textarea:focus:-moz-placeholder {
  color: transparent !important; }

/* FF 4-18 */
textarea:focus::-moz-placeholder {
  color: transparent !important; }

/* FF 19+ */
textarea:focus:-ms-input-placeholder {
  color: transparent !important; }

/* IE 10+ */
textarea:focus, input:focus {
  outline: none; }

select {
  outline: none; }

.swiper-custom-nav span {
  outline: none; }

.swiper-custom-prev {
  outline: none; }

.swiper-custom-next {
  outline: none; }

@media (min-width: 1024px) {
  body {
    cursor: none; }
  .cursor {
    position: absolute;
    background-color: #F91C46;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: scale(1); }
    .cursor.active {
      opacity: 0.5;
      transform: scale(0); }
    .cursor.hovered {
      opacity: 0.08; }
    .cursor.drag {
      opacity: 0; }
  .cursor-follower {
    position: absolute;
    background-color: rgba(249, 28, 70, 0.3);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: translate(5px, 5px);
    opacity: 0; }
    .cursor-follower.active {
      opacity: 0.7;
      transform: scale(3); }
    .cursor-follower.hovered {
      opacity: 0.08; }
  .cursor-drag {
    position: absolute;
    background-color: black;
    width: 106px;
    height: 106px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: translate(5px, 5px);
    width: 106px;
    height: 106px;
    background: url("../img/svg/arrows-desktop.svg") center center no-repeat transparent;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.4s; }
    .cursor-drag.drag {
      opacity: 1;
      transition: opacity 0.4s; }
    .cursor-drag.active {
      opacity: 0 !important;
      transition: opacity 0.4s; }
    .cursor-drag.hovered {
      opacity: 0 !important;
      transition: opacity 0.4s; } }

body.page-template-page-contacts #headerWrapper .header {
  background-color: #212121; }

@media (min-width: 1024px) {
  body.page-template-page-contacts #headerWrapper .header {
    background-color: transparent; } }

#headerWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background-color: transparent;
  /*
	@media (min-width: $screen-xl-min) {
		.container {
			position: relative;
			height: 160px;
			@include transition();
			@include box-shadow($x:0, $y:0, $blur:0, $color: transparent);
		}
		.header {
			padding: 0;
			overflow: visible;
			position: static;
		}
		.logo {
			padding: 0;
			float: none;
			margin-top: 0;
			position: absolute; z-index: 1000;
			bottom: 66px; left: 50%; margin-left: -160px;
			a,a:visited { width: 321px; height: 28px; }
		}
		.nav-toggle { display: none !important; }
		nav.nav-wrapper {
			@include transition($seconds:0);
			display: block !important;
			position: relative;
			z-index: 2;
			top: auto; left: auto; width: auto; right: auto;
			height: auto; clear: both;
			overflow: visible;
			background: none;
			padding-top: 63px;
			@include box-sizing();
			.header-navs {
				padding: 0;
				font-size: 0;
			}
			.header-extras {
				display: block;
				position: absolute;
				right: 0; top: 63px;
				padding-top: 0;
				margin-top: 0;
				@include transition($seconds:1s);
				.langs-wrapper {
					display: block !important;
					width: auto; padding: 0;
					text-align: right;
					ul {
						margin-bottom: 0;
						li {
							font-size: 11px; line-height: 34px;
							&:last-child { margin-right: 0; }
							&:first-child { margin-right: 9px; }
							a,a:visited {
								&:hover { color: $theme-light; }
							}
							&.active {
								a,a:visited {
								}
							}
						}
					}
				}
			}
			ul.main-nav {
				padding: 0;
				margin: 0;
				> li {
					margin: 0;
					display: inline-block; vertical-align: middle;
					font-size: 11px; line-height: 34px;
					a,a:visited {
						color: $theme-primary;
						&:hover { color: $theme-light !important; }
					}
				}
				&.main-nav-left {
					display: inline-block; width: 50%;
					text-align: right; padding-right: 205px;
					text-align: left;
					@include box-sizing();
					> li {
						margin-left: 62px;
						&:first-child { margin-left: 0; }
					}
				}
				&.main-nav-right {
					display: inline-block; width: 50%;
					text-align: left; padding-left: 205px;
					@include box-sizing();
					> li {
						margin-right: 44px;
						&:last-child { margin-right: 0; }
					}
				}
			}
		}

		&.scrolled,&.scrolled.header-light {
			@include box-shadow($x:0, $y:0, $blur:15px, $color: #333);
			@include transition();
			background-color: $theme-bg-color-secondary;
			nav.nav-wrapper {
				padding-top: 30px;
				.header-extras { top: 30px; }
			}
			.container { height: 100px; }
			.logo { bottom: 36px; }
			nav.nav-wrapper {
				ul.main-nav {
					li {
						a,a:visited {
							color: #2C6173;
						}
					}
				}
				.header-extras .langs-wrapper {
					ul {
						li {
							a,a:visited {
								color: #2C6173;
							}
						}
					}
				}
			}
			.logo {
				a,a:visited {
					background-image:url($img-url+'svg/logo.svg');
				}
			}
		}
		&.header-light {
			.logo {
				a,a:visited {
					background-image:url($img-url+'svg/logo-light.svg');
				}
			}
			nav.nav-wrapper {
				ul.main-nav {
					li {
						a,a:visited {
							color: #D9D2CC;
						}
					}
				}
				.header-extras .langs-wrapper {
					ul {
						li {
							a,a:visited {
								color: #D9D2CC;
							}
						}
					}
				}
			}
		}
	}
	*/ }
  #headerWrapper.opened {
    position: fixed;
    height: 100vh;
    /*background-color: $theme-light;*/ }
    #headerWrapper.opened .nav-wrapper {
      top: 0;
      background-color: #0B0B0B;
      -moz-transition: 1s ease;
      -ms-transition: 1s ease;
      -o-transition: 1s ease;
      transition: 1s ease;
      -webkit-transition: 1s ease; }
    #headerWrapper.opened .header {
      /*background-color: #D9D2CC;*/
      /*background-color: #0B0B0B;*/
      background-color: transparent;
      /*background-color: $theme-primary;*/ }
    #headerWrapper.opened .logo-h1 a, #headerWrapper.opened .logo-h1 a:visited {
      background-image: url("../img/svg/logo-mobile-light.svg"); }
    #headerWrapper.opened a.nav-toggle, #headerWrapper.opened a.nav-toggle:visited {
      width: 30px;
      height: 20px;
      background: url("../img/svg/icon-arrow-left-light.svg") !important; }
  #headerWrapper .header {
    background-color: #FFFFFF;
    /*padding: 0 30px;*/
    z-index: 2;
    position: relative; }
  #headerWrapper .container {
    max-width: 100%;
    padding: 0; }
  #headerWrapper .logo-h1 {
    margin-left: 30px;
    margin-top: 40px;
    padding-bottom: 40px;
    float: left;
    line-height: 500px;
    overflow: hidden;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease; }
    #headerWrapper .logo-h1 a, #headerWrapper .logo-h1 a:visited {
      display: block;
      margin: 0 auto;
      width: 136px;
      height: 20px;
      background: url("../img/svg/logo-mobile.svg") center center no-repeat transparent;
      background-size: contain; }
  #headerWrapper a.nav-toggle, #headerWrapper a.nav-toggle:visited {
    float: right;
    margin-top: 42px;
    margin-right: 30px;
    width: 20px;
    height: 17px;
    background: url("../img/svg/icon-nav.svg") center center no-repeat transparent;
    background-size: contain;
    line-height: 500px;
    overflow: hidden;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease; }
  #headerWrapper nav.nav-wrapper {
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    display: block !important;
    position: fixed;
    z-index: 1;
    top: -120%;
    width: 100%;
    left: 0;
    height: 100vh;
    clear: both;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    #headerWrapper nav.nav-wrapper .header-navs {
      padding: 0 25px;
      padding-top: 120px;
      text-align: right; }
    #headerWrapper nav.nav-wrapper ul.main-nav > li {
      font-weight: 600;
      font-size: 40px;
      line-height: 50px;
      letter-spacing: 0.005em;
      margin-bottom: 32px; }
      #headerWrapper nav.nav-wrapper ul.main-nav > li:last-child {
        margin-bottom: 0; }
      #headerWrapper nav.nav-wrapper ul.main-nav > li > a, #headerWrapper nav.nav-wrapper ul.main-nav > li > a:visited {
        color: #272727;
        text-decoration: none;
        display: inline-block;
        vertical-align: middle; }
        #headerWrapper nav.nav-wrapper ul.main-nav > li > a span.main-nav-title, #headerWrapper nav.nav-wrapper ul.main-nav > li > a:visited span.main-nav-title {
          display: none; }
      #headerWrapper nav.nav-wrapper ul.main-nav > li.current_menu_item > a, #headerWrapper nav.nav-wrapper ul.main-nav > li.current_menu_item > a:visited, #headerWrapper nav.nav-wrapper ul.main-nav > li.current_page_parent > a, #headerWrapper nav.nav-wrapper ul.main-nav > li.current_page_parent > a:visited, #headerWrapper nav.nav-wrapper ul.main-nav > li.current-menu-item > a, #headerWrapper nav.nav-wrapper ul.main-nav > li.current-menu-item > a:visited {
        text-decoration: none;
        color: #FFFFFF; }
    #headerWrapper nav.nav-wrapper .header-extras {
      padding: 60px 30px;
      position: relative; }
      #headerWrapper nav.nav-wrapper .header-extras .address {
        display: none; }
      #headerWrapper nav.nav-wrapper .header-extras .contacts h3 {
        font-weight: 500;
        font-size: 17px;
        line-height: 21px;
        margin-bottom: 16px;
        color: #757575;
        letter-spacing: 0.028em; }
      #headerWrapper nav.nav-wrapper .header-extras .contacts h4 {
        font-weight: 400;
        color: #F91C46;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.028em; }
      #headerWrapper nav.nav-wrapper .header-extras .contacts p {
        color: #FFFFFF;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 28px;
        letter-spacing: 0.028em; }
        #headerWrapper nav.nav-wrapper .header-extras .contacts p:last-child {
          margin-bottom: 0; }
        #headerWrapper nav.nav-wrapper .header-extras .contacts p a, #headerWrapper nav.nav-wrapper .header-extras .contacts p a:visited {
          color: #FFFFFF; }
      #headerWrapper nav.nav-wrapper .header-extras .social-nav {
        display: none; }
      #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper {
        position: absolute;
        bottom: 60px;
        right: 30px; }
        #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul {
          font-size: 0;
          text-align: right; }
          #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li {
            font-weight: 500;
            text-transform: uppercase;
            font-size: 18px;
            line-height: 28px;
            letter-spacing: 0.028em;
            margin-left: 15px;
            display: inline-block;
            vertical-align: middle; }
            #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li a, #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li a:visited {
              color: #757575; }
            #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li.active a, #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li.active a:visited {
              color: #FFFFFF; }
  #headerWrapper.scrolled {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  @media (max-width: 1023px) {
    #headerWrapper .header .page-top-nav {
      display: none !important; }
    #headerWrapper.header-mobile-light .header {
      background-color: transparent; }
    #headerWrapper.header-mobile-light .logo-h1 a, #headerWrapper.header-mobile-light .logo-h1 a:visited {
      background-image: url("../img/svg/logo-mobile-light.svg"); }
    #headerWrapper.header-mobile-light a.nav-toggle, #headerWrapper.header-mobile-light a.nav-toggle:visited {
      background-image: url("../img/svg/icon-nav-light.svg"); }
    #headerWrapper.header-mobile-light.opened a.nav-toggle, #headerWrapper.header-mobile-light.opened a.nav-toggle:visited {
      width: 30px;
      height: 20px;
      background: url("../img/svg/icon-arrow-left-light.svg") !important; }
    #headerWrapper.scrolled .logo-h1 {
      margin-top: 20px;
      padding-bottom: 20px; }
    #headerWrapper.scrolled .nav-toggle {
      margin-top: 21px; } }
  @media (min-width: 1024px) {
    #headerWrapper .header {
      background-color: transparent;
      padding: 0 30px; }
    #headerWrapper .logo-h1 {
      position: relative;
      z-index: 2;
      margin-left: 46px;
      margin-top: 23px;
      padding-bottom: 23px;
      float: left;
      line-height: 500px;
      overflow: hidden;
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
      #headerWrapper .logo-h1 a, #headerWrapper .logo-h1 a:visited {
        display: block;
        margin: 0 auto;
        width: 6px;
        height: 30px;
        background-image: url("../img/svg/logo-desktop.svg"); }
    #headerWrapper a.nav-toggle, #headerWrapper a.nav-toggle:visited {
      position: relative;
      z-index: 2;
      float: right;
      margin-top: 30px;
      margin-right: 42px;
      width: 20px;
      height: 17px; }
    #headerWrapper .header-aux {
      padding: 80px 40px;
      padding-top: 135px;
      margin: 0 auto;
      max-width: 1140px; }
    #headerWrapper nav.nav-wrapper {
      background-color: transparent;
      -moz-transition: 0 ease;
      -ms-transition: 0 ease;
      -o-transition: 0 ease;
      transition: 0 ease;
      -webkit-transition: 0 ease; }
      #headerWrapper nav.nav-wrapper .header-navs {
        float: right;
        padding: 0;
        /*padding-top: 30px;*/
        margin-top: -30px; }
      #headerWrapper nav.nav-wrapper ul.main-nav > li {
        font-weight: 700;
        /*font-size: 88px; line-height: 120px;*/
        font-size: 60px;
        line-height: 90px;
        letter-spacing: 0em;
        margin-bottom: 40px;
        position: relative; }
        #headerWrapper nav.nav-wrapper ul.main-nav > li span.nav-arrow {
          position: absolute;
          bottom: 28px;
          right: 0;
          height: 24px;
          width: 24px;
          background: url("../img/svg/nav-arrow.svg") center center no-repeat transparent;
          background-size: contain;
          transform: scale(0); }
        #headerWrapper nav.nav-wrapper ul.main-nav > li:last-child {
          margin-bottom: 0; }
        #headerWrapper nav.nav-wrapper ul.main-nav > li > a, #headerWrapper nav.nav-wrapper ul.main-nav > li > a:visited {
          position: relative;
          -moz-transition: 0 ease;
          -ms-transition: 0 ease;
          -o-transition: 0 ease;
          transition: 0 ease;
          -webkit-transition: 0 ease; }
          #headerWrapper nav.nav-wrapper ul.main-nav > li > a:hover, #headerWrapper nav.nav-wrapper ul.main-nav > li > a:visited:hover {
            -moz-transition: 0 ease;
            -ms-transition: 0 ease;
            -o-transition: 0 ease;
            transition: 0 ease;
            -webkit-transition: 0 ease; }
          #headerWrapper nav.nav-wrapper ul.main-nav > li > a span.main-nav-text, #headerWrapper nav.nav-wrapper ul.main-nav > li > a:visited span.main-nav-text {
            position: relative;
            display: inline-block; }
          #headerWrapper nav.nav-wrapper ul.main-nav > li > a span.main-nav-title, #headerWrapper nav.nav-wrapper ul.main-nav > li > a:visited span.main-nav-title {
            opacity: 0;
            display: block;
            position: absolute;
            top: calc(100% - 24px);
            /*bottom: 24px;*/
            left: -60px;
            color: #F91C46;
            font-size: 20px;
            line-height: 24px;
            font-weight: 400; }
      #headerWrapper nav.nav-wrapper .header-extras {
        float: left;
        padding: 0; }
        #headerWrapper nav.nav-wrapper .header-extras .address {
          display: block; }
          #headerWrapper nav.nav-wrapper .header-extras .address h3 {
            font-weight: 500;
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 16px;
            color: #757575;
            letter-spacing: 0.008em; }
          #headerWrapper nav.nav-wrapper .header-extras .address p {
            color: #FFFFFF;
            font-size: 20px;
            line-height: 32px;
            margin-bottom: 32px;
            letter-spacing: 0em; }
            #headerWrapper nav.nav-wrapper .header-extras .address p a, #headerWrapper nav.nav-wrapper .header-extras .address p a:visited {
              color: #FFFFFF; }
        #headerWrapper nav.nav-wrapper .header-extras .contacts {
          margin-bottom: 32px; }
          #headerWrapper nav.nav-wrapper .header-extras .contacts h3 {
            font-weight: 500;
            font-size: 20px;
            line-height: 24px;
            color: #757575;
            letter-spacing: 0.008em; }
          #headerWrapper nav.nav-wrapper .header-extras .contacts h4 {
            font-size: 16px;
            line-height: 32px; }
          #headerWrapper nav.nav-wrapper .header-extras .contacts p {
            color: #FFFFFF;
            font-size: 20px;
            line-height: 32px;
            margin-bottom: 32px;
            letter-spacing: 0em; }
            #headerWrapper nav.nav-wrapper .header-extras .contacts p:last-child {
              margin-bottom: 0; }
            #headerWrapper nav.nav-wrapper .header-extras .contacts p a, #headerWrapper nav.nav-wrapper .header-extras .contacts p a:visited {
              color: #FFFFFF; }
        #headerWrapper nav.nav-wrapper .header-extras .social-nav {
          display: block;
          margin-bottom: 48px; }
          #headerWrapper nav.nav-wrapper .header-extras .social-nav h3 {
            font-weight: 500;
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 16px;
            color: #757575;
            letter-spacing: 0.008em; }
          #headerWrapper nav.nav-wrapper .header-extras .social-nav li {
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 32px;
            letter-spacing: 0em; }
            #headerWrapper nav.nav-wrapper .header-extras .social-nav li:last-child {
              margin-bottom: 0; }
            #headerWrapper nav.nav-wrapper .header-extras .social-nav li a, #headerWrapper nav.nav-wrapper .header-extras .social-nav li a:visited {
              color: #FFFFFF; }
        #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper {
          position: relative;
          bottom: auto;
          right: auto; }
          #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul {
            text-align: left; }
            #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li {
              font-size: 20px;
              line-height: 24px;
              letter-spacing: 0.008em;
              margin-left: 0;
              margin-right: 20px; }
              #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li a, #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li a:visited {
                color: #757575; }
              #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li.active a, #headerWrapper nav.nav-wrapper .header-extras .langs-wrapper ul li.active a:visited {
                color: #FFFFFF; }
    #headerWrapper .anim-header-layer {
      background-color: #212121;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100vw;
      pointer-events: none; }
    #headerWrapper.header-light .logo-h1 a, #headerWrapper.header-light .logo-h1 a:visited {
      background-image: url("../img/svg/logo-desktop-light.svg"); }
    #headerWrapper.header-light a.nav-toggle, #headerWrapper.header-light a.nav-toggle:visited {
      background-image: url("../img/svg/icon-nav-light.svg"); }
    #headerWrapper.opened .page-top-nav {
      opacity: 0; }
    #headerWrapper.opened .header-progress-bar {
      opacity: 0; }
    #headerWrapper.opened .header {
      background-color: transparent !important;
      /*background-color: $theme-primary !important;*/ }
    #headerWrapper.opened nav.nav-wrapper {
      background-color: transparent;
      -moz-transition: 0 ease;
      -ms-transition: 0 ease;
      -o-transition: 0 ease;
      transition: 0 ease;
      -webkit-transition: 0 ease; }
    #headerWrapper.opened .logo-h1 a, #headerWrapper.opened .logo-h1 a:visited {
      background-image: url("../img/svg/logo-desktop-light.svg") !important; }
    #headerWrapper .header {
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
    #headerWrapper.scrolled .header {
      transform: translate3d(0, -75px, 0);
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
    #headerWrapper.scrolled-up .header {
      transform: translate3d(0, 0, 0);
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
    #headerWrapper.scrolled {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1); }
    #headerWrapper.scrolled-2 .header {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      background-color: #FFFFFF;
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
    #headerWrapper.header-light.scrolled-2 .logo-h1 a, #headerWrapper.header-light.scrolled-2 .logo-h1 a:visited {
      background-image: url("../img/svg/logo-desktop.svg"); }
    #headerWrapper.header-light.scrolled-2 a.nav-toggle, #headerWrapper.header-light.scrolled-2 a.nav-toggle:visited {
      background-image: url("../img/svg/icon-nav.svg"); }
    #headerWrapper .page-top-nav {
      position: absolute;
      z-index: 1;
      top: 0;
      right: auto;
      left: 0;
      width: 100%;
      opacity: 1;
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
      #headerWrapper .page-top-nav.hide {
        opacity: 0;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
      #headerWrapper .page-top-nav .container {
        max-width: 1488px; }
      #headerWrapper .page-top-nav ul {
        font-size: 0;
        text-align: center;
        display: flex;
        justify-content: space-between; }
        #headerWrapper .page-top-nav ul li {
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          letter-spacing: 0.028em;
          margin-bottom: 0; }
          #headerWrapper .page-top-nav ul li a, #headerWrapper .page-top-nav ul li a:visited {
            color: #212121;
            display: block;
            padding-top: 30px;
            position: relative; }
            #headerWrapper .page-top-nav ul li a:after, #headerWrapper .page-top-nav ul li a:visited:after {
              content: "";
              position: absolute;
              top: 0;
              left: 50%;
              margin-left: -25px;
              width: 50px;
              height: 4px;
              background-color: #F91C46;
              opacity: 0; }
            #headerWrapper .page-top-nav ul li a:hover, #headerWrapper .page-top-nav ul li a:visited:hover {
              text-decoration: none; }
              #headerWrapper .page-top-nav ul li a:hover:after, #headerWrapper .page-top-nav ul li a:visited:hover:after {
                opacity: 1;
                -moz-transition: 0.4s ease;
                -ms-transition: 0.4s ease;
                -o-transition: 0.4s ease;
                transition: 0.4s ease;
                -webkit-transition: 0.4s ease; }
          #headerWrapper .page-top-nav ul li.active {
            font-weight: 600; }
            #headerWrapper .page-top-nav ul li.active a:after, #headerWrapper .page-top-nav ul li.active a:visited:after {
              opacity: 1; }
        #headerWrapper .page-top-nav ul.aligned-center {
          display: block; }
          #headerWrapper .page-top-nav ul.aligned-center li {
            display: inline-block;
            vertical-align: middle;
            width: 25%; } }
  @media (min-width: 1600px) {
    #headerWrapper .header {
      padding: 0 40px; }
    #headerWrapper .logo-h1 {
      margin-left: 62px;
      margin-top: 30px;
      padding-bottom: 30px; }
      #headerWrapper .logo-h1 a, #headerWrapper .logo-h1 a:visited {
        width: 8px;
        height: 40px; }
    #headerWrapper a.nav-toggle, #headerWrapper a.nav-toggle:visited {
      float: right;
      margin-top: 42px;
      margin-right: 56px;
      width: 24px;
      height: 16px; }
    #headerWrapper .header-aux {
      padding: 115px 40px;
      padding-top: 170px;
      max-width: 1488px; }
    #headerWrapper nav.nav-wrapper .header-navs {
      /*padding-top: 50px;*/ }
    #headerWrapper nav.nav-wrapper ul.main-nav > li {
      font-weight: 700;
      font-size: 80px;
      line-height: 90px;
      letter-spacing: 0.03em;
      margin-bottom: 50px; }
      #headerWrapper nav.nav-wrapper ul.main-nav > li:last-child {
        margin-bottom: 0; }
    #headerWrapper nav.nav-wrapper .header-extras .address h3 {
      margin-bottom: 30px; }
    #headerWrapper nav.nav-wrapper .header-extras .address p {
      font-size: 24px;
      margin-bottom: 40px; }
    #headerWrapper nav.nav-wrapper .header-extras .contacts {
      margin-bottom: 40px; }
      #headerWrapper nav.nav-wrapper .header-extras .contacts h3 {
        margin-bottom: 30px; }
      #headerWrapper nav.nav-wrapper .header-extras .contacts h4 {
        font-size: 20px; }
      #headerWrapper nav.nav-wrapper .header-extras .contacts p {
        color: #FFFFFF;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px; }
        #headerWrapper nav.nav-wrapper .header-extras .contacts p:last-child {
          margin-bottom: 0; }
    #headerWrapper nav.nav-wrapper .header-extras .social-nav {
      display: block;
      margin-bottom: 60px; }
      #headerWrapper nav.nav-wrapper .header-extras .social-nav h3 {
        margin-bottom: 30px; }
      #headerWrapper nav.nav-wrapper .header-extras .social-nav li {
        font-size: 24px;
        margin-bottom: 26px;
        letter-spacing: 0em; }
        #headerWrapper nav.nav-wrapper .header-extras .social-nav li:last-child {
          margin-bottom: 0; }
    #headerWrapper.scrolled .header {
      transform: translate3d(0, -100px, 0); }
    #headerWrapper.scrolled-up .header {
      transform: translate3d(0, 0, 0); }
    #headerWrapper .page-top-nav ul li {
      font-size: 20px;
      line-height: 24px;
      letter-spacing: 0.008em; }
      #headerWrapper .page-top-nav ul li a, #headerWrapper .page-top-nav ul li a:visited {
        padding-top: 42px; } }

.header-progress-bar {
  display: none; }
  @media (min-width: 1024px) {
    .header-progress-bar {
      display: block;
      position: absolute;
      top: 75px;
      left: 0;
      width: 0;
      height: 4px;
      background-color: #F91C46;
      opacity: 1;
      -moz-transition: 0.4s ease;
      -ms-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease;
      -webkit-transition: 0.4s ease; }
      .header-progress-bar.hide {
        opacity: 0;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; } }
  @media (min-width: 1600px) {
    .header-progress-bar {
      top: 100px; } }

#headerWrapper .page-top-nav .container {
  max-width: 760px; }

@media (min-width: 1200px) {
  #headerWrapper .page-top-nav .container {
    max-width: 960px; } }

@media (min-width: 1400px) {
  #headerWrapper .page-top-nav .container {
    max-width: 1100px; } }

@media (min-width: 1600px) {
  #headerWrapper .page-top-nav .container {
    max-width: 1200px; } }

@media (min-width: 1800px) {
  #headerWrapper .page-top-nav .container {
    max-width: 1488px; } }

#footerWrapper {
  position: relative;
  font-size: 0; }
  #footerWrapper .footer-content {
    background-color: #212121;
    padding: 40px 0; }
  #footerWrapper h2, #footerWrapper h3, #footerWrapper p, #footerWrapper a, #footerWrapper a:visited {
    color: #FFFFFF; }
  #footerWrapper .contacts-info {
    margin-bottom: 80px; }
    #footerWrapper .contacts-info h2 {
      font-size: 32px;
      line-height: 38px;
      margin-bottom: 64px;
      letter-spacing: 0.008em; }
    #footerWrapper .contacts-info p {
      letter-spacing: 0.028em;
      font-size: 17px;
      line-height: 25px;
      margin-bottom: 22px; }
      #footerWrapper .contacts-info p:last-child {
        margin-bottom: 0; }
  #footerWrapper ul.secondary-nav {
    margin-bottom: 80px; }
    #footerWrapper ul.secondary-nav li {
      letter-spacing: 0.028em;
      font-weight: 500;
      font-size: 20px;
      line-height: 24px;
      margin-bottom: 24px; }
      #footerWrapper ul.secondary-nav li:last-child {
        margin-bottom: 0; }
  #footerWrapper .footer-nav {
    margin-bottom: 80px; }
    #footerWrapper .footer-nav h3 {
      letter-spacing: 0.028em;
      color: #757575;
      font-size: 17px;
      line-height: 21px;
      margin-bottom: 8px;
      font-weight: 500; }
    #footerWrapper .footer-nav ul li {
      letter-spacing: 0.028em;
      font-size: 18px;
      line-height: 20px;
      margin-bottom: 20px; }
      #footerWrapper .footer-nav ul li:last-child {
        margin-bottom: 0; }
  #footerWrapper .subscribe-newsletter-wrapper {
    margin-bottom: 70px; }
    #footerWrapper .subscribe-newsletter-wrapper .form-field {
      position: relative;
      border-bottom: 1px solid #FFFFFF; }
    #footerWrapper .subscribe-newsletter-wrapper input {
      border: 0;
      width: 100%;
      background-color: transparent;
      padding: 0 80px 10px 0;
      font-family: "Inter", Helvetica, Arial, sans-serif;
      font-size: 18px;
      line-height: 20px;
      font-weight: 400;
      color: #757575;
      letter-spacing: 0.028em;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      #footerWrapper .subscribe-newsletter-wrapper input::-webkit-input-placeholder {
        color: #757575;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
      #footerWrapper .subscribe-newsletter-wrapper input::-moz-placeholder {
        color: #757575;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
      #footerWrapper .subscribe-newsletter-wrapper input:-ms-input-placeholder {
        color: #757575;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
      #footerWrapper .subscribe-newsletter-wrapper input:-moz-placeholder {
        color: #757575;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
    #footerWrapper .subscribe-newsletter-wrapper a.newsletter-submit, #footerWrapper .subscribe-newsletter-wrapper a.newsletter-submit:visited {
      display: block;
      position: absolute;
      right: 0;
      bottom: 10px;
      font-weight: 500;
      font-size: 18px;
      line-height: 21px;
      letter-spacing: 0.028em; }
  #footerWrapper p.copyright {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  #footerWrapper .col-left p.copyright {
    display: none; }
  #footerWrapper .col-right .footer-nav-1 {
    display: none; }
  @media (min-width: 1024px) {
    #footerWrapper {
      padding: 30px;
      padding-top: 0; }
      #footerWrapper .footer-content {
        padding: 90px 0; }
      #footerWrapper .col-left {
        display: inline-block;
        vertical-align: top;
        width: 50%; }
      #footerWrapper .col-right {
        display: inline-block;
        vertical-align: top;
        width: 50%; }
      #footerWrapper .col-left p.copyright {
        display: block; }
      #footerWrapper .col-right .footer-nav-1 {
        display: inline-block; }
      #footerWrapper .col-right p.copyright {
        display: none; } }
  @media (min-width: 1300px) {
    #footerWrapper .col-left {
      width: 70%; }
    #footerWrapper .col-right {
      width: 30%; }
    #footerWrapper .contacts-info {
      display: inline-block;
      vertical-align: bottom;
      width: 55.64%; }
      #footerWrapper .contacts-info h2 {
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 54px;
        letter-spacing: 0em; }
      #footerWrapper .contacts-info p {
        letter-spacing: 0em;
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 52px; }
        #footerWrapper .contacts-info p:last-child {
          margin-bottom: 0; }
    #footerWrapper ul.secondary-nav {
      width: 44.36%;
      display: inline-block;
      vertical-align: bottom; }
      #footerWrapper ul.secondary-nav li {
        letter-spacing: 0em;
        margin-bottom: 42px; }
        #footerWrapper ul.secondary-nav li:last-child {
          margin-bottom: 0; }
    #footerWrapper .footer-nav {
      padding-top: 10px;
      display: inline-block;
      vertical-align: top;
      margin-bottom: 80px; }
      #footerWrapper .footer-nav h3 {
        letter-spacing: 0.008em;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 32px; }
      #footerWrapper .footer-nav ul li {
        letter-spacing: 0em;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 35px; }
        #footerWrapper .footer-nav ul li:last-child {
          margin-bottom: 0; }
      #footerWrapper .footer-nav.footer-nav-1 {
        width: calc(100% - 100px); }
      #footerWrapper .footer-nav.footer-nav-2 {
        width: 100px; }
    #footerWrapper .subscribe-newsletter-wrapper {
      margin-bottom: 0; }
      #footerWrapper .subscribe-newsletter-wrapper input {
        padding: 0 100px 10px 0;
        font-size: 20px;
        line-height: 32px;
        letter-spacing: 0em; }
      #footerWrapper .subscribe-newsletter-wrapper a.newsletter-submit, #footerWrapper .subscribe-newsletter-wrapper a.newsletter-submit:visited {
        font-weight: 400;
        font-size: 20px;
        line-height: 32px;
        letter-spacing: 0em; }
    #footerWrapper p.copyright {
      font-weight: 400;
      font-size: 22px;
      line-height: 28px;
      letter-spacing: 0.03em; } }
  @media (min-width: 1600px) {
    #footerWrapper {
      padding-left: 40px;
      padding-right: 40px; }
      #footerWrapper .col-left {
        width: 69%; }
      #footerWrapper .col-right {
        width: 31%; }
      #footerWrapper .contacts-info {
        width: 55%; }
        #footerWrapper .contacts-info h2 {
          margin-bottom: 50px; }
        #footerWrapper .contacts-info p {
          font-size: 24px;
          line-height: 32px;
          margin-bottom: 44px; }
          #footerWrapper .contacts-info p:last-child {
            margin-bottom: 0; }
      #footerWrapper ul.secondary-nav {
        width: 45%; }
        #footerWrapper ul.secondary-nav li {
          font-size: 24px;
          line-height: 30px;
          margin-bottom: 30px; }
          #footerWrapper ul.secondary-nav li:last-child {
            margin-bottom: 0; }
      #footerWrapper .footer-nav {
        margin-bottom: 76px; }
        #footerWrapper .footer-nav h3 {
          margin-bottom: 30px; }
        #footerWrapper .footer-nav ul li {
          font-size: 24px;
          line-height: 32px;
          margin-bottom: 30px; }
          #footerWrapper .footer-nav ul li:last-child {
            margin-bottom: 0; }
        #footerWrapper .footer-nav.footer-nav-1 {
          width: calc(100% - 115px); }
        #footerWrapper .footer-nav.footer-nav-2 {
          width: 115px; } }

.entry .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }

.entry .video-wrapper iframe, .entry .video-wrapper object, .entry .video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.entry table td, .entry table tr {
  padding: 10px; }

.entry > h1, .entry > h2 {
  color: #212121;
  font-size: 32px;
  line-height: 38px;
  margin-top: 40px;
  margin-bottom: 30px; }

.entry > h3 {
  color: #212121;
  font-size: 24px;
  line-height: 30px;
  margin-top: 30px;
  margin-bottom: 20px; }

.entry h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px; }

.entry > h5, .entry > h6 {
  color: #212121;
  font-size: 16px;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500; }

.entry > p {
  color: #757575;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.028em;
  margin-bottom: 20px; }

.entry hr {
  margin-top: 40px;
  margin-bottom: 40px;
  border: 0;
  border-top: 1px solid #757575; }

.entry blockquote {
  margin-bottom: 40px;
  margin-top: 40px;
  background-color: #FAFAFA;
  padding: 40px 30px 30px 30px;
  border-radius: 6px;
  position: relative; }
  .entry blockquote:before {
    content: "“";
    color: #F91C46;
    position: absolute;
    top: 0px;
    left: 24px;
    font-weight: 600;
    font-size: 120px;
    line-height: 62px; }
  .entry blockquote > p {
    color: #212121;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    font-weight: 500;
    margin-bottom: 0; }
    .entry blockquote > p i {
      font-style: normal; }
    .entry blockquote > p:last-child {
      margin-top: 40px;
      font-size: 18px;
      line-height: 21px;
      letter-spacing: 0.028em;
      color: #F91C46; }
      .entry blockquote > p:last-child:first-child {
        margin-top: 0;
        font-size: 17px;
        line-height: 27px;
        letter-spacing: 0.028em;
        color: #212121; }

.entry a, .entry a:visited {
  text-decoration: underline;
  color: #F91C46;
  font-weight: 500; }

.entry ul, .entry ol {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 40px; }
  .entry ul li, .entry ol li {
    color: #757575;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.028em;
    margin-bottom: 16px; }
    .entry ul li:last-child, .entry ol li:last-child {
      margin-bottom: 0; }

.entry ol {
  counter-reset: item; }
  .entry ol li {
    position: relative;
    counter-increment: item; }
    .entry ol li:before {
      content: counter(item) ". ";
      position: absolute;
      color: #757575;
      top: 0;
      left: -30px; }

.entry ul {
  list-style-type: none; }
  .entry ul li {
    position: relative; }
    .entry ul li:before {
      content: "\2022";
      position: absolute;
      color: #757575;
      top: 0;
      left: -20px; }

.entry i, .entry em {
  font-style: italic;
  font-weight: 400; }
  .entry i strong, .entry em strong {
    font-weight: 600; }

.entry strong {
  font-weight: 600; }
  .entry strong i, .entry strong em {
    font-style: italic;
    font-weight: 400; }

.entry p.with-iframe {
  margin: 40px 0; }

.entry p.image-wrapper {
  margin: 40px 0; }

.entry > *:first-child {
  margin-top: 0 !important; }

.entry > *:last-child {
  margin-bottom: 0 !important; }

@media (min-width: 1024px) {
  .entry blockquote > p {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0em;
    font-weight: 600; }
    .entry blockquote > p:last-child {
      margin-top: 30px;
      font-size: 16px;
      line-height: 20px;
      letter-spacing: 0em; }
      .entry blockquote > p:last-child:first-child {
        margin-top: 0;
        font-size: 36px;
        line-height: 44px;
        letter-spacing: 0em; } }

@media (min-width: 1300px) {
  .entry table td, .entry table tr {
    padding: 20px; }
  .entry > h1, .entry > h2 {
    font-size: 36px;
    line-height: 46px;
    margin-top: 60px;
    margin-bottom: 50px; }
  .entry > h3 {
    font-size: 32px;
    line-height: 38px;
    margin-top: 45px;
    margin-bottom: 35px; }
  .entry h4 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 30px; }
  .entry > h5, .entry > h6 {
    font-size: 20px;
    line-height: 24px;
    margin-top: 30px;
    margin-bottom: 20px; }
  .entry > p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px; }
  .entry hr {
    margin-top: 60px;
    margin-bottom: 60px; }
  .entry blockquote {
    margin-bottom: 60px;
    margin-top: 60px;
    padding: 60px 40px 40px 40px;
    border-radius: 6px;
    position: relative; }
    .entry blockquote:before {
      top: 15px;
      left: 24px;
      font-weight: 600;
      font-size: 160px;
      line-height: 62px; }
    .entry blockquote > p {
      font-size: 48px;
      line-height: 60px; }
      .entry blockquote > p:last-child {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0.028em; }
        .entry blockquote > p:last-child:first-child {
          font-size: 48px;
          line-height: 60px; }
  .entry ul, .entry ol {
    padding-left: 40px;
    margin-bottom: 60px; }
    .entry ul li, .entry ol li {
      font-size: 16px;
      line-height: 26px;
      margin-bottom: 10px; }
      .entry ul li:last-child, .entry ol li:last-child {
        margin-bottom: 0; }
  .entry ol li:before {
    left: -40px; }
  .entry ul li:before {
    left: -30px; }
  .entry p.with-iframe {
    margin: 60px 0; }
  .entry p.image-wrapper {
    margin: 60px 0; } }

@media (min-width: 1600px) {
  .entry table td, .entry table tr {
    padding: 20px; }
  .entry > h1, .entry > h2 {
    font-size: 48px;
    line-height: 60px;
    margin-top: 80px;
    margin-bottom: 60px; }
  .entry > h3 {
    font-size: 36px;
    line-height: 46px;
    margin-top: 60px;
    margin-bottom: 40px; }
  .entry h4 {
    font-size: 32px;
    line-height: 38px;
    margin-top: 30px;
    margin-bottom: 30px; }
  .entry > h5, .entry > h6 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 40px;
    margin-bottom: 20px; }
  .entry > p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px; }
  .entry hr {
    margin-top: 80px;
    margin-bottom: 80px; }
  .entry blockquote {
    margin-bottom: 80px;
    margin-top: 80px;
    padding: 80px 60px 60px 60px;
    border-radius: 6px;
    position: relative; }
    .entry blockquote:before {
      top: 15px;
      left: 24px;
      font-weight: 600;
      font-size: 160px;
      line-height: 62px; }
    .entry blockquote > p {
      font-size: 48px;
      line-height: 60px; }
  .entry ul, .entry ol {
    padding-left: 60px;
    margin-bottom: 80px; }
    .entry ul li, .entry ol li {
      font-size: 20px;
      line-height: 30px;
      margin-bottom: 20px; }
      .entry ul li:last-child, .entry ol li:last-child {
        margin-bottom: 0; }
  .entry ol li:before {
    left: -60px; }
  .entry ul li:before {
    left: -50px; }
  .entry p.with-iframe {
    margin: 80px 0; }
  .entry p.image-wrapper {
    margin: 80px 0; } }

.page-top-banner {
  margin-top: -100px;
  height: 100vh;
  width: 100%;
  position: relative; }
  .page-top-banner .image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .page-top-banner .image img {
      display: none; }
  .page-top-banner .bg-layer-1 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(33, 33, 33, 0.15); }
  .page-top-banner .bg-layer-2 {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    height: 59%;
    background: black;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); }
  .page-top-banner .page-title {
    position: absolute;
    z-index: 4;
    bottom: 32px;
    left: 0;
    right: 0; }
    .page-top-banner .page-title h1, .page-top-banner .page-title p {
      color: #FFFFFF; }
    .page-top-banner .page-title h1 {
      font-size: 40px;
      line-height: 48px;
      margin-bottom: 10px; }
      .page-top-banner .page-title h1.no-description {
        margin-bottom: 0; }
    .page-top-banner .page-title p {
      font-weight: 600;
      font-size: 23px;
      line-height: 28px;
      letter-spacing: 0.008em;
      margin-bottom: 0; }
  .page-top-banner .page-top-nav {
    position: absolute;
    z-index: 5;
    top: 122px;
    right: 0;
    width: 100%; }
    .page-top-banner .page-top-nav ul {
      text-align: right; }
      .page-top-banner .page-top-nav ul li {
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.028em;
        margin-bottom: 32px; }
        .page-top-banner .page-top-nav ul li a, .page-top-banner .page-top-nav ul li a:visited {
          color: #FFFFFF; }
        .page-top-banner .page-top-nav ul li.active {
          font-weight: 600; }
  @media (min-width: 1024px) {
    .page-top-banner {
      margin: 0 30px;
      width: calc(100% - 60px);
      height: calc(100vh - 30px); }
      .page-top-banner .bg-layer-2 {
        height: 42%; }
      .page-top-banner .page-title {
        bottom: 115px; }
        .page-top-banner .page-title h1 {
          font-size: 46px;
          line-height: 62px;
          letter-spacing: 0.005em;
          margin-bottom: 0; }
        .page-top-banner .page-title p {
          font-size: 46px;
          line-height: 62px;
          letter-spacing: 0.005em; }
      .page-top-banner .page-top-nav {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0; }
        .page-top-banner .page-top-nav ul {
          font-size: 0;
          text-align: center;
          display: flex;
          justify-content: space-between; }
          .page-top-banner .page-top-nav ul li {
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 0.028em;
            margin-bottom: 0; }
            .page-top-banner .page-top-nav ul li a, .page-top-banner .page-top-nav ul li a:visited {
              color: #FFFFFF;
              display: block;
              padding-bottom: 30px;
              position: relative; }
              .page-top-banner .page-top-nav ul li a:after, .page-top-banner .page-top-nav ul li a:visited:after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                margin-left: -25px;
                width: 50px;
                height: 4px;
                background-color: #F91C46;
                opacity: 0;
                -moz-transition: 0.4s ease;
                -ms-transition: 0.4s ease;
                -o-transition: 0.4s ease;
                transition: 0.4s ease;
                -webkit-transition: 0.4s ease; }
              .page-top-banner .page-top-nav ul li a:hover, .page-top-banner .page-top-nav ul li a:visited:hover {
                /*color: $theme-secondary;*/
                text-decoration: none; }
                .page-top-banner .page-top-nav ul li a:hover:after, .page-top-banner .page-top-nav ul li a:visited:hover:after {
                  opacity: 1;
                  -moz-transition: 0.4s ease;
                  -ms-transition: 0.4s ease;
                  -o-transition: 0.4s ease;
                  transition: 0.4s ease;
                  -webkit-transition: 0.4s ease; }
            .page-top-banner .page-top-nav ul li.active a:after, .page-top-banner .page-top-nav ul li.active a:visited:after {
              opacity: 1; }
          .page-top-banner .page-top-nav ul.aligned-center {
            display: block; }
            .page-top-banner .page-top-nav ul.aligned-center li {
              display: inline-block;
              vertical-align: middle;
              width: 25%; } }
  @media (min-width: 1600px) {
    .page-top-banner {
      margin: 0 40px;
      width: calc(100% - 80px);
      height: calc(100vh - 40px); }
      .page-top-banner .bg-layer-2 {
        height: 46%; }
      .page-top-banner .page-title {
        bottom: 180px; }
        .page-top-banner .page-title h1 {
          font-size: 64px;
          line-height: 80px; }
        .page-top-banner .page-title p {
          font-size: 64px;
          line-height: 80px; }
      .page-top-banner .page-top-nav ul li {
        font-size: 20px;
        line-height: 24px; }
        .page-top-banner .page-top-nav ul li a, .page-top-banner .page-top-nav ul li a:visited {
          padding-bottom: 36px; } }

.page-block-text {
  margin: 80px 0;
  font-size: 0; }
  .page-block-text h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 40px; }
  .page-block-text p {
    color: #757575;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .page-block-text .container {
      max-width: 940px; }
    .page-block-text h2 {
      display: inline-block;
      vertical-align: top;
      width: 51%;
      font-size: 36px;
      line-height: 46px;
      margin-bottom: 0; }
    .page-block-text p {
      display: inline-block;
      vertical-align: top;
      width: 49%;
      font-size: 16px;
      line-height: 26px; } }
  @media (min-width: 1600px) {
    .page-block-text {
      margin: 120px 0; }
      .page-block-text .container {
        max-width: 1230px; }
      .page-block-text h2 {
        font-size: 48px;
        line-height: 62px; }
      .page-block-text p {
        font-size: 20px;
        line-height: 30px; } }

.contacts-cta-wrapper {
  font-size: 0;
  background-color: #FAFAFA;
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center; }
  .contacts-cta-wrapper h3 {
    margin-bottom: 54px;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.008em; }
  .contacts-cta-wrapper .btns-wrapper span.sep {
    font-weight: 400;
    display: block;
    margin: 16px 0;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.028em; }
  @media (min-width: 1024px) {
    .contacts-cta-wrapper {
      margin: 0 30px;
      padding-top: 146px;
      padding-bottom: 146px;
      text-align: left; }
      .contacts-cta-wrapper .container {
        max-width: 940px; }
      .contacts-cta-wrapper h3 {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 267px);
        margin-bottom: 0;
        font-size: 36px;
        line-height: 46px;
        letter-spacing: 0em; }
      .contacts-cta-wrapper .btns-wrapper {
        display: inline-block;
        vertical-align: middle;
        width: 267px;
        text-align: center; }
        .contacts-cta-wrapper .btns-wrapper span.sep {
          margin: 20px 0;
          font-size: 24px;
          line-height: 32px;
          letter-spacing: 0em; } }
  @media (min-width: 1600px) {
    .contacts-cta-wrapper {
      margin: 0 40px;
      padding-top: 130px;
      padding-bottom: 130px; }
      .contacts-cta-wrapper .container {
        max-width: 1230px; }
      .contacts-cta-wrapper h3 {
        width: calc(100% - 317px);
        font-size: 48px;
        line-height: 62px; }
      .contacts-cta-wrapper .btns-wrapper {
        width: 317px; }
        .contacts-cta-wrapper .btns-wrapper span.sep {
          margin: 24px 0; } }

.form-field-hidden {
  display: none !important; }

span.wpcf7-not-valid-tip {
  display: none !important; }

.ajax-loader {
  display: none !important; }

.wpcf7-form-control.wpcf7-validates-as-required.wpcf7-not-valid {
  border-color: #FF695B !important; }

textarea.wpcf7-form-control.wpcf7-validates-as-required.wpcf7-not-valid {
  border-color: #FF695B !important; }

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  clear: both;
  border: 0;
  padding: 10px;
  margin: 0;
  text-align: center;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  background-color: #FF695B;
  margin-bottom: 0;
  margin-top: 15px; }

.wpcf7 form.sent .wpcf7-response-output {
  clear: both;
  border: 0;
  padding: 10px;
  margin: 0;
  text-align: center;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #212121;
  background-color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 15px; }

body {
  background-color: #FFFFFF; }
  body.light {
    background-color: #FFFFFF; }
  body.dark {
    background-color: #212121; }

@media (min-width: 1024px) {
  body.light .who-we-are-wrapper .who-we-are-content .who-we-are-text h3 {
    color: #212121; }
  body.light .about-team-wrapper h2 {
    color: #212121; }
  body.light .hp-about-wrapper .about-intro h3, body.light .hp-about-wrapper .about-intro p {
    color: #212121; }
  body.light .hp-about-wrapper .about-slider .swiper-slide .info h4 {
    color: #212121; }
    body.light .hp-about-wrapper .about-slider .swiper-slide .info h4 a, body.light .hp-about-wrapper .about-slider .swiper-slide .info h4 a:visited {
      color: #212121; }
  body.light .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.quote {
    color: #212121; }
  body.light .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.author {
    color: #212121; }
  body.light .skills-content-wrapper .skills-content .skills-text h3 {
    color: #212121; }
  body.dark .about-additional-info-wrapper .info .text p {
    color: #FFFFFF; }
  body.dark .design-thinking-wrapper .intro h2, body.dark .design-thinking-wrapper .item .info h3 {
    color: #FFFFFF; }
  body.dark .about-team-list h2 {
    color: #FFFFFF; }
  body.dark .about-team-wrapper .about-team-list .team-list .team-item .info h3 {
    color: #FFFFFF; }
  body.dark .skills-detail-wrapper h2 {
    color: #FFFFFF; }
  body.dark .hp-intro-wrapper .text p {
    color: #FFFFFF; }
  body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button, body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:visited {
    color: #FFFFFF;
    border-color: #FFFFFF; }
    body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:before, body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:visited:before {
      background-color: transparent;
      border-color: #FFFFFF; }
    body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button span.hover-layer, body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:visited span.hover-layer {
      background-color: #FFFFFF; }
    body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:after, body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:visited:after {
      background-image: url("../img/svg/icon-arrow-right-light.svg"); }
    body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:hover, body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:visited:hover {
      color: #212121; }
      body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:hover:after, body.dark .hp-projects-wrapper .works-list-wrapper .btns-wrapper a.button:visited:hover:after {
        background-image: url("../img/svg/icon-arrow-right.svg"); }
  body.dark .hp-logos-wrapper .logos-list .logo-item img.dark {
    display: none; }
  body.dark .hp-logos-wrapper .logos-list .logo-item img.light {
    display: inline-block; }
  body.dark #headerWrapper.scrolled-2 .header {
    background-color: #212121; }
  body.dark #headerWrapper .logo-h1 a, body.dark #headerWrapper .logo-h1 a:visited {
    background-image: url("../img/svg/logo-desktop-light.svg"); }
  body.dark #headerWrapper a.nav-toggle, body.dark #headerWrapper a.nav-toggle:visited {
    background-image: url("../img/svg/icon-nav-light.svg"); }
  body.dark #headerWrapper.header-light.scrolled-2 .logo-h1 a, body.dark #headerWrapper.header-light.scrolled-2 .logo-h1 a:visited {
    background-image: url("../img/svg/logo-desktop-light.svg"); }
  body.dark #headerWrapper.header-light.scrolled-2 a.nav-toggle, body.dark #headerWrapper.header-light.scrolled-2 a.nav-toggle:visited {
    background-image: url("../img/svg/icon-nav-light.svg"); }
  body.dark #headerWrapper .header .page-top-nav ul li a, body.dark #headerWrapper .header .page-top-nav ul li a.visited {
    color: #FFFFFF; } }

.block-project-information {
  font-size: 0;
  margin: 80px 0; }
  .block-project-information h3 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.008em;
    margin-bottom: 40px; }
  .block-project-information .details-list ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.028em;
    margin-bottom: 40px;
    color: #E0E0E0; }
    .block-project-information .details-list ul li span.value {
      color: #757575;
      font-weight: 500; }
  .block-project-information p {
    color: #757575;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.028em;
    margin-bottom: 20px; }
  .block-project-information ul.categories-list {
    font-size: 0; }
    .block-project-information ul.categories-list li {
      font-size: 17px;
      line-height: 20px;
      letter-spacing: 0.028em;
      font-weight: 500;
      display: inline-block;
      vertical-align: top;
      margin-top: 20px;
      margin-right: 20px; }
      .block-project-information ul.categories-list li a, .block-project-information ul.categories-list li a:visited {
        background-color: #F91C46;
        color: #FFFFFF;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 2px; }
  @media (min-width: 1024px) {
    .block-project-information h3 {
      display: inline-block;
      vertical-align: bottom;
      width: 36%;
      font-size: 36px;
      line-height: 46px;
      letter-spacing: 0em;
      margin-bottom: 32px; }
    .block-project-information .details-list {
      display: inline-block;
      vertical-align: bottom;
      width: 64%;
      text-align: right;
      margin-bottom: 32px; }
      .block-project-information .details-list ul li {
        text-align: left;
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
        margin-right: 90px; }
        .block-project-information .details-list ul li:last-child {
          margin-right: 0;
          text-align: right; }
        .block-project-information .details-list ul li span.value {
          letter-spacing: 0.008em; }
    .block-project-information p {
      font-size: 16px;
      margin-bottom: 11px; }
    .block-project-information ul.categories-list li {
      font-size: 14px;
      line-height: 18px;
      margin-top: 25px;
      margin-right: 25px; }
      .block-project-information ul.categories-list li a, .block-project-information ul.categories-list li a:visited {
        padding: 5px 10px; } }
  @media (min-width: 1600px) {
    .block-project-information {
      margin-top: 120px; }
      .block-project-information h3 {
        width: 41%;
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 46px; }
      .block-project-information .details-list {
        width: 59%;
        margin-bottom: 46px; }
        .block-project-information .details-list ul li {
          font-size: 20px;
          line-height: 26px;
          margin-right: 115px; }
      .block-project-information p {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 30px; }
      .block-project-information ul.categories-list li {
        font-size: 20px;
        line-height: 24px;
        margin-top: 30px;
        margin-right: 30px; }
        .block-project-information ul.categories-list li a, .block-project-information ul.categories-list li a:visited {
          padding: 6px 10px; } }

.block-image {
  margin: 80px 0; }
  .block-image.img-auto {
    margin: 0 -30px; }
    .block-image.img-auto .image {
      text-align: center;
      background-image: none !important; }
      .block-image.img-auto .image img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
        height: auto; }
  .block-image.img-contained .container {
    padding: 0; }
  .block-image.img-contained .image {
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .block-image.img-contained .image img {
      display: none; }
  .block-image.img-full .container {
    padding: 0;
    max-width: 100%; }
  .block-image.img-full .image {
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .block-image.img-full .image img {
      display: none; }
  .block-image.img-full.with-mobile-img .image.img-desktop {
    display: none; }
  @media (max-width: 1023px) {
    .block-image.img-full.bg-mobile-left .image {
      background-position: center left; }
    .block-image.img-full.bg-mobile-right .image {
      background-position: center right; } }
  @media (min-width: 992px) {
    .block-image.img-auto {
      margin: 0; } }
  @media (min-width: 1024px) {
    .block-image.img-contained .container {
      padding: 0 40px; }
    .block-image.img-contained .image {
      padding-top: 56.56%; }
    .block-image.img-full .container {
      padding: 0;
      overflow: hidden; }
    .block-image.img-full .image {
      background-attachment: fixed;
      padding-top: 0;
      height: 100vh; }
    .block-image.img-full.with-mobile-img .image.img-mobile {
      display: none; }
    .block-image.img-full.with-mobile-img .image.img-desktop {
      display: block; } }
  @media (min-width: 1600px) {
    .block-image {
      margin: 90px 0; } }

.block-images-2 {
  margin: 80px 0;
  font-size: 0; }
  .block-images-2 .image {
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 46px; }
    .block-images-2 .image:last-child {
      margin-bottom: 0; }
    .block-images-2 .image img {
      display: none; }
  .block-images-2 .video {
    width: 100%;
    margin-bottom: 46px; }
    .block-images-2 .video:last-child {
      margin-bottom: 0; }
    .block-images-2 .video video {
      display: block;
      margin: 0 auto;
      max-width: 100%;
      height: auto; }
  @media (min-width: 1024px) {
    .block-images-2 .images-list {
      margin: 0 -12px; }
      .block-images-2 .images-list .image {
        margin: 0 12px;
        width: calc(50% - 24px);
        padding-top: calc(50% - 24px);
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0; }
        .block-images-2 .images-list .image.img-small {
          width: calc(33.33% - 24px);
          padding-top: calc(33.33% - 24px); }
        .block-images-2 .images-list .image.img-large {
          width: calc(66.66% - 24px);
          padding-top: calc(33.33% - 24px); }
      .block-images-2 .images-list .video {
        margin: 0 12px;
        width: calc(50% - 24px);
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0; }
        .block-images-2 .images-list .video.vid-small {
          width: calc(33.33% - 24px); }
        .block-images-2 .images-list .video.vid-large {
          width: calc(66.66% - 24px); } }
  @media (min-width: 1600px) {
    .block-images-2 {
      margin: 120px 0; } }

.block-images-3 {
  margin: 80px 0;
  font-size: 0; }
  .block-images-3 .image {
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 32px; }
    .block-images-3 .image:last-child {
      margin-bottom: 0; }
    .block-images-3 .image img {
      display: none; }
  .block-images-3 .video {
    width: 100%;
    margin-bottom: 32px; }
    .block-images-3 .video:last-child {
      margin-bottom: 0; }
    .block-images-3 .video video {
      display: block;
      width: 100%;
      height: auto; }
  @media (min-width: 1024px) {
    .block-images-3 .images-list {
      margin: 0 -12px; }
      .block-images-3 .images-list .image {
        margin: 0 12px;
        width: calc(33.33% - 24px);
        padding-top: calc(33.33% - 24px);
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0; }
      .block-images-3 .images-list .video {
        margin: 0 12px;
        width: calc(33.33% - 24px);
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0; } }
  @media (min-width: 1600px) {
    .block-images-3 {
      margin: 90px 0; } }

.block-image-text {
  margin: 80px 0;
  font-size: 0; }
  .block-image-text .image {
    margin-bottom: 80px;
    text-align: center;
    background-image: none !important; }
    .block-image-text .image.img-right {
      display: none; }
    .block-image-text .image img, .block-image-text .image video {
      margin: 0 auto;
      display: block;
      max-width: 100%;
      height: auto; }
  .block-image-text .text h3 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 40px; }
  .block-image-text .text p {
    color: #757575;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .block-image-text .image {
      display: inline-block;
      vertical-align: middle;
      width: 40%;
      margin-bottom: 0; }
    .block-image-text .text {
      display: inline-block;
      vertical-align: middle;
      width: 40.35%;
      margin-left: 12%; }
    .block-image-text .text h3 {
      font-size: 36px;
      line-height: 46px;
      margin-bottom: 30px; }
    .block-image-text .text p {
      font-size: 16px;
      line-height: 26px; }
    .block-image-text.type-img-right .image.img-left {
      display: none; }
    .block-image-text.type-img-right .image.img-right {
      display: inline-block; }
    .block-image-text.type-img-right .text {
      margin-left: 7.65%;
      margin-right: 12%; } }
  @media (min-width: 1600px) {
    .block-image-text {
      margin: 160px 0; }
      .block-image-text .text {
        margin-left: 10%; }
      .block-image-text .text h3 {
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 40px; }
      .block-image-text .text p {
        font-size: 20px;
        line-height: 30px; }
      .block-image-text.type-img-right .text {
        margin-left: 9.65%;
        margin-right: 10%; } }

.block-text {
  margin: 80px 0; }
  .block-text h3 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 40px; }
  .block-text p {
    color: #757575;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .block-text .container {
      max-width: 940px; }
    .block-text h3 {
      font-size: 36px;
      line-height: 46px;
      margin-bottom: 70px;
      width: 52%; }
    .block-text p {
      width: 50%;
      margin-left: 50%;
      font-size: 16px;
      line-height: 26px; }
    .block-text.type-right-left h3 {
      margin-left: 48%; }
    .block-text.type-right-left p {
      width: 52%;
      margin-left: 0; } }
  @media (min-width: 1600px) {
    .block-text {
      margin: 120px 0; }
      .block-text .container {
        max-width: 1230px; }
      .block-text h3 {
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 80px;
        width: 57%; }
      .block-text p {
        width: 50%;
        margin-left: 50%;
        font-size: 20px;
        line-height: 30px; }
      .block-text.type-right-left h3 {
        width: 56%;
        margin-left: 44%; }
      .block-text.type-right-left p {
        width: 49%;
        margin-left: 0; } }

.block-quote {
  margin: 80px 0;
  text-align: center; }
  .block-quote blockquote p {
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.028em;
    margin-bottom: 40px; }
  .block-quote blockquote p.author {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 8px; }
  .block-quote blockquote p.role {
    color: #E0E0E0;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .block-quote blockquote {
      max-width: 940px;
      margin: 0 auto; }
      .block-quote blockquote p {
        font-weight: 600;
        font-size: 36px;
        line-height: 46px;
        letter-spacing: 0em;
        margin-bottom: 20px; }
      .block-quote blockquote p.author {
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 4px; }
      .block-quote blockquote p.role {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.028em; } }
  @media (min-width: 1024px) {
    .block-quote {
      margin: 120px 0; }
      .block-quote blockquote {
        max-width: 1230px; }
        .block-quote blockquote p {
          font-size: 48px;
          line-height: 60px;
          margin-bottom: 40px; }
        .block-quote blockquote p.author {
          font-size: 24px;
          line-height: 30px;
          margin-bottom: 10px; }
        .block-quote blockquote p.role {
          font-size: 20px;
          line-height: 24px;
          letter-spacing: 0.028em; } }

.block-video {
  margin: 80px 0; }
  .block-video.hide-on-mobile {
    display: none; }
  .block-video .image {
    display: none; }
  .block-video .video-wrapper {
    margin: 0 -30px; }
    .block-video .video-wrapper video {
      width: 100%;
      height: auto; }
  .block-video.img-on-mobile .container {
    padding: 0; }
  .block-video.img-on-mobile .image {
    display: block;
    width: 100%;
    padding-top: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .block-video.img-on-mobile .image img {
      display: none; }
  .block-video.img-on-mobile .video-wrapper {
    display: none; }
  @media (min-width: 1024px) {
    .block-video.img-on-mobile .image {
      display: none; }
    .block-video.img-on-mobile .video-wrapper {
      display: block; }
    .block-video.hide-on-mobile {
      display: block; }
    .block-video .video-wrapper {
      margin: 0; } }
  @media (min-width: 1600px) {
    .block-video {
      margin: 90px 0; } }

.block-awards {
  padding: 80px 0;
  padding-bottom: 50px;
  background-color: #FAFAFA; }
  .block-awards .awards-list {
    font-size: 0;
    text-align: center; }
    .block-awards .awards-list .award-item {
      margin-bottom: 30px;
      /*&:last-child { margin-bottom: 0; }*/ }
      .block-awards .awards-list .award-item img {
        max-width: 100%;
        height: auto; }
  @media (min-width: 540px) {
    .block-awards .awards-list .award-item {
      display: inline-block;
      vertical-align: middle;
      margin-left: 15px;
      margin-right: 15px; } }
  @media (min-width: 1024px) {
    .block-awards {
      padding: 55px 0;
      padding-bottom: 25px;
      margin: 30px; } }
  @media (min-width: 1600px) {
    .block-awards {
      padding: 75px 0;
      padding-bottom: 45px;
      margin: 40px; } }

.hp-top-banner {
  margin-top: -100px;
  height: 100vh;
  width: 100%;
  position: relative; }
  .hp-top-banner .hp-top-banners {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .hp-top-banner .hp-top-banners .swiper-wrapper {
      height: 100%; }
      .hp-top-banner .hp-top-banners .swiper-wrapper .swiper-slide {
        height: 100%;
        width: 100%;
        position: relative; }
  .hp-top-banner .image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .hp-top-banner .image img {
      display: none; }
    .hp-top-banner .image.img-desktop {
      display: none; }
  .hp-top-banner .bg-layer-1 {
    pointer-events: none;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    height: 67%;
    background: black;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); }
  .hp-top-banner .page-title {
    pointer-events: none;
    position: absolute;
    z-index: 4;
    bottom: 32px;
    left: 0;
    right: 0; }
    .hp-top-banner .page-title h1 {
      color: #FFFFFF; }
    .hp-top-banner .page-title h1 {
      font-size: 40px;
      line-height: 48px; }
      .hp-top-banner .page-title h1 span.dot {
        color: #F91C46; }
  .hp-top-banner .swiper-custom-nav {
    display: none; }
  @media (min-width: 1024px) {
    .hp-top-banner {
      margin: 0 30px;
      width: calc(100% - 60px);
      height: calc(100vh - 30px); }
      .hp-top-banner .image.img-mobile {
        display: none; }
      .hp-top-banner .image.img-desktop {
        display: block; }
      .hp-top-banner .bg-layer-1 {
        display: none; }
      .hp-top-banner .page-title {
        bottom: 200px; }
        .hp-top-banner .page-title h1 {
          color: #212121; }
        .hp-top-banner .page-title h1 {
          font-size: 72px;
          line-height: 86px;
          letter-spacing: -0.016em; }
      .hp-top-banner .swiper-custom-nav {
        display: block;
        position: absolute;
        z-index: 5;
        right: 54px;
        top: 50%;
        transform: translateY(-50%); }
        .hp-top-banner .swiper-custom-nav .swiper-pagination-bullet {
          display: block;
          margin: 12px 0;
          width: 12px;
          height: 12px;
          background-color: #FFFFFF;
          filter: alpha(opacity=100);
          -moz-opacity: 1;
          -khtml-opacity: 1;
          opacity: 1;
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
          .hp-top-banner .swiper-custom-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: #F91C46; } }
  @media (min-width: 1600px) {
    .hp-top-banner {
      margin: 0 40px;
      width: calc(100% - 80px);
      height: calc(100vh - 40px); }
      .hp-top-banner .page-title {
        bottom: 170px; }
        .hp-top-banner .page-title h1 {
          font-size: 96px;
          line-height: 116px; }
      .hp-top-banner .swiper-custom-nav {
        right: 60px; }
        .hp-top-banner .swiper-custom-nav .swiper-pagination-bullet {
          margin: 15px 0; } }

.hp-intro-wrapper {
  height: 100vh;
  min-height: 400px;
  position: relative; }
  .hp-intro-wrapper .content-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .hp-intro-wrapper .intro-animations {
    margin-bottom: 40px; }
    .hp-intro-wrapper .intro-animations .intro-animation {
      display: none; }
    .hp-intro-wrapper .intro-animations img {
      display: inline-block;
      height: 72px;
      width: auto; }
  .hp-intro-wrapper .intro-video {
    margin-bottom: 40px; }
    .hp-intro-wrapper .intro-video video {
      display: block;
      width: 100%;
      height: auto; }
  .hp-intro-wrapper .text p {
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0.008em;
    margin-bottom: 0; }
  .hp-intro-wrapper .text span.words {
    position: relative; }
    .hp-intro-wrapper .text span.words span.word {
      position: relative;
      z-index: 2; }
    .hp-intro-wrapper .text span.words span.line {
      position: absolute;
      z-index: 1;
      bottom: 0;
      height: 17px;
      left: 0;
      width: 0;
      background-color: #F91C46; }
  .hp-intro-wrapper .text.in-desktop {
    display: none; }
  @media (min-width: 1024px) {
    .hp-intro-wrapper {
      min-height: 540px;
      font-size: 0; }
      .hp-intro-wrapper .intro-animations {
        display: inline-block;
        vertical-align: middle;
        width: 25%;
        margin-bottom: 0; }
        .hp-intro-wrapper .intro-animations img {
          height: 225px; }
      .hp-intro-wrapper .intro-video {
        display: inline-block;
        vertical-align: middle;
        width: 30%;
        margin-bottom: 0; }
      .hp-intro-wrapper .text {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
        margin-right: 10%; }
        .hp-intro-wrapper .text p {
          font-size: 64px;
          line-height: 84px;
          letter-spacing: 0em; }
        .hp-intro-wrapper .text span.words span.line {
          bottom: 8px;
          height: 38px; }
      .hp-intro-wrapper .text.in-desktop {
        display: inline-block; }
      .hp-intro-wrapper .text.in-mobile {
        display: none; } }
  @media (min-width: 1600px) {
    .hp-intro-wrapper {
      min-height: 600px; }
      .hp-intro-wrapper .intro-animations {
        width: 34%; }
        .hp-intro-wrapper .intro-animations img {
          height: 300px; }
      .hp-intro-wrapper .text {
        width: 66%;
        margin-right: 0; }
        .hp-intro-wrapper .text p {
          font-size: 80px;
          line-height: 100px; }
        .hp-intro-wrapper .text span.words span.line {
          bottom: -8px;
          height: 50px; } }

.hp-about-wrapper {
  background-color: #212121;
  margin-bottom: 30px; }
  .hp-about-wrapper .about-intro {
    padding: 80px 0; }
    .hp-about-wrapper .about-intro h2 {
      color: #757575;
      font-size: 24px;
      line-height: 32px;
      letter-spacing: 0.008em; }
    .hp-about-wrapper .about-intro h3 {
      color: #FFFFFF;
      margin-bottom: 64px;
      font-size: 40px;
      line-height: 48px;
      letter-spacing: 0.005em; }
    .hp-about-wrapper .about-intro p {
      color: #FFFFFF;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.028em;
      margin-bottom: 64px; }
      .hp-about-wrapper .about-intro p.additional {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0.028em;
        margin-bottom: 0; }
  .hp-about-wrapper .about-slider {
    padding-bottom: 30px; }
    .hp-about-wrapper .about-slider .swiper-container {
      margin-right: -30px; }
    .hp-about-wrapper .about-slider .swiper-slide .item {
      padding-right: 30px; }
    .hp-about-wrapper .about-slider .swiper-slide .image {
      margin-bottom: 24px;
      position: relative;
      padding-top: 142%;
      width: 100%;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover; }
      .hp-about-wrapper .about-slider .swiper-slide .image img {
        display: none; }
    .hp-about-wrapper .about-slider .swiper-slide .info h4 {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: 0.008em;
      color: #FFFFFF; }
      .hp-about-wrapper .about-slider .swiper-slide .info h4 a, .hp-about-wrapper .about-slider .swiper-slide .info h4 a:visited {
        color: #FFFFFF; }
  .hp-about-wrapper .hp-about-slider {
    position: relative; }
    .hp-about-wrapper .hp-about-slider .swiper-custom-pagination {
      position: absolute;
      bottom: 82px;
      right: 50px;
      z-index: 3; }
    .hp-about-wrapper .hp-about-slider .swiper-custom-prev {
      display: inline-block;
      vertical-align: middle;
      width: 44px;
      height: 44px;
      margin-right: 20px;
      background: url("../img/svg/arrow-mobile-left.svg") center center no-repeat transparent;
      background-size: contain; }
    .hp-about-wrapper .hp-about-slider .swiper-custom-next {
      display: inline-block;
      vertical-align: middle;
      width: 44px;
      height: 44px;
      background: url("../img/svg/arrow-mobile-right.svg") center center no-repeat transparent;
      background-size: contain; }
  @media (min-width: 768px) {
    .hp-about-wrapper .about-slider .swiper-slide {
      width: 50%; } }
  @media (min-width: 992px) {
    .hp-about-wrapper .about-slider {
      overflow: hidden; }
      .hp-about-wrapper .about-slider .swiper-container {
        overflow: visible;
        margin-right: -40px; }
      .hp-about-wrapper .about-slider .swiper-slide {
        width: 33.33%; }
        .hp-about-wrapper .about-slider .swiper-slide:last-child {
          width: calc(33.33% + 16px); }
          .hp-about-wrapper .about-slider .swiper-slide:last-child .item {
            padding-right: 40px; } }
  @media (min-width: 1024px) {
    .hp-about-wrapper {
      background-color: transparent;
      margin-bottom: 156px; }
      .hp-about-wrapper .about-intro {
        padding: 120px 0;
        padding-bottom: 115px; }
        .hp-about-wrapper .about-intro .container {
          max-width: 946px; }
        .hp-about-wrapper .about-intro h2 {
          font-size: 36px;
          line-height: 44px;
          letter-spacing: 0em; }
        .hp-about-wrapper .about-intro h3 {
          margin-bottom: 60px;
          font-size: 88px;
          line-height: 106px;
          letter-spacing: 0em; }
        .hp-about-wrapper .about-intro p {
          padding-left: 41%;
          font-size: 20px;
          line-height: 30px;
          letter-spacing: 0em;
          margin-bottom: 40px; }
          .hp-about-wrapper .about-intro p.additional {
            letter-spacing: 0.008em; }
      .hp-about-wrapper .about-slider {
        padding-bottom: 115px; }
        .hp-about-wrapper .about-slider .swiper-slide {
          width: 31%; }
          .hp-about-wrapper .about-slider .swiper-slide .item {
            padding-right: 24px; }
          .hp-about-wrapper .about-slider .swiper-slide:last-child {
            width: calc(31% + 16px); }
          .hp-about-wrapper .about-slider .swiper-slide .image {
            margin-bottom: 18px;
            padding-top: 126%; }
          .hp-about-wrapper .about-slider .swiper-slide .info h4 {
            font-size: 24px;
            line-height: 32px; }
          .hp-about-wrapper .about-slider .swiper-slide .aux {
            opacity: 0;
            transform: translateX(100px); }
      .hp-about-wrapper .hp-about-slider {
        position: relative; }
        .hp-about-wrapper .hp-about-slider .swiper-custom-pagination {
          display: none;
          font-size: 0;
          bottom: auto;
          right: auto;
          left: 62%;
          top: 50%;
          margin-top: -95px;
          width: 106px;
          height: 106px;
          margin-left: -65px;
          background: url("../img/svg/arrows-desktop.svg") center center no-repeat transparent;
          background-size: contain; }
        .hp-about-wrapper .hp-about-slider .swiper-custom-prev {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          height: 106px;
          margin-right: 0;
          background-image: none; }
        .hp-about-wrapper .hp-about-slider .swiper-custom-next {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          height: 106px;
          background-image: none; } }
  @media (min-width: 1600px) {
    .hp-about-wrapper {
      margin-bottom: 216px; }
      .hp-about-wrapper .about-intro {
        padding: 160px 0; }
        .hp-about-wrapper .about-intro .container {
          max-width: 1236px; }
        .hp-about-wrapper .about-intro h2 {
          font-size: 48px;
          line-height: 60px;
          letter-spacing: 0em; }
        .hp-about-wrapper .about-intro h3 {
          margin-bottom: 80px;
          font-size: 120px;
          line-height: 145px; }
        .hp-about-wrapper .about-intro p {
          font-size: 24px;
          line-height: 42px;
          letter-spacing: 0.008em;
          margin-bottom: 64px; }
          .hp-about-wrapper .about-intro p.additional {
            font-size: 32px;
            line-height: 42px;
            letter-spacing: 0.008em; }
      .hp-about-wrapper .about-slider {
        padding-bottom: 115px; }
        .hp-about-wrapper .about-slider .swiper-slide {
          width: 31%; }
          .hp-about-wrapper .about-slider .swiper-slide:last-child {
            width: calc(31% + 16px); }
          .hp-about-wrapper .about-slider .swiper-slide .image {
            margin-bottom: 24px;
            padding-top: 125%; }
          .hp-about-wrapper .about-slider .swiper-slide .info h4 {
            font-size: 32px;
            line-height: 42px; } }

.hp-projects-wrapper {
  margin-bottom: 80px; }
  .hp-projects-wrapper .main-highlight {
    margin-bottom: 80px; }
    .hp-projects-wrapper .main-highlight .image {
      overflow: hidden;
      position: relative;
      padding-top: 100%;
      margin-bottom: 12px; }
      .hp-projects-wrapper .main-highlight .image img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        height: 100%;
        width: auto; }
      .hp-projects-wrapper .main-highlight .image a.full-link, .hp-projects-wrapper .main-highlight .image a.full-link:visited {
        z-index: 2; }
    .hp-projects-wrapper .main-highlight .info .project-logo {
      margin-bottom: 24px; }
      .hp-projects-wrapper .main-highlight .info .project-logo img {
        display: inline-block;
        height: 56px;
        width: auto; }
    .hp-projects-wrapper .main-highlight .info h3 {
      text-transform: uppercase;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0.1em;
      font-weight: 500;
      margin-bottom: 8px;
      color: #F91C46; }
    .hp-projects-wrapper .main-highlight .info ul.categories-list {
      font-size: 0;
      margin-bottom: 16px; }
      .hp-projects-wrapper .main-highlight .info ul.categories-list li {
        text-transform: uppercase;
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.1em;
        font-weight: 500; }
        .hp-projects-wrapper .main-highlight .info ul.categories-list li .in-desktop {
          display: none; }
        .hp-projects-wrapper .main-highlight .info ul.categories-list li a, .hp-projects-wrapper .main-highlight .info ul.categories-list li a:visited {
          color: #757575; }
        .hp-projects-wrapper .main-highlight .info ul.categories-list li:after {
          content: " + ";
          white-space: pre-wrap;
          color: #757575; }
        .hp-projects-wrapper .main-highlight .info ul.categories-list li:last-child:after {
          display: none; }
    .hp-projects-wrapper .main-highlight .info h4 {
      margin-bottom: 40px;
      font-size: 32px;
      line-height: 38px;
      letter-spacing: 0em; }
  .hp-projects-wrapper .works-list-wrapper.in-homepage {
    margin-bottom: 0; }
    .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item .aux {
      position: relative; }
    .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item .image {
      overflow: hidden;
      position: relative;
      padding-top: 100%;
      margin-bottom: 12px; }
      .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item .image img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        height: 100%;
        width: auto; }
    .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item .info h3 {
      margin-bottom: 0; }
    .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item .info h4 {
      color: #F91C46;
      text-transform: uppercase;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0.1em;
      margin-bottom: 8px; }
  @media (min-width: 768px) {
    .hp-projects-wrapper .main-highlight .image {
      padding-top: 50%; } }
  @media (min-width: 1024px) {
    .hp-projects-wrapper {
      margin-bottom: 48px; }
      .hp-projects-wrapper .main-highlight {
        margin-bottom: 64px; }
        .hp-projects-wrapper .main-highlight .image {
          margin-bottom: 18px; }
          .hp-projects-wrapper .main-highlight .image.anim-img-fade {
            opacity: 0.1;
            transform: scale(1.2); }
        .hp-projects-wrapper .main-highlight .info {
          position: relative; }
          .hp-projects-wrapper .main-highlight .info .project-logo {
            position: absolute;
            top: 2px;
            right: 0;
            margin-bottom: 0; }
            .hp-projects-wrapper .main-highlight .info .project-logo img {
              height: 86px; }
          .hp-projects-wrapper .main-highlight .info h3 {
            margin-bottom: 4px; }
          .hp-projects-wrapper .main-highlight .info ul.categories-list {
            margin-bottom: 32px; }
            .hp-projects-wrapper .main-highlight .info ul.categories-list li .in-mobile {
              display: none; }
            .hp-projects-wrapper .main-highlight .info ul.categories-list li .in-desktop {
              display: inline-block; }
            .hp-projects-wrapper .main-highlight .info ul.categories-list li a:hover, .hp-projects-wrapper .main-highlight .info ul.categories-list li a:visited:hover {
              text-decoration: none;
              color: #F91C46; }
          .hp-projects-wrapper .main-highlight .info h4 {
            margin-bottom: 32px;
            font-size: 36px;
            line-height: 46px; }
            .hp-projects-wrapper .main-highlight .info h4 a:hover, .hp-projects-wrapper .main-highlight .info h4 a:visited:hover {
              text-decoration: none; }
      .hp-projects-wrapper .works-list-wrapper.in-homepage .works-list {
        margin-bottom: 26px; }
      .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item {
        margin-bottom: 24px; }
        .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item .aux {
          position: relative; }
        .hp-projects-wrapper .works-list-wrapper.in-homepage .work-item .image {
          padding-top: 100%;
          margin-bottom: 0; }
      .hp-projects-wrapper .works-list-wrapper.in-homepage .item-small {
        width: 42%; }
      .hp-projects-wrapper .works-list-wrapper.in-homepage .item-large {
        width: 58%; }
        .hp-projects-wrapper .works-list-wrapper.in-homepage .item-large .image {
          padding-top: 71%; } }
  @media (min-width: 1600px) {
    .hp-projects-wrapper {
      margin-bottom: 78px; }
      .hp-projects-wrapper .main-highlight {
        margin-bottom: 82px; }
        .hp-projects-wrapper .main-highlight .image {
          margin-bottom: 32px; }
        .hp-projects-wrapper .main-highlight .info .project-logo {
          top: 0; }
          .hp-projects-wrapper .main-highlight .info .project-logo img {
            height: 114px; }
        .hp-projects-wrapper .main-highlight .info h3 {
          font-size: 16px; }
        .hp-projects-wrapper .main-highlight .info ul.categories-list {
          margin-bottom: 50px; }
          .hp-projects-wrapper .main-highlight .info ul.categories-list li {
            font-size: 16px; }
        .hp-projects-wrapper .main-highlight .info h4 {
          margin-bottom: 48px;
          font-size: 48px;
          line-height: 60px; }
      .hp-projects-wrapper .works-list-wrapper.in-homepage .works-list {
        margin-bottom: 40px; }
      .hp-projects-wrapper .works-list-wrapper.in-homepage .item-large .image {
        padding-top: 71.50%; } }

.hp-disruptive-solutions-wrapper {
  background-color: #212121;
  margin-bottom: 80px;
  padding: 140px 0; }
  .hp-disruptive-solutions-wrapper .disruptive-solutions-intro h2 {
    color: #FFFFFF;
    margin-bottom: 48px;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em; }
  @media (min-width: 1024px) {
    .hp-disruptive-solutions-wrapper {
      background-color: transparent;
      margin-bottom: 123px;
      padding: 0; }
      .hp-disruptive-solutions-wrapper .disruptive-solutions-intro {
        text-align: center;
        height: 840px;
        position: relative; }
        .hp-disruptive-solutions-wrapper .disruptive-solutions-intro .slide-info {
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
          left: 0;
          width: 100%; }
        .hp-disruptive-solutions-wrapper .disruptive-solutions-intro h2 {
          color: #FAFAFA;
          margin-bottom: 0;
          font-size: 89px;
          line-height: 107px;
          letter-spacing: 0em; } }
  @media (min-width: 1600px) {
    .hp-disruptive-solutions-wrapper {
      margin-bottom: 160px; }
      .hp-disruptive-solutions-wrapper .disruptive-solutions-intro {
        height: 1000px; }
        .hp-disruptive-solutions-wrapper .disruptive-solutions-intro h2 {
          font-size: 120px;
          line-height: 145px; } }
  .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.quote {
    color: #FFFFFF;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    font-weight: 500;
    margin-bottom: 80px; }
  .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.author {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.028em;
    margin-bottom: 8px; }
  .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.role {
    color: #757575;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.028em;
    font-weight: 500;
    margin-bottom: 0; }
  .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav {
    display: block;
    padding-top: 60px;
    font-size: 0; }
    .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav .swiper-pagination-bullet {
      display: inline-block;
      margin-right: 12px;
      width: 12px;
      height: 12px;
      background-color: #FFFFFF;
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #F91C46; }
  @media (min-width: 1024px) {
    .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper {
      text-align: center;
      height: 100vh;
      position: relative; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonials-slider, .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-wrapper, .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-slide, .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item {
        height: 100%; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .container {
        max-width: 600px;
        padding-top: 100px;
        padding-bottom: 100px; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item {
        position: relative; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item .slide-info {
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
          left: 0;
          width: 100%; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.quote {
          font-size: 24px;
          line-height: 32px;
          letter-spacing: 0.008em;
          font-weight: 600;
          /*margin-bottom: 40px;*/
          margin-bottom: 0;
          margin-top: -60px; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item .container {
          position: relative; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item .author-role {
          position: absolute;
          left: 0;
          width: 100%;
          bottom: 0; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.author {
          font-size: 20px;
          line-height: 32px;
          letter-spacing: 0em; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.role {
          font-size: 20px;
          line-height: 32px;
          letter-spacing: 0.028em;
          font-weight: 400;
          margin-bottom: 0; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav-aux {
        position: absolute;
        bottom: 120px;
        left: 0;
        width: 100%; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav-aux .container {
          padding: 0; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav {
        padding-top: 0;
        font-size: 0; }
        .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav .swiper-pagination-bullet {
          margin: 0 15px;
          width: 16px;
          height: 16px; }
          .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav .swiper-pagination-bullet:hover {
            cursor: pointer; } }
  @media (min-width: 1600px) {
    .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper {
      text-align: center; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .container {
        max-width: 870px; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.quote {
        font-size: 34px;
        line-height: 42px;
        letter-spacing: 0.008em;
        font-weight: 600;
        /*margin-bottom: 40px;*/
        margin-bottom: 0;
        margin-top: 40px; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.author {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0em;
        margin-bottom: 10px; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .testimonial-item p.role {
        font-size: 20px;
        line-height: 32px;
        letter-spacing: 0.028em;
        font-weight: 400;
        margin-bottom: 0; }
      .hp-disruptive-solutions-wrapper .disruptive-scroll-wrapper .swiper-custom-nav {
        padding-top: 150px;
        font-size: 0; } }

.hp-logos-wrapper {
  text-align: center;
  padding-bottom: 26px;
  font-size: 0; }
  .hp-logos-wrapper .logos-list {
    margin: 0 -22px; }
    .hp-logos-wrapper .logos-list .logo-item {
      display: inline-block;
      vertical-align: middle;
      width: 50%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      margin-bottom: 44px;
      padding: 0 22px; }
      .hp-logos-wrapper .logos-list .logo-item img {
        display: inline-block;
        max-width: 100%;
        height: auto; }
        .hp-logos-wrapper .logos-list .logo-item img.light {
          display: none; }
  @media (min-width: 768px) {
    .hp-logos-wrapper .logos-list .logo-item {
      width: 33.33%; } }
  @media (min-width: 1024px) {
    .hp-logos-wrapper {
      padding-bottom: 50px; }
      .hp-logos-wrapper .container {
        max-width: 860px; }
      .hp-logos-wrapper .logos-list {
        margin: 0 -36px; }
        .hp-logos-wrapper .logos-list .logo-item {
          width: 20%;
          margin-bottom: 72px;
          padding: 0 36px; } }
  @media (min-width: 1600px) {
    .hp-logos-wrapper {
      padding-bottom: 72px; }
      .hp-logos-wrapper .container {
        max-width: 1140px; }
      .hp-logos-wrapper .logos-list {
        margin: 0 -48px; }
        .hp-logos-wrapper .logos-list .logo-item {
          margin-bottom: 96px;
          padding: 0 48px; } }

.who-we-are-wrapper .who-we-are {
  display: none;
  position: relative;
  height: 100vh; }
  .who-we-are-wrapper .who-we-are .slide-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .who-we-are-wrapper .who-we-are h2 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em; }

.who-we-are-wrapper .who-we-are-content {
  margin-top: 200px;
  padding-top: 80px;
  padding-bottom: 35px;
  margin-bottom: 80px;
  background-color: #212121; }
  .who-we-are-wrapper .who-we-are-content .who-we-are-image.in-desktop {
    display: none; }
  .who-we-are-wrapper .who-we-are-content .who-we-are-image .image {
    padding-top: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-image .image img {
      display: none; }
  .who-we-are-wrapper .who-we-are-content .who-we-are-video {
    display: none; }
  .who-we-are-wrapper .who-we-are-content .who-we-are-text {
    margin-bottom: 60px; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-text h2 {
      color: #FFFFFF;
      font-size: 40px;
      line-height: 48px;
      letter-spacing: 0.005em;
      margin-bottom: 40px; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-text h3 {
      color: #FFFFFF;
      font-size: 32px;
      line-height: 38px;
      letter-spacing: 0.008em;
      margin-bottom: 40px; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-text p {
      color: #FFFFFF;
      margin-bottom: 0;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.028em; }

@media (min-width: 1024px) {
  .who-we-are-wrapper .who-we-are {
    display: block; }
    .who-we-are-wrapper .who-we-are h2 {
      text-align: center;
      font-size: 72px;
      line-height: 86px;
      letter-spacing: -0.016em; }
  .who-we-are-wrapper .who-we-are-content {
    margin-top: 0;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 150px;
    margin-bottom: 30px; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-image {
      position: relative; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-image .bg-layer {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 320px; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-image.in-mobile {
        display: none; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-image.in-desktop {
        display: block; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-image .image {
        position: relative;
        padding-top: 0;
        height: 640px; }
        .who-we-are-wrapper .who-we-are-content .who-we-are-image .image.anim-img-fade {
          opacity: 0.1; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-video {
      display: block; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-video .video-wrapper {
        position: relative; }
        .who-we-are-wrapper .who-we-are-content .who-we-are-video .video-wrapper a.toggle-sound, .who-we-are-wrapper .who-we-are-content .who-we-are-video .video-wrapper a.toggle-sound:visited {
          position: absolute;
          top: 48px;
          right: 0;
          background-color: #F91C46;
          width: 48px;
          height: 48px;
          border-top-left-radius: 2px;
          border-top-right-radius: 2px; }
          .who-we-are-wrapper .who-we-are-content .who-we-are-video .video-wrapper a.toggle-sound:after, .who-we-are-wrapper .who-we-are-content .who-we-are-video .video-wrapper a.toggle-sound:visited:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 27px;
            height: 19px;
            background: url("../img/svg/icon-sound-off.svg") center center no-repeat transparent;
            background-size: contain; }
          .who-we-are-wrapper .who-we-are-content .who-we-are-video .video-wrapper a.toggle-sound.sound-on:after, .who-we-are-wrapper .who-we-are-content .who-we-are-video .video-wrapper a.toggle-sound:visited.sound-on:after {
            background-image: url("../img/svg/icon-sound-on.svg"); }
      .who-we-are-wrapper .who-we-are-content .who-we-are-video video {
        width: 100%;
        height: auto; }
        .who-we-are-wrapper .who-we-are-content .who-we-are-video video.anim-img-fade {
          opacity: 0.1; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-text {
      padding-top: 120px;
      padding-bottom: 190px;
      margin-bottom: 0; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text .container {
        max-width: 946px; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text .split-line {
        overflow: hidden; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text h2 {
        display: none; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text h3 {
        width: 50%;
        font-size: 36px;
        line-height: 46px;
        letter-spacing: 0em; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text p {
        color: #757575;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.008em;
        margin-left: calc(50% + 12px); } }

@media (min-width: 1600px) {
  .who-we-are-wrapper .who-we-are h2 {
    font-size: 96px;
    line-height: 100px; }
  .who-we-are-wrapper .who-we-are-content {
    padding-bottom: 218px;
    margin-bottom: 40px; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-image .bg-layer {
      height: 420px; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-image .image {
      height: 840px; }
    .who-we-are-wrapper .who-we-are-content .who-we-are-text {
      padding-bottom: 220px; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text .container {
        max-width: 1236px; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text h3 {
        width: 60%;
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 60px; }
      .who-we-are-wrapper .who-we-are-content .who-we-are-text p {
        font-size: 24px;
        line-height: 44px;
        margin-left: 51%; } }

.about-additional-info-wrapper {
  display: none;
  overflow: hidden; }
  @media (min-width: 1024px) {
    .about-additional-info-wrapper {
      display: block;
      margin-bottom: 252px; }
      .about-additional-info-wrapper .container {
        max-width: 100%; }
      .about-additional-info-wrapper .info {
        font-size: 0; }
        .about-additional-info-wrapper .info .image {
          display: inline-block;
          vertical-align: middle;
          width: 50%; }
          .about-additional-info-wrapper .info .image img {
            width: 100%;
            height: auto; }
        .about-additional-info-wrapper .info .text {
          text-align: center;
          display: inline-block;
          vertical-align: middle;
          width: 50%; }
          .about-additional-info-wrapper .info .text p {
            font-size: 48px;
            line-height: 60px;
            letter-spacing: 0.005em;
            font-weight: 600;
            margin-bottom: 0; } }
  @media (min-width: 1600px) {
    .about-additional-info-wrapper {
      margin-bottom: 280px; }
      .about-additional-info-wrapper .info .text p {
        font-size: 64px;
        line-height: 78px; } }

.design-thinking-wrapper {
  font-size: 0;
  margin-bottom: 80px;
  overflow: hidden; }
  .design-thinking-wrapper .intro {
    margin-bottom: 60px; }
    .design-thinking-wrapper .intro h2 {
      font-size: 40px;
      line-height: 48px;
      letter-spacing: 0.005em;
      margin-bottom: 40px; }
    .design-thinking-wrapper .intro p {
      color: #757575;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.028em;
      margin-bottom: 0; }
  .design-thinking-wrapper .design-thinking-slider.in-desktop {
    display: none; }
  .design-thinking-wrapper .item .image {
    margin-bottom: 24px;
    position: relative;
    padding-top: 140%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; }
    .design-thinking-wrapper .item .image img {
      display: none; }
  .design-thinking-wrapper .item .info h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.008em;
    margin-bottom: 16px; }
  .design-thinking-wrapper .item .info p {
    color: #757575;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  .design-thinking-wrapper .design-thinking-slider {
    position: relative; }
    .design-thinking-wrapper .design-thinking-slider .swiper-custom-pagination {
      position: absolute;
      padding-top: 140%;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 3; }
    .design-thinking-wrapper .design-thinking-slider .swiper-custom-prev {
      position: absolute;
      right: 84px;
      bottom: 20px;
      width: 44px;
      height: 44px;
      background: url("../img/svg/arrow-mobile-left.svg") center center no-repeat transparent;
      background-size: contain; }
    .design-thinking-wrapper .design-thinking-slider .swiper-custom-next {
      position: absolute;
      right: 20px;
      bottom: 20px;
      width: 44px;
      height: 44px;
      background: url("../img/svg/arrow-mobile-right.svg") center center no-repeat transparent;
      background-size: contain; }
  @media (min-width: 640px) {
    .design-thinking-wrapper .design-thinking-slider {
      margin: 0 -12px; }
    .design-thinking-wrapper .swiper-slide {
      width: 50%; }
    .design-thinking-wrapper .item .aux {
      padding: 0 12px; }
    .design-thinking-wrapper .design-thinking-slider .swiper-custom-pagination {
      position: absolute;
      padding-top: calc(70% - 30px);
      width: calc(100% - 12px);
      top: 0;
      left: 0;
      z-index: 3; } }
  @media (min-width: 1024px) {
    .design-thinking-wrapper {
      overflow: visible; }
      .design-thinking-wrapper .swiper-slide {
        width: 33.33%; }
      .design-thinking-wrapper .design-thinking-slider .swiper-custom-pagination {
        display: none;
        position: absolute;
        padding-top: calc(46.66% - 30px);
        width: calc(100% - 12px);
        top: 0;
        left: 0;
        z-index: 3; } }
  @media (min-width: 1200px) {
    .design-thinking-wrapper {
      margin-bottom: 230px;
      /*.swiper-slide { width: 33.33%; }*/ }
      .design-thinking-wrapper .dt-aux {
        position: relative; }
      .design-thinking-wrapper .intro {
        position: absolute;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        left: 0;
        width: calc(33.33% - 24px);
        margin-bottom: 0;
        opacity: 1;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
        .design-thinking-wrapper .intro h2 {
          font-size: 72px;
          line-height: 86px;
          letter-spacing: -0.016em;
          margin-bottom: 32px; }
        .design-thinking-wrapper .intro p {
          font-size: 16px;
          line-height: 26px;
          letter-spacing: 0.008em; }
        .design-thinking-wrapper .intro.hide {
          opacity: 0;
          -moz-transition: 0.4s ease;
          -ms-transition: 0.4s ease;
          -o-transition: 0.4s ease;
          transition: 0.4s ease;
          -webkit-transition: 0.4s ease; }
      .design-thinking-wrapper .design-thinking-slider {
        margin: 0;
        overflow: visible; }
        .design-thinking-wrapper .design-thinking-slider.in-mobile {
          display: none; }
        .design-thinking-wrapper .design-thinking-slider.in-desktop {
          display: block; }
      .design-thinking-wrapper .item .aux {
        position: relative;
        padding: 0;
        padding-right: 24px; }
      .design-thinking-wrapper .item .aux {
        opacity: 0;
        transform: translateX(100px); }
      .design-thinking-wrapper .item .info {
        position: absolute;
        top: 100%;
        left: 0;
        right: 24px;
        opacity: 0;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
      .design-thinking-wrapper .swiper-slide.swiper-slide-active .info {
        opacity: 1;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
      .design-thinking-wrapper .item .image {
        margin-bottom: 0;
        padding-top: 124%; }
      .design-thinking-wrapper .item .info {
        padding-top: 24px; }
      .design-thinking-wrapper .design-thinking-slider {
        position: relative; }
        .design-thinking-wrapper .design-thinking-slider .swiper-custom-pagination {
          display: none;
          font-size: 0;
          padding-top: 0;
          bottom: auto;
          right: auto;
          left: 66.66%;
          top: 50%;
          margin-top: -53px;
          width: 106px;
          height: 106px;
          margin-left: -65px;
          background: url("../img/svg/arrows-desktop.svg") center center no-repeat transparent;
          background-size: contain; }
        .design-thinking-wrapper .design-thinking-slider .swiper-custom-prev {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          height: 106px;
          margin-right: 0;
          background-image: none; }
        .design-thinking-wrapper .design-thinking-slider .swiper-custom-next {
          display: inline-block;
          vertical-align: middle;
          width: 50%;
          height: 106px;
          background-image: none; } }
  @media (min-width: 1600px) {
    .design-thinking-wrapper {
      margin-bottom: 280px; }
      .design-thinking-wrapper .intro h2 {
        font-size: 96px;
        line-height: 116px;
        margin-bottom: 40px; }
      .design-thinking-wrapper .intro p {
        font-size: 24px;
        line-height: 42px; }
      .design-thinking-wrapper .item .info h3 {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: 0em;
        margin-bottom: 12px; }
      .design-thinking-wrapper .item .info p {
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0.009em; } }

.about-team-wrapper .about-team-intro {
  display: none; }
  @media (min-width: 1024px) {
    .about-team-wrapper .about-team-intro {
      display: block;
      height: 100vh;
      position: relative;
      text-align: center; }
      .about-team-wrapper .about-team-intro .slide-info {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        left: 0;
        width: 100%; }
      .about-team-wrapper .about-team-intro h2 {
        color: #FFFFFF;
        font-size: 36px;
        /*line-height: 72px;*/
        line-height: 60px;
        position: relative;
        height: 120px; }
        .about-team-wrapper .about-team-intro h2 span.small {
          position: absolute;
          left: 50%; }
        .about-team-wrapper .about-team-intro h2 span.large {
          font-size: 72px;
          display: inline-block;
          letter-spacing: -0.016em; } }
  @media (min-width: 1600px) {
    .about-team-wrapper .about-team-intro h2 {
      font-size: 48px;
      /*line-height: 85px;*/
      line-height: 70px;
      height: 140px; }
      .about-team-wrapper .about-team-intro h2 span.large {
        font-size: 96px; } }

.about-team-wrapper .about-team-list {
  font-size: 0;
  padding-top: 80px;
  background-color: #212121; }
  .about-team-wrapper .about-team-list h2 {
    color: #FFFFFF;
    margin-bottom: 80px;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.008em; }
  .about-team-wrapper .about-team-list .team-list .team-item {
    margin-bottom: 64px;
    display: inline-block;
    vertical-align: top;
    width: 100%; }
    .about-team-wrapper .about-team-list .team-list .team-item .image {
      margin-bottom: 16px; }
      .about-team-wrapper .about-team-list .team-list .team-item .image img {
        display: block;
        width: 100%;
        height: auto; }
    .about-team-wrapper .about-team-list .team-list .team-item .info h3 {
      font-size: 32px;
      line-height: 38px;
      letter-spacing: 0.008em;
      color: #FFFFFF;
      margin-bottom: 8px; }
    .about-team-wrapper .about-team-list .team-list .team-item .info h4 {
      color: #757575;
      font-weight: 400;
      font-size: 18px;
      line-height: 21px;
      letter-spacing: 0.028em;
      margin-bottom: 24px; }
    .about-team-wrapper .about-team-list .team-list .team-item .info a.link, .about-team-wrapper .about-team-list .team-list .team-item .info a.link:visited {
      font-size: 14px;
      line-height: 18px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #F91C46; }
  @media (min-width: 600px) {
    .about-team-wrapper .about-team-list .team-list {
      margin: 0 -12px; }
    .about-team-wrapper .about-team-list .team-list .team-item {
      width: 50%;
      padding: 0 12px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; } }
  @media (min-width: 768px) {
    .about-team-wrapper .about-team-list .team-list .team-item {
      width: 33.33%; } }
  @media (min-width: 1024px) {
    .about-team-wrapper .about-team-list {
      position: relative;
      padding-top: 120px;
      background-color: transparent; }
      .about-team-wrapper .about-team-list h2 {
        display: none;
        vertical-align: top;
        width: 30%;
        color: #212121;
        margin-bottom: 0;
        font-size: 24px;
        line-height: 40px;
        letter-spacing: 0em; }
        .about-team-wrapper .about-team-list h2 span {
          font-size: 48px;
          display: inline-block;
          letter-spacing: -0.016em; }
      .about-team-wrapper .about-team-list .team-list-aux {
        display: inline-block;
        vertical-align: top;
        width: 70%;
        margin-left: 30%; }
      .about-team-wrapper .about-team-list .team-list .team-item {
        margin-bottom: 62px; }
        .about-team-wrapper .about-team-list .team-list .team-item .image {
          margin-bottom: 20px; }
        .about-team-wrapper .about-team-list .team-list .team-item .info h3 {
          font-size: 24px;
          line-height: 30px;
          color: #212121;
          margin-bottom: 5px; }
        .about-team-wrapper .about-team-list .team-list .team-item .info h4 {
          font-size: 16px;
          line-height: 20px;
          letter-spacing: 0em;
          margin-bottom: 16px; }
        .about-team-wrapper .about-team-list .team-list .team-item .info a.link, .about-team-wrapper .about-team-list .team-list .team-item .info a.link:visited {
          font-size: 11px;
          line-height: 14px; } }
  @media (min-width: 1600px) {
    .about-team-wrapper .about-team-list {
      padding-top: 120px; }
      .about-team-wrapper .about-team-list h2 {
        width: 25%;
        font-size: 30px;
        line-height: 52px; }
        .about-team-wrapper .about-team-list h2 span {
          font-size: 60px; }
      .about-team-wrapper .about-team-list .team-list-aux {
        width: 75%; }
      .about-team-wrapper .about-team-list .team-list .team-item {
        margin-bottom: 80px; }
        .about-team-wrapper .about-team-list .team-list .team-item .image {
          margin-bottom: 24px; }
        .about-team-wrapper .about-team-list .team-list .team-item .info h3 {
          font-size: 24px;
          line-height: 40px;
          margin-bottom: 4px; }
        .about-team-wrapper .about-team-list .team-list .team-item .info h4 {
          font-size: 24px;
          line-height: 30px;
          letter-spacing: 0em;
          margin-bottom: 20px; }
        .about-team-wrapper .about-team-list .team-list .team-item .info a.link, .about-team-wrapper .about-team-list .team-list .team-item .info a.link:visited {
          font-size: 16px;
          line-height: 20px; } }

.about-team-wrapper .about-team-description {
  height: 100vh;
  position: relative; }
  .about-team-wrapper .about-team-description .slide-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .about-team-wrapper .about-team-description h3 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 40px;
    letter-spacing: 0.008em; }
  .about-team-wrapper .about-team-description p {
    font-size: 18px;
    line-height: 38px;
    letter-spacing: 0.028em;
    color: #757575;
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .about-team-wrapper .about-team-description {
      text-align: center; }
      .about-team-wrapper .about-team-description .container {
        max-width: 364px; }
      .about-team-wrapper .about-team-description h3 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
        letter-spacing: 0.008em; }
      .about-team-wrapper .about-team-description p {
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0.008em; } }
  @media (min-width: 1600px) {
    .about-team-wrapper .about-team-description .container {
      max-width: 510px; }
    .about-team-wrapper .about-team-description h3 {
      font-size: 32px;
      line-height: 42px;
      margin-bottom: 42px; }
    .about-team-wrapper .about-team-description p {
      font-size: 24px;
      line-height: 42px; } }

.team-testimonial-wrapper {
  position: relative;
  height: 100vh; }
  .team-testimonial-wrapper .image {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05; }
    .team-testimonial-wrapper .image img {
      display: none; }
  .team-testimonial-wrapper .slide-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .team-testimonial-wrapper p.quote {
    margin-bottom: 80px;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    font-weight: 500; }
  .team-testimonial-wrapper p.author {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.028em; }
  .team-testimonial-wrapper p.role {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0.028em;
    color: #757575; }
  @media (min-width: 1024px) {
    .team-testimonial-wrapper {
      margin: 30px;
      margin-top: 0;
      text-align: center; }
      .team-testimonial-wrapper p.quote {
        max-width: 946px;
        margin: 0 auto;
        margin-bottom: 30px;
        font-size: 36px;
        line-height: 44px;
        letter-spacing: 0em;
        font-weight: 600; }
      .team-testimonial-wrapper p.author {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0em; }
      .team-testimonial-wrapper p.role {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400; } }
  @media (min-width: 1600px) {
    .team-testimonial-wrapper {
      margin: 40px;
      margin-top: 0; }
      .team-testimonial-wrapper p.quote {
        max-width: 1294px;
        margin-bottom: 40px;
        font-size: 48px;
        line-height: 60px; }
      .team-testimonial-wrapper p.author {
        font-size: 24px;
        line-height: 32px; }
      .team-testimonial-wrapper p.role {
        font-size: 20px;
        line-height: 32px; } }

.skills-content-wrapper {
  margin-top: -40px; }
  .skills-content-wrapper .skills-content .skills-image {
    margin-bottom: 40px; }
    .skills-content-wrapper .skills-content .skills-image.in-desktop {
      display: none; }
    .skills-content-wrapper .skills-content .skills-image .image {
      padding-top: 100%;
      width: 100%;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover; }
      .skills-content-wrapper .skills-content .skills-image .image img {
        display: none; }
  .skills-content-wrapper .skills-content .skills-video {
    margin-bottom: 40px; }
    .skills-content-wrapper .skills-content .skills-video video {
      display: block;
      width: 100%;
      height: auto; }
  .skills-content-wrapper .skills-content .skills-text {
    padding: 80px 0;
    background-color: #212121;
    margin-bottom: 60px; }
    .skills-content-wrapper .skills-content .skills-text h3 {
      color: #FFFFFF;
      font-size: 32px;
      line-height: 38px;
      letter-spacing: 0.008em;
      margin-bottom: 40px; }
    .skills-content-wrapper .skills-content .skills-text p {
      color: #757575;
      margin-bottom: 0;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.028em; }
  @media (min-width: 1024px) {
    .skills-content-wrapper {
      margin-top: 0; }
      .skills-content-wrapper .skills-content .skills-image {
        position: relative; }
        .skills-content-wrapper .skills-content .skills-image .bg-layer {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 320px; }
        .skills-content-wrapper .skills-content .skills-image.in-mobile {
          display: none; }
        .skills-content-wrapper .skills-content .skills-image.in-desktop {
          display: block; }
        .skills-content-wrapper .skills-content .skills-image .image {
          position: relative;
          padding-top: 0;
          height: 510px; }
          .skills-content-wrapper .skills-content .skills-image .image.anim-img-fade {
            opacity: 0.1; }
      .skills-content-wrapper .skills-content .skills-video {
        position: relative; }
        .skills-content-wrapper .skills-content .skills-video .bg-layer {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 320px; }
        .skills-content-wrapper .skills-content .skills-video .video-wrapper {
          position: relative; }
          .skills-content-wrapper .skills-content .skills-video .video-wrapper.anim-img-fade {
            opacity: 0.1; }
      .skills-content-wrapper .skills-content .skills-text {
        background-color: transparent;
        padding-top: 110px;
        padding-bottom: 110px;
        margin-bottom: 0; }
        .skills-content-wrapper .skills-content .skills-text .container {
          max-width: 946px; }
        .skills-content-wrapper .skills-content .skills-text .split-line {
          overflow: hidden; }
        .skills-content-wrapper .skills-content .skills-text h3 {
          width: 50%;
          font-size: 36px;
          line-height: 46px;
          margin-bottom: 120px;
          letter-spacing: 0em; }
        .skills-content-wrapper .skills-content .skills-text p {
          font-size: 16px;
          line-height: 26px;
          letter-spacing: 0.008em;
          margin-left: calc(50% + 12px); } }
  @media (min-width: 1600px) {
    .skills-content-wrapper .skills-content .skills-image .bg-layer {
      height: 420px; }
    .skills-content-wrapper .skills-content .skills-image .image {
      height: 680px; }
    .skills-content-wrapper .skills-content .skills-text {
      padding: 160px 0;
      padding-bottom: 0; }
      .skills-content-wrapper .skills-content .skills-text .container {
        max-width: 1236px; }
      .skills-content-wrapper .skills-content .skills-text h3 {
        width: 60%;
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 180px; }
      .skills-content-wrapper .skills-content .skills-text p {
        font-size: 24px;
        line-height: 44px;
        margin-left: 51%; } }

.skills-detail-wrapper {
  margin-bottom: 80px;
  font-size: 0; }
  .skills-detail-wrapper.is-first {
    margin-top: 32px; }
  .skills-detail-wrapper .images {
    display: none;
    margin-bottom: 40px; }
    .skills-detail-wrapper .images.img-right {
      display: none; }
    .skills-detail-wrapper .images .image {
      display: none; }
      .skills-detail-wrapper .images .image.main-img {
        display: block; }
      .skills-detail-wrapper .images .image img {
        display: block;
        width: 100%;
        height: auto; }
  .skills-detail-wrapper .info {
    margin-bottom: 60px; }
    .skills-detail-wrapper .info h2 {
      letter-spacing: 0.005em;
      font-size: 40px;
      line-height: 48px;
      margin-bottom: 40px; }
    .skills-detail-wrapper .info p {
      color: #757575;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.028em;
      margin-bottom: 0; }
    .skills-detail-wrapper .info .btn-wrapper {
      display: none; }
  .skills-detail-wrapper .additional-info h3 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.008em;
    margin-bottom: 16px; }
  .skills-detail-wrapper .additional-info ul li {
    color: #757575;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.028em; }
    .skills-detail-wrapper .additional-info ul li:before {
      content: "_ ";
      white-space: pre-wrap;
      color: #F91C46; }
  .skills-detail-wrapper .additional-info .btn-wrapper {
    margin-top: 64px; }
  .skills-detail-wrapper .skills-images-slider {
    margin-bottom: 40px;
    position: relative; }
    .skills-detail-wrapper .skills-images-slider .image img {
      display: block;
      width: 100%;
      height: auto; }
    .skills-detail-wrapper .skills-images-slider .swiper-custom-pagination {
      position: absolute;
      bottom: 20px;
      right: 20px;
      z-index: 3; }
    .skills-detail-wrapper .skills-images-slider .swiper-custom-prev {
      display: inline-block;
      vertical-align: middle;
      width: 44px;
      height: 44px;
      margin-right: 20px;
      background: url("../img/svg/arrow-mobile-left.svg") center center no-repeat transparent;
      background-size: contain; }
    .skills-detail-wrapper .skills-images-slider .swiper-custom-next {
      display: inline-block;
      vertical-align: middle;
      width: 44px;
      height: 44px;
      background: url("../img/svg/arrow-mobile-right.svg") center center no-repeat transparent;
      background-size: contain; }
  @media (min-width: 640px) {
    .skills-detail-wrapper .skills-images-slider {
      display: none; }
    .skills-detail-wrapper .images {
      display: block;
      margin: 0 -12px;
      margin-bottom: 40px; }
      .skills-detail-wrapper .images .image {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding: 0 12px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; }
        .skills-detail-wrapper .images .image.main-img {
          display: inline-block; }
        .skills-detail-wrapper .images .image.secondary-img:last-child {
          display: none; } }
  @media (min-width: 1200px) {
    .skills-detail-wrapper {
      margin-bottom: 120px; }
      .skills-detail-wrapper.is-first {
        margin-top: 160px; }
      .skills-detail-wrapper .images {
        margin-left: 0;
        margin-right: 0;
        display: inline-block;
        vertical-align: top;
        width: 66.32%;
        margin-bottom: 24px; }
        .skills-detail-wrapper .images.img-left {
          display: none; }
        .skills-detail-wrapper .images.img-right {
          display: inline-block; }
        .skills-detail-wrapper .images .image.secondary-img:first-child {
          display: inline-block; }
        .skills-detail-wrapper .images .image.secondary-img:last-child {
          display: none; }
      .skills-detail-wrapper .info {
        display: inline-block;
        vertical-align: top;
        width: 29.38%;
        margin-right: 4.30%;
        margin-bottom: 24px; }
      .skills-detail-wrapper .additional-info {
        position: relative;
        padding-left: calc(33.68% + 12px); }
        .skills-detail-wrapper .additional-info .btn-wrapper {
          margin-top: 0;
          position: absolute;
          top: -84px;
          left: 0; }
      .skills-detail-wrapper.switch-direction .images.img-right {
        display: none; }
      .skills-detail-wrapper.switch-direction .images.img-left {
        display: inline-block; }
      .skills-detail-wrapper.switch-direction .info {
        margin-left: 4.30%;
        margin-right: 0; }
      .skills-detail-wrapper.switch-direction .additional-info {
        padding-left: calc(33.68% + 6px); }
      .skills-detail-wrapper.switch-direction .btn-wrapper {
        left: calc(70.62% - 24px); } }
  @media (min-width: 1600px) {
    .skills-detail-wrapper {
      margin-bottom: 120px; }
      .skills-detail-wrapper.is-first {
        margin-top: 250px; }
      .skills-detail-wrapper .images, .skills-detail-wrapper .info {
        margin-bottom: 48px; }
      .skills-detail-wrapper .images {
        width: calc(57.75% + 126px);
        margin-right: -126px; }
      .skills-detail-wrapper .info {
        width: 32.25%;
        margin-right: 10%; }
        .skills-detail-wrapper .info h2 {
          letter-spacing: 0em;
          font-size: 80px;
          line-height: 100px;
          margin-bottom: 64px; }
        .skills-detail-wrapper .info p {
          font-size: 24px;
          line-height: 42px;
          letter-spacing: 0.008em; }
      .skills-detail-wrapper .additional-info {
        padding-left: calc(33.68% + 12px + 126px); }
        .skills-detail-wrapper .additional-info h3 {
          font-size: 32px;
          line-height: 40px;
          margin-bottom: 18px; }
        .skills-detail-wrapper .additional-info ul li {
          font-size: 20px;
          line-height: 36px;
          letter-spacing: 0.008em; }
        .skills-detail-wrapper .additional-info .btn-wrapper {
          top: -120px; }
      .skills-detail-wrapper.switch-direction .info {
        margin-right: 0;
        margin-left: 10%; }
      .skills-detail-wrapper.switch-direction .images {
        margin-right: 0;
        margin-left: -126px; }
      .skills-detail-wrapper.switch-direction .additional-info {
        padding-left: calc(33.68% + 6px - 126px); }
        .skills-detail-wrapper.switch-direction .additional-info .btn-wrapper {
          left: calc(70.62% - 48px); } }

.works-list-wrapper {
  position: relative;
  margin-bottom: 80px; }
  .works-list-wrapper #worksList {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 0; }
  .works-list-wrapper .works-list {
    font-size: 0;
    margin-bottom: 48px; }
  .works-list-wrapper .work-item {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 32px;
    /*display: none;*/
    /*
		&:nth-child(1),&:nth-child(2),&:nth-child(3),&:nth-child(4) {
			display: inline-block;
		}*/ }
    .works-list-wrapper .work-item.to-show {
      display: none; }
    .works-list-wrapper .work-item .aux {
      position: relative; }
    .works-list-wrapper .work-item .image {
      margin-bottom: 16px; }
      .works-list-wrapper .work-item .image img {
        width: 100%;
        height: auto; }
    .works-list-wrapper .work-item .info h3 {
      letter-spacing: 0.008em;
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 4px; }
    .works-list-wrapper .work-item .info h4 {
      font-weight: 500;
      color: #E0E0E0;
      font-size: 17px;
      line-height: 20px;
      letter-spacing: 0.028em; }
  .works-list-wrapper .btns-wrapper {
    text-align: center; }
    .works-list-wrapper .btns-wrapper a.button, .works-list-wrapper .btns-wrapper a.button:visited {
      margin: 0 12px;
      margin-bottom: 32px; }
      .works-list-wrapper .btns-wrapper a.button:last-child, .works-list-wrapper .btns-wrapper a.button:visited:last-child {
        margin-bottom: 0; }
      .works-list-wrapper .btns-wrapper a.button.hide, .works-list-wrapper .btns-wrapper a.button:visited.hide {
        display: none; }
  @media (min-width: 640px) {
    .works-list-wrapper .works-list {
      margin-left: -12px;
      margin-right: -12px; }
      .works-list-wrapper .works-list .work-item {
        width: 50%;
        padding: 0 12px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; } }
  @media (min-width: 1024px) {
    .works-list-wrapper {
      /*#worksList { top: }*/
      margin-bottom: 135px; }
      .works-list-wrapper .works-list {
        margin-bottom: 16px; }
        .works-list-wrapper .works-list .work-item {
          width: 33.33%; }
      .works-list-wrapper .work-item {
        margin-bottom: 24px;
        display: inline-block; }
        .works-list-wrapper .work-item .image {
          margin: 0; }
        .works-list-wrapper .work-item .info {
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
          left: 0;
          width: 100%;
          z-index: 5;
          text-align: center;
          pointer-events: none;
          opacity: 0;
          -moz-transition: 0.4s ease;
          -ms-transition: 0.4s ease;
          -o-transition: 0.4s ease;
          transition: 0.4s ease;
          -webkit-transition: 0.4s ease;
          display: flex;
          flex-direction: column; }
          .works-list-wrapper .work-item .info h3 {
            order: 2;
            letter-spacing: 0em;
            font-size: 34px;
            line-height: 44px;
            margin-bottom: 0;
            color: #FFFFFF; }
            .works-list-wrapper .work-item .info h3 a, .works-list-wrapper .work-item .info h3 a:visited {
              color: #FFFFFF; }
          .works-list-wrapper .work-item .info h4 {
            text-transform: uppercase;
            color: #F91C46;
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 4px;
            letter-spacing: 0.1em; }
      .works-list-wrapper .aux:hover a.full-link, .works-list-wrapper .aux:hover a.full-link:visited {
        background-color: rgba(33, 33, 33, 0.9);
        mix-blend-mode: multiply; }
      .works-list-wrapper .aux:hover .info {
        opacity: 1;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
      .works-list-wrapper .btns-wrapper {
        text-align: right; }
        .works-list-wrapper .btns-wrapper a.button, .works-list-wrapper .btns-wrapper a.button:visited {
          margin: 0;
          margin-left: 24px; } }
  @media (min-width: 1024px) {
    .works-list-wrapper .works-list {
      margin-bottom: 0; } }

.value-through-process {
  background-color: #212121;
  font-size: 0;
  padding: 150px 0; }
  .value-through-process h2, .value-through-process h3, .value-through-process p {
    color: #FFFFFF; }
  .value-through-process h2 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em;
    margin-bottom: 48px; }
  .value-through-process h3 {
    display: none; }
  .value-through-process blockquote p {
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    font-weight: 500;
    margin-bottom: 80px; }
  .value-through-process blockquote p.author {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.028em;
    margin-bottom: 8px; }
  .value-through-process blockquote p.role {
    letter-spacing: 0.028em;
    font-weight: 500;
    color: #757575;
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .value-through-process {
      margin-bottom: 30px;
      background-color: transparent;
      position: relative;
      padding: 0; }
      .value-through-process:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        right: 30px;
        background-color: #212121; }
      .value-through-process .titles {
        position: relative;
        z-index: 1;
        display: inline-block;
        vertical-align: middle;
        width: 34%; }
      .value-through-process .info {
        position: relative;
        z-index: 1;
        display: inline-block;
        vertical-align: middle;
        width: 66%;
        background-color: #212121;
        padding: 80px 0;
        padding-left: 8.77%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; }
      .value-through-process h2 {
        color: #757575;
        font-size: 36px;
        line-height: 46px;
        letter-spacing: 0em;
        margin-bottom: 8px; }
      .value-through-process h3 {
        display: block;
        color: #FAFAFA;
        font-size: 88px;
        line-height: 106px;
        font-weight: 600; }
      .value-through-process blockquote p {
        font-size: 22px;
        line-height: 32px;
        letter-spacing: 0.008em;
        font-weight: 600;
        margin-bottom: 40px; }
      .value-through-process blockquote p.author {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0em; }
      .value-through-process blockquote p.role {
        font-size: 16px;
        line-height: 20px;
        font-weight: 400; } }
  @media (min-width: 1600px) {
    .value-through-process {
      margin-bottom: 40px;
      padding: 0; }
      .value-through-process:before {
        right: 40px; }
      .value-through-process .info {
        padding: 120px 0;
        padding-left: 8.47%; }
      .value-through-process h2 {
        font-size: 48px;
        line-height: 62px;
        margin-bottom: 0; }
      .value-through-process h3 {
        font-size: 120px;
        line-height: 145px; }
      .value-through-process blockquote p {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 42px; }
      .value-through-process blockquote p.author {
        font-size: 24px;
        line-height: 32px; }
      .value-through-process blockquote p.role {
        font-size: 20px;
        line-height: 24px; } }

.project-featured-image {
  margin-top: -100px; }
  .project-featured-image .image {
    width: 100%;
    height: 550px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .project-featured-image .image img {
      display: none; }
    .project-featured-image .image.img-desktop {
      display: none; }
  @media (min-width: 1024px) {
    .project-featured-image {
      margin-top: 0;
      padding: 0 30px; }
      .project-featured-image .image {
        height: 0;
        padding-top: 49.86%; }
        .project-featured-image .image.img-mobile {
          display: none; }
        .project-featured-image .image.img-desktop {
          display: block; } }
  @media (min-width: 1600px) {
    .project-featured-image {
      padding: 0 40px; }
      .project-featured-image .image {
        padding-top: 43.48%; } }

.project-intro {
  padding-top: 35px;
  margin-bottom: 80px; }
  .project-intro .goback-wrapper {
    margin-bottom: 16px; }
    .project-intro .goback-wrapper a, .project-intro .goback-wrapper a:visited {
      display: block;
      width: 26px;
      height: 18px;
      background: url("../img/svg/icon-arrow-left-secondary.svg") center center no-repeat transparent;
      background-size: contain;
      line-height: 500px;
      overflow: hidden; }
  .project-intro .info {
    padding-bottom: 100px;
    border-bottom: 1px solid #E0E0E0; }
  .project-intro h1 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px; }
  .project-intro h2 {
    color: #757575;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.028em; }
  @media (min-width: 1024px) {
    .project-intro {
      padding-top: 45px; }
      .project-intro .goback-wrapper {
        margin-bottom: 10px; }
        .project-intro .goback-wrapper a, .project-intro .goback-wrapper a:visited {
          width: 30px;
          height: 20px; }
      .project-intro .info {
        padding-bottom: 45px; }
      .project-intro h1 {
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 10px;
        letter-spacing: 0.005em; }
      .project-intro h2 {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0em; } }
  @media (min-width: 1600px) {
    .project-intro {
      padding-top: 60px;
      margin-bottom: 120px; }
      .project-intro .goback-wrapper {
        margin-bottom: 10px; }
        .project-intro .goback-wrapper a, .project-intro .goback-wrapper a:visited {
          width: 41px;
          height: 27px; }
      .project-intro .info {
        padding-bottom: 60px; }
      .project-intro h1 {
        font-size: 64px;
        line-height: 78px;
        margin-bottom: 16px; }
      .project-intro h2 {
        font-size: 24px;
        line-height: 32px; } }

.blog-wrapper {
  padding-top: 32px; }
  .blog-wrapper h1 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em;
    margin-bottom: 32px; }
  @media (min-width: 1024px) {
    .blog-wrapper {
      padding-top: 114px; }
      .blog-wrapper h1 {
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 40px; } }
  @media (min-width: 1600px) {
    .blog-wrapper {
      padding-top: 140px; }
      .blog-wrapper h1 {
        font-size: 64px;
        line-height: 78px; } }

.featured-article {
  position: relative;
  height: 600px;
  margin-bottom: 40px; }
  .featured-article .image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .featured-article .image img {
      display: none; }
  .featured-article .bg-layer {
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3b3b3b;
    background: linear-gradient(180deg, rgba(59, 59, 59, 0) 0%, black 87%); }
  .featured-article .info {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px; }
    .featured-article .info .date {
      display: block;
      color: #F91C46;
      margin-bottom: 8px;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500; }
    .featured-article .info ul.categories-list {
      margin-bottom: 8px; }
      .featured-article .info ul.categories-list li {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 500;
        display: inline; }
        .featured-article .info ul.categories-list li a, .featured-article .info ul.categories-list li a:visited {
          color: #FFFFFF; }
        .featured-article .info ul.categories-list li:after {
          content: ", ";
          color: #FFFFFF;
          white-space: pre-wrap; }
        .featured-article .info ul.categories-list li:last-child:after {
          content: ""; }
    .featured-article .info h2 {
      font-size: 24px;
      line-height: 34px;
      letter-spacing: 0.008em; }
      .featured-article .info h2 a, .featured-article .info h2 a:visited {
        color: #FFFFFF; }
    .featured-article .info p.description {
      display: none; }
  @media (min-width: 1024px) {
    .featured-article {
      height: 690px; }
      .featured-article .bg-layer {
        top: 115px; }
      .featured-article .info {
        padding: 80px 7%; }
        .featured-article .info .date {
          margin-bottom: 12px; }
        .featured-article .info ul.categories-list {
          margin-bottom: 12px; }
        .featured-article .info h2 {
          width: 60.41%;
          font-size: 36px;
          line-height: 46px;
          margin-bottom: 20px;
          letter-spacing: 0em; }
        .featured-article .info p.description {
          display: block;
          color: #FFFFFF;
          font-size: 16px;
          line-height: 24px;
          letter-spacing: 0.028em;
          margin-bottom: 0; } }
  @media (min-width: 1600px) {
    .featured-article {
      height: 820px;
      margin-bottom: 90px; }
      .featured-article .bg-layer {
        top: 75px; }
      .featured-article .info {
        padding: 80px 8.40%; }
        .featured-article .info .date {
          font-size: 16px;
          line-height: 20px;
          margin-bottom: 16px; }
        .featured-article .info ul.categories-list {
          margin-bottom: 8px; }
          .featured-article .info ul.categories-list li {
            font-size: 16px;
            line-height: 20px; }
        .featured-article .info h2 {
          width: 63.75%;
          font-size: 48px;
          line-height: 60px;
          margin-bottom: 24px; }
        .featured-article .info p.description {
          font-size: 20px;
          line-height: 28px; } }

.blog-features {
  margin-bottom: 80px;
  font-size: 0; }
  .blog-features .search-wrapper {
    margin-bottom: 20px;
    position: relative; }
    .blog-features .search-wrapper input {
      border: 0;
      border-bottom: 1px solid #E0E0E0;
      width: 100%;
      background-color: transparent;
      padding: 0 30px 6px 0;
      font-family: "Inter", Helvetica, Arial, sans-serif;
      font-size: 18px;
      line-height: 20px;
      font-weight: 400;
      color: #E0E0E0;
      letter-spacing: 0.028em;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      .blog-features .search-wrapper input::-webkit-input-placeholder {
        color: #E0E0E0;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
      .blog-features .search-wrapper input::-moz-placeholder {
        color: #E0E0E0;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
      .blog-features .search-wrapper input:-ms-input-placeholder {
        color: #E0E0E0;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
      .blog-features .search-wrapper input:-moz-placeholder {
        color: #E0E0E0;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$ieop)"; }
    .blog-features .search-wrapper a.search-submit, .blog-features .search-wrapper a.search-submit:visited {
      position: absolute;
      right: 0;
      bottom: 10px;
      width: 15px;
      height: 15px;
      background: url("../img/svg/icon-search.svg") center center no-repeat transparent;
      background-size: contain;
      line-height: 500px;
      overflow: hidden; }
  .blog-features .categories-toggle-wrapper {
    text-align: right;
    position: relative; }
    .blog-features .categories-toggle-wrapper .categories-toggle {
      font-size: 18px;
      line-height: 20px;
      letter-spacing: 0.028em; }
      .blog-features .categories-toggle-wrapper .categories-toggle a, .blog-features .categories-toggle-wrapper .categories-toggle a:visited {
        color: #E0E0E0; }
        .blog-features .categories-toggle-wrapper .categories-toggle a span, .blog-features .categories-toggle-wrapper .categories-toggle a:visited span {
          color: #757575; }
    .blog-features .categories-toggle-wrapper ul {
      display: none;
      position: absolute;
      top: 100%;
      left: -30px;
      right: -30px;
      background-color: #FFFFFF;
      padding: 20px 30px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
      .blog-features .categories-toggle-wrapper ul li {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
        letter-spacing: 0.028em; }
        .blog-features .categories-toggle-wrapper ul li:last-child {
          margin-bottom: 0; }
        .blog-features .categories-toggle-wrapper ul li a, .blog-features .categories-toggle-wrapper ul li a:visited {
          color: #757575; }
        .blog-features .categories-toggle-wrapper ul li.active {
          font-weight: 600; }
  @media (min-width: 1024px) {
    .blog-features {
      margin-bottom: 80px; }
      .blog-features .search-wrapper {
        display: inline-block;
        vertical-align: bottom;
        width: 66.66%;
        margin-bottom: 0; }
        .blog-features .search-wrapper input {
          padding: 0 30px 8px 0; }
        .blog-features .search-wrapper a.search-submit, .blog-features .search-wrapper a.search-submit:visited {
          bottom: 8px; }
      .blog-features .categories-toggle-wrapper {
        display: inline-block;
        vertical-align: bottom;
        width: 33.33%; } }
  @media (min-width: 1600px) {
    .blog-features {
      margin-bottom: 120px; }
      .blog-features .search-wrapper input {
        padding: 0 40px 10px 0;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0em; }
      .blog-features .search-wrapper a.search-submit, .blog-features .search-wrapper a.search-submit:visited {
        width: 20px;
        height: 20px;
        bottom: 11px; }
      .blog-features .categories-toggle-wrapper .categories-toggle {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0em; }
      .blog-features .categories-toggle-wrapper ul li {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 10px;
        letter-spacing: 0em; } }

.blog-list-wrapper {
  font-size: 0; }
  .blog-list-wrapper.in-related > h2 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em;
    margin-bottom: 32px; }
  .blog-list-wrapper .item {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 80px; }
    .blog-list-wrapper .item .image {
      margin-bottom: 20px; }
      .blog-list-wrapper .item .image a, .blog-list-wrapper .item .image a:visited {
        display: block; }
      .blog-list-wrapper .item .image img {
        display: block;
        width: 100%;
        height: auto; }
    .blog-list-wrapper .item .info .date {
      display: block;
      color: #F91C46;
      margin-bottom: 8px;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500; }
    .blog-list-wrapper .item .info ul.categories-list {
      margin-bottom: 8px; }
      .blog-list-wrapper .item .info ul.categories-list li {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 500;
        display: inline; }
        .blog-list-wrapper .item .info ul.categories-list li a, .blog-list-wrapper .item .info ul.categories-list li a:visited {
          color: #757575; }
        .blog-list-wrapper .item .info ul.categories-list li:after {
          content: ", ";
          color: #757575;
          white-space: pre-wrap; }
        .blog-list-wrapper .item .info ul.categories-list li:last-child:after {
          content: ""; }
    .blog-list-wrapper .item .info h2 {
      letter-spacing: 0.008em;
      font-size: 24px;
      line-height: 32px;
      margin-bottom: 16px; }
    .blog-list-wrapper .item .info p.description {
      color: #757575;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0.028em;
      margin-bottom: 0; }
  @media (min-width: 768px) {
    .blog-list-wrapper {
      margin: 0 -24px; }
      .blog-list-wrapper.in-related > h2 {
        padding: 0 24px; }
      .blog-list-wrapper .item {
        width: 50%;
        padding: 0 24px; } }
  @media (min-width: 1024px) {
    .blog-list-wrapper {
      margin: 0 -28px; }
      .blog-list-wrapper.in-related > h2 {
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 40px;
        padding: 0 28px; }
      .blog-list-wrapper .item {
        width: 33.33%;
        padding: 0 28px; }
      .blog-list-wrapper .item .image {
        margin-bottom: 24px; }
      .blog-list-wrapper .item .info .date {
        margin-bottom: 10px; }
      .blog-list-wrapper .item .info ul.categories-list {
        margin-bottom: 16px; }
      .blog-list-wrapper .item .info h2 {
        margin-bottom: 8px; }
      .blog-list-wrapper .item .info p.description {
        font-size: 16px;
        line-height: 26px; }
      .blog-list-wrapper .item.is-external {
        position: relative;
        padding-bottom: 30px; }
        .blog-list-wrapper .item.is-external:before {
          content: "";
          position: absolute;
          top: -16px;
          left: 12px;
          right: 12px;
          bottom: 0;
          background-color: #FAFAFA; }
        .blog-list-wrapper .item.is-external .image, .blog-list-wrapper .item.is-external .info {
          position: relative;
          z-index: 2; } }
  @media (min-width: 1600px) {
    .blog-list-wrapper {
      margin: 0 -36px; }
      .blog-list-wrapper.in-related > h2 {
        font-size: 64px;
        line-height: 78px;
        padding: 0 36px; }
      .blog-list-wrapper .item {
        padding: 0 36px; }
      .blog-list-wrapper .item {
        margin-bottom: 94px; }
        .blog-list-wrapper .item .info .date {
          margin-bottom: 16px;
          font-size: 16px;
          line-height: 20px; }
        .blog-list-wrapper .item .info ul.categories-list {
          margin-bottom: 22px; }
          .blog-list-wrapper .item .info ul.categories-list li {
            font-size: 16px;
            line-height: 20px; }
        .blog-list-wrapper .item .info h2 {
          font-size: 32px;
          line-height: 42px;
          margin-bottom: 20px; }
        .blog-list-wrapper .item .info p.description {
          font-size: 20px;
          line-height: 30px; }
      .blog-list-wrapper .item.is-external {
        padding-bottom: 36px; }
        .blog-list-wrapper .item.is-external:before {
          top: -24px;
          left: 12px;
          right: 12px;
          bottom: 0; } }

.pagination-wrapper {
  margin-bottom: 80px;
  text-align: center; }
  .pagination-wrapper ul.page-numbers {
    font-size: 0; }
    .pagination-wrapper ul.page-numbers li {
      display: inline-block;
      vertical-align: middle;
      font-size: 12px;
      margin: 0 8px;
      font-weight: 500;
      font-size: 17px;
      line-height: 20px;
      letter-spacing: 0.028em; }
      .pagination-wrapper ul.page-numbers li a.prev, .pagination-wrapper ul.page-numbers li a.prev:visited {
        line-height: 500px;
        overflow: hidden;
        display: block;
        width: 22px;
        height: 15px;
        background: url("../img/svg/icon-arrow-left-secondary.svg") center center no-repeat transparent;
        background-size: contain; }
      .pagination-wrapper ul.page-numbers li a.next, .pagination-wrapper ul.page-numbers li a.next:visited {
        line-height: 500px;
        overflow: hidden;
        display: block;
        width: 22px;
        height: 15px;
        background: url("../img/svg/icon-arrow-left-secondary.svg") center center no-repeat transparent;
        background-size: contain;
        transform: rotate(180deg); }
      .pagination-wrapper ul.page-numbers li span.page-numbers.current {
        position: relative; }
        .pagination-wrapper ul.page-numbers li span.page-numbers.current:after {
          content: "";
          position: absolute;
          bottom: -4px;
          left: 50%;
          margin-left: -9px;
          width: 18px;
          height: 2px;
          background-color: #F91C46; }
  @media (min-width: 1024px) {
    .pagination-wrapper {
      margin-top: -20px;
      margin-bottom: 60px; }
      .pagination-wrapper ul.page-numbers li {
        margin: 0 7px;
        font-size: 11px;
        line-height: 14px; }
        .pagination-wrapper ul.page-numbers li a.prev, .pagination-wrapper ul.page-numbers li a.prev:visited {
          width: 17px;
          height: 11px; }
        .pagination-wrapper ul.page-numbers li a.next, .pagination-wrapper ul.page-numbers li a.next:visited {
          width: 17px;
          height: 11px; }
        .pagination-wrapper ul.page-numbers li span.page-numbers.current {
          position: relative; }
          .pagination-wrapper ul.page-numbers li span.page-numbers.current:after {
            bottom: -3px;
            margin-left: -7px;
            width: 14px; } }
  @media (min-width: 1600px) {
    .pagination-wrapper {
      margin-top: -10px;
      margin-bottom: 120px; }
      .pagination-wrapper ul.page-numbers li {
        margin: 0 8px;
        font-size: 17px;
        line-height: 20px; }
        .pagination-wrapper ul.page-numbers li a.prev, .pagination-wrapper ul.page-numbers li a.prev:visited {
          width: 22px;
          height: 15px; }
        .pagination-wrapper ul.page-numbers li a.next, .pagination-wrapper ul.page-numbers li a.next:visited {
          width: 22px;
          height: 15px; }
        .pagination-wrapper ul.page-numbers li span.page-numbers.current {
          position: relative; }
          .pagination-wrapper ul.page-numbers li span.page-numbers.current:after {
            bottom: -4px;
            margin-left: -9px;
            width: 18px; } }

.blog-detail-wrapper .entry {
  max-width: 940px;
  margin: 0 auto;
  margin-bottom: 80px; }

@media (min-width: 1600px) {
  .blog-detail-wrapper .entry {
    max-width: 1230px;
    margin-bottom: 120px; } }

.article-detail-info {
  position: relative;
  height: 600px;
  margin-bottom: 40px; }
  .article-detail-info .image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    .article-detail-info .image img {
      display: none; }
  .article-detail-info .bg-layer {
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3b3b3b;
    background: linear-gradient(180deg, rgba(59, 59, 59, 0) 0%, black 87%); }
  .article-detail-info .info {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 0;
    right: 0; }
    .article-detail-info .info .date {
      display: block;
      color: #F91C46;
      margin-bottom: 8px;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500; }
    .article-detail-info .info ul.categories-list {
      margin-bottom: 8px; }
      .article-detail-info .info ul.categories-list li {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 500;
        display: inline; }
        .article-detail-info .info ul.categories-list li a, .article-detail-info .info ul.categories-list li a:visited {
          color: #FFFFFF; }
        .article-detail-info .info ul.categories-list li:after {
          content: ", ";
          color: #FFFFFF;
          white-space: pre-wrap; }
        .article-detail-info .info ul.categories-list li:last-child:after {
          content: ""; }
    .article-detail-info .info h1 {
      font-size: 24px;
      line-height: 34px;
      letter-spacing: 0.008em;
      color: #FFFFFF; }
    .article-detail-info .info p.description {
      display: none; }
  @media (min-width: 992px) {
    .article-detail-info {
      /*margin: 0 -40px;*/
      margin-bottom: 80px; } }
  @media (min-width: 1024px) {
    .article-detail-info {
      margin: 0 30px;
      margin-bottom: 80px;
      height: 690px; }
      .article-detail-info .bg-layer {
        top: 115px; }
      .article-detail-info .info {
        bottom: 80px; }
        .article-detail-info .info .date {
          margin-bottom: 12px; }
        .article-detail-info .info ul.categories-list {
          margin-bottom: 12px; }
        .article-detail-info .info h1 {
          width: 75%;
          font-size: 36px;
          line-height: 46px;
          margin-bottom: 20px;
          letter-spacing: 0em; }
        .article-detail-info .info p.description {
          display: block;
          color: #FFFFFF;
          font-size: 16px;
          line-height: 24px;
          letter-spacing: 0.028em;
          margin-bottom: 0; } }
  @media (min-width: 1600px) {
    .article-detail-info {
      height: 820px;
      margin-bottom: 90px; }
      .article-detail-info .bg-layer {
        top: 75px; }
      .article-detail-info .info {
        bottom: 80px; }
        .article-detail-info .info .date {
          font-size: 16px;
          line-height: 20px;
          margin-bottom: 16px; }
        .article-detail-info .info ul.categories-list {
          margin-bottom: 8px; }
          .article-detail-info .info ul.categories-list li {
            font-size: 16px;
            line-height: 20px; }
        .article-detail-info .info h1 {
          width: 55%;
          font-size: 48px;
          line-height: 60px;
          margin-bottom: 24px; }
        .article-detail-info .info p.description {
          font-size: 20px;
          line-height: 28px; } }

/*
600+100+100 = 800px
420+80+80= 580px
580+40+40 = 660px
*/
.why-work-with-us-wrapper {
  margin-top: -100px; }
  @media (min-width: 1024px) {
    .why-work-with-us-wrapper {
      margin-top: 0; } }

.why-work-slide {
  height: 100vh;
  min-height: 660px;
  text-align: center;
  position: relative;
  background-color: #FFFFFF; }
  .why-work-slide .slide-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .why-work-slide h1 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em; }
  .why-work-slide h2 {
    color: #FAFAFA;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em;
    margin-bottom: 18px; }
  .why-work-slide p.quote {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    margin-bottom: 40px; }
  .why-work-slide p.author {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.028em;
    margin-bottom: 8px; }
  .why-work-slide p.role {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .why-work-slide {
      min-height: 580px; }
      .why-work-slide h1 {
        font-size: 64px;
        line-height: 78px;
        letter-spacing: 0em; }
      .why-work-slide h2 {
        font-weight: 500;
        font-size: 164px;
        line-height: 200px;
        letter-spacing: 0em;
        margin-bottom: -80px; }
      .why-work-slide p.quote {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0.008em;
        max-width: 946px;
        margin: 0 auto;
        margin-bottom: 32px; }
      .why-work-slide p.author {
        font-size: 16px; }
      .why-work-slide p.role {
        font-weight: 400;
        font-size: 14px;
        line-height: 18px; } }
  @media (min-width: 1600px) {
    .why-work-slide {
      min-height: 800px; }
      .why-work-slide h2 {
        font-size: 220px;
        line-height: 266px;
        margin-bottom: -100px; }
      .why-work-slide p.quote {
        font-size: 32px;
        line-height: 42px;
        max-width: 1236px;
        margin-bottom: 42px; }
      .why-work-slide p.author {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 10px; }
      .why-work-slide p.role {
        font-size: 20px;
        line-height: 24px; } }

.awards-list-wrapper {
  min-height: 100vh; }
  .awards-list-wrapper h1 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.008em;
    padding-top: 80px;
    margin-bottom: 80px; }
  .awards-list-wrapper .awards-list ul li {
    font-size: 0;
    margin-bottom: 64px; }
    .awards-list-wrapper .awards-list ul li span.award {
      display: block;
      font-weight: 500;
      font-size: 17px;
      line-height: 20px;
      letter-spacing: 0.028em;
      color: #757575;
      margin-bottom: 8px; }
      .awards-list-wrapper .awards-list ul li span.award:before {
        content: "_ ";
        white-space: pre-wrap;
        color: #F91C46; }
    .awards-list-wrapper .awards-list ul li span.client {
      display: block;
      font-weight: 400;
      font-size: 18px;
      line-height: 22px;
      letter-spacing: 0.028em;
      color: #E0E0E0; }
      .awards-list-wrapper .awards-list ul li span.client a, .awards-list-wrapper .awards-list ul li span.client a:visited {
        color: #E0E0E0; }
  @media (min-width: 768px) {
    .awards-list-wrapper .awards-list {
      max-width: 752px;
      margin: 0 auto; }
      .awards-list-wrapper .awards-list ul li span.award {
        display: inline-block;
        vertical-align: middle;
        width: 70%;
        text-align: left;
        margin-bottom: 0; }
      .awards-list-wrapper .awards-list ul li span.client {
        display: inline-block;
        vertical-align: middle;
        width: 30%;
        text-align: right; } }
  @media (min-width: 1024px) {
    .awards-list-wrapper {
      text-align: center; }
      .awards-list-wrapper h1 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0.008em;
        padding-top: 115px;
        margin-bottom: 96px; }
      .awards-list-wrapper .awards-list ul {
        padding-bottom: 80px; }
        .awards-list-wrapper .awards-list ul li {
          margin-bottom: 40px; }
          .awards-list-wrapper .awards-list ul li span.award {
            font-weight: 400;
            font-size: 20px;
            line-height: 24px;
            letter-spacing: 0em; }
          .awards-list-wrapper .awards-list ul li span.client {
            font-size: 20px;
            line-height: 24px;
            letter-spacing: 0em; } }
  @media (min-width: 1600px) {
    .awards-list-wrapper h1 {
      font-size: 32px;
      line-height: 40px;
      padding-top: 174px;
      margin-bottom: 134px; }
    .awards-list-wrapper .awards-list {
      max-width: 984px; }
      .awards-list-wrapper .awards-list ul {
        padding-bottom: 134px; }
        .awards-list-wrapper .awards-list ul li {
          margin-bottom: 45px; }
          .awards-list-wrapper .awards-list ul li span.award {
            font-size: 24px;
            line-height: 30px; }
          .awards-list-wrapper .awards-list ul li span.client {
            font-size: 24px;
            line-height: 30px; } }

.partners-list-wrapper {
  min-height: 100vh;
  text-align: left; }
  .partners-list-wrapper h1 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.008em;
    padding-top: 80px;
    margin-bottom: 80px; }
  .partners-list-wrapper .partners-list ul li {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    color: #757575;
    margin-bottom: 56px; }
    .partners-list-wrapper .partners-list ul li:before {
      content: "_ ";
      white-space: pre-wrap;
      color: #F91C46; }
    .partners-list-wrapper .partners-list ul li a, .partners-list-wrapper .partners-list ul li a:visited {
      color: #757575; }
  @media (min-width: 768px) {
    .partners-list-wrapper .partners-list ul {
      column-count: 2; } }
  @media (min-width: 992px) {
    .partners-list-wrapper .partners-list ul {
      column-count: 3; } }
  @media (min-width: 1024px) {
    .partners-list-wrapper {
      text-align: center; }
      .partners-list-wrapper h1 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0.008em;
        padding-top: 115px;
        margin-bottom: 96px; }
      .partners-list-wrapper .partners-list {
        text-align: left; }
        .partners-list-wrapper .partners-list ul {
          padding-bottom: 80px; }
          .partners-list-wrapper .partners-list ul li {
            font-weight: 400;
            font-size: 20px;
            line-height: 24px;
            letter-spacing: 0em;
            margin-bottom: 40px; } }
  @media (min-width: 1600px) {
    .partners-list-wrapper h1 {
      font-size: 32px;
      line-height: 40px;
      padding-top: 174px;
      margin-bottom: 134px; }
    .partners-list-wrapper .partners-list ul {
      padding-bottom: 134px; }
      .partners-list-wrapper .partners-list ul li {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 36px; } }

.partners-awards-description {
  height: 100vh;
  position: relative;
  text-align: center; }
  .partners-awards-description .slide-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .partners-awards-description .split-line {
    overflow: hidden; }
  .partners-awards-description p {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    letter-spacing: 0.008em;
    margin: 0; }
  @media (min-width: 1024px) {
    .partners-awards-description p {
      max-width: 776px;
      margin: 0 auto;
      font-size: 48px;
      line-height: 64px;
      letter-spacing: 0.005em; } }
  @media (min-width: 1300px) {
    .partners-awards-description p {
      max-width: 984px;
      font-size: 64px;
      line-height: 78px; } }

.content-testimonial-wrapper {
  position: relative;
  height: 100vh; }
  .content-testimonial-wrapper .slide-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .content-testimonial-wrapper p.quote {
    margin-bottom: 80px;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    font-weight: 500; }
  .content-testimonial-wrapper p.author {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.028em; }
  .content-testimonial-wrapper p.role {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0.028em;
    color: #757575; }
  @media (min-width: 1024px) {
    .content-testimonial-wrapper {
      margin: 30px;
      margin-top: 0;
      text-align: center; }
      .content-testimonial-wrapper p.quote {
        max-width: 946px;
        margin: 0 auto;
        margin-bottom: 30px;
        font-size: 36px;
        line-height: 44px;
        letter-spacing: 0em;
        font-weight: 600; }
      .content-testimonial-wrapper p.author {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0em; }
      .content-testimonial-wrapper p.role {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400; } }
  @media (min-width: 1600px) {
    .content-testimonial-wrapper {
      margin: 40px;
      margin-top: 0; }
      .content-testimonial-wrapper p.quote {
        max-width: 1294px;
        margin-bottom: 40px;
        font-size: 48px;
        line-height: 60px; }
      .content-testimonial-wrapper p.author {
        font-size: 24px;
        line-height: 32px; }
      .content-testimonial-wrapper p.role {
        font-size: 20px;
        line-height: 32px; } }

.contacts-page-wrapper {
  min-height: 100vh;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -100px;
  padding-top: 132px;
  background-color: #212121;
  padding-bottom: 48px;
  font-size: 0; }
  .contacts-page-wrapper .container {
    max-width: 960px; }
  .contacts-page-wrapper .contacts-info.in-desktop {
    display: none; }
  .contacts-page-wrapper .contacts-info .address {
    margin-bottom: 40px; }
    .contacts-page-wrapper .contacts-info .address p {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.028em;
      color: #FFFFFF;
      margin-bottom: 10px; }
      .contacts-page-wrapper .contacts-info .address p.link {
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 0; }
        .contacts-page-wrapper .contacts-info .address p.link a, .contacts-page-wrapper .contacts-info .address p.link a:visited {
          color: #757575; }
  .contacts-page-wrapper .contacts-info .contacts {
    margin-bottom: 40px; }
    .contacts-page-wrapper .contacts-info .contacts h2 {
      color: #F91C46;
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.028em;
      font-weight: 400; }
    .contacts-page-wrapper .contacts-info .contacts p {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.028em;
      margin-bottom: 20px; }
      .contacts-page-wrapper .contacts-info .contacts p a, .contacts-page-wrapper .contacts-info .contacts p a:visited {
        color: #FFFFFF; }
      .contacts-page-wrapper .contacts-info .contacts p.link {
        margin-bottom: 0;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        margin-top: -10px; }
        .contacts-page-wrapper .contacts-info .contacts p.link a, .contacts-page-wrapper .contacts-info .contacts p.link a:visited {
          color: #757575; }
  .contacts-page-wrapper .contacts-info .social-nav {
    margin-bottom: 60px; }
    .contacts-page-wrapper .contacts-info .social-nav ul li {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 0.028em;
      margin-bottom: 20px; }
      .contacts-page-wrapper .contacts-info .social-nav ul li a, .contacts-page-wrapper .contacts-info .social-nav ul li a:visited {
        color: #FFFFFF; }
    .contacts-page-wrapper .contacts-info .social-nav h2 {
      margin-top: -10px;
      font-weight: 500;
      font-size: 15px;
      line-height: 20px;
      color: #757575; }
  .contacts-page-wrapper .contacts-info p.copyright {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.028em;
    color: #FFFFFF;
    margin-bottom: 0; }
  .contacts-page-wrapper .contacts-form {
    margin-bottom: 80px; }
    .contacts-page-wrapper .contacts-form h1 {
      font-size: 40px;
      line-height: 48px;
      letter-spacing: 0.005em;
      color: #FFFFFF;
      margin-bottom: 35px; }
      .contacts-page-wrapper .contacts-form h1 .dot {
        color: #F91C46; }
    .contacts-page-wrapper .contacts-form .form-wrapper {
      max-width: 460px; }
    .contacts-page-wrapper .contacts-form .form-field {
      margin-bottom: 40px; }
      .contacts-page-wrapper .contacts-form .form-field input {
        display: block;
        border: 0;
        background-color: transparent;
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.028em;
        font-weight: 400;
        font-family: "Inter", Helvetica, Arial, sans-serif;
        color: #FFFFFF;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding-left: 0px;
        border-bottom: 1px solid transparent;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
        .contacts-page-wrapper .contacts-form .form-field input::-webkit-input-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field input::-moz-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field input:-ms-input-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field input:-moz-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field input:focus {
          border-color: #F91C46;
          -moz-transition: 0.4s ease;
          -ms-transition: 0.4s ease;
          -o-transition: 0.4s ease;
          transition: 0.4s ease;
          -webkit-transition: 0.4s ease; }
      .contacts-page-wrapper .contacts-form .form-field select {
        display: block;
        border: 0;
        background-color: transparent;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        padding-right: 32px;
        letter-spacing: 0.028em;
        font-weight: 400;
        font-family: "Inter", Helvetica, Arial, sans-serif;
        color: #757575;
        border-bottom: 1px solid transparent;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease;
        /*
				&:focus {
					border-color: $theme-secondary;
					@include transition();
				}
				*/
        -webkit-appearance: none;
        -moz-appearance: none;
        background: url("../img/arrow-drop-2.png") right center no-repeat #212121;
        background-size: 44px 50px; }
        .contacts-page-wrapper .contacts-form .form-field select::-webkit-input-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field select::-moz-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field select:-ms-input-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field select:-moz-placeholder {
          color: #757575;
          opacity: 1; }
        .contacts-page-wrapper .contacts-form .form-field select:focus, .contacts-page-wrapper .contacts-form .form-field select:active {
          outline-color: none; }
        .contacts-page-wrapper .contacts-form .form-field select.selected {
          color: #FFFFFF; }
      .contacts-page-wrapper .contacts-form .form-field select::-ms-expand {
        display: none; }
    .contacts-page-wrapper .contacts-form .form-bottom {
      padding-top: 30px; }
  @media (min-width: 768px) {
    .contacts-page-wrapper .contacts-info {
      vertical-align: top;
      width: 45%; }
      .contacts-page-wrapper .contacts-info.in-mobile {
        display: none; }
      .contacts-page-wrapper .contacts-info.in-desktop {
        display: inline-block; }
    .contacts-page-wrapper .contacts-form {
      display: inline-block;
      vertical-align: top;
      width: 55%;
      margin-top: -10px;
      margin-bottom: 0; } }
  @media (min-width: 1024px) {
    .contacts-page-wrapper {
      margin-top: 0;
      padding-top: 124px;
      width: calc(100% - 60px);
      margin-left: 30px;
      position: relative;
      padding-bottom: 70px; }
      .contacts-page-wrapper:after {
        content: "";
        position: absolute;
        bottom: 0;
        height: 30px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF; }
      .contacts-page-wrapper .container {
        max-width: 1488px; }
      .contacts-page-wrapper .contacts-info {
        width: 50%; }
      .contacts-page-wrapper .contacts-form {
        width: 50%; }
      .contacts-page-wrapper .contacts-info .address {
        margin-bottom: 32px; }
        .contacts-page-wrapper .contacts-info .address p {
          font-size: 20px;
          line-height: 28px;
          letter-spacing: 0em;
          margin-bottom: 16px; }
          .contacts-page-wrapper .contacts-info .address p.link {
            font-size: 20px;
            line-height: 28px;
            margin-bottom: 0; }
      .contacts-page-wrapper .contacts-info .contacts {
        margin-bottom: 30px; }
        .contacts-page-wrapper .contacts-info .contacts h2 {
          font-size: 16px;
          line-height: 32px; }
        .contacts-page-wrapper .contacts-info .contacts p {
          font-size: 20px;
          line-height: 28px;
          letter-spacing: 0.028em;
          margin-bottom: 32px; }
          .contacts-page-wrapper .contacts-info .contacts p a, .contacts-page-wrapper .contacts-info .contacts p a:visited {
            color: #FFFFFF; }
          .contacts-page-wrapper .contacts-info .contacts p.link {
            margin-bottom: 0;
            font-size: 20px;
            line-height: 28px;
            margin-top: -16px; }
      .contacts-page-wrapper .contacts-info .social-nav {
        margin-bottom: 60px; }
        .contacts-page-wrapper .contacts-info .social-nav ul li {
          font-size: 20px;
          line-height: 28px;
          letter-spacing: 0em;
          margin-bottom: 32px; }
        .contacts-page-wrapper .contacts-info .social-nav h2 {
          margin-top: -16px;
          font-size: 20px;
          line-height: 28px;
          letter-spacing: 0.008em; }
      .contacts-page-wrapper .contacts-info p.copyright {
        color: #757575; }
      .contacts-page-wrapper .contacts-form h1 {
        font-size: 48px;
        line-height: 62px;
        margin-bottom: 35px; }
      .contacts-page-wrapper .contacts-form .form-field {
        margin-bottom: 50px; }
        .contacts-page-wrapper .contacts-form .form-field input, .contacts-page-wrapper .contacts-form .form-field select {
          font-size: 16px;
          line-height: 28px; }
      .contacts-page-wrapper .contacts-form .form-bottom {
        padding-top: 20px; } }
  @media (min-width: 1600px) {
    .contacts-page-wrapper {
      padding-top: 160px;
      width: calc(100% - 80px);
      margin-left: 40px;
      position: relative;
      padding-bottom: 120px; }
      .contacts-page-wrapper:after {
        height: 40px; }
      .contacts-page-wrapper .contacts-info {
        width: 45%; }
      .contacts-page-wrapper .contacts-form {
        width: 55%; }
      .contacts-page-wrapper .contacts-info .address {
        margin-bottom: 60px; }
        .contacts-page-wrapper .contacts-info .address p {
          font-size: 24px;
          line-height: 32px;
          margin-bottom: 20px; }
      .contacts-page-wrapper .contacts-info .contacts {
        margin-bottom: 60px; }
        .contacts-page-wrapper .contacts-info .contacts h2 {
          font-size: 20px;
          line-height: 32px; }
        .contacts-page-wrapper .contacts-info .contacts p {
          font-size: 24px;
          line-height: 32px;
          letter-spacing: 0em;
          margin-bottom: 32px; }
          .contacts-page-wrapper .contacts-info .contacts p.link {
            margin-bottom: 0;
            font-size: 20px;
            line-height: 28px;
            margin-top: -10px; }
      .contacts-page-wrapper .contacts-info .social-nav {
        margin-bottom: 50px; }
        .contacts-page-wrapper .contacts-info .social-nav ul li {
          font-size: 24px;
          line-height: 32px;
          margin-bottom: 30px; }
        .contacts-page-wrapper .contacts-info .social-nav h2 {
          margin-top: -10px;
          letter-spacing: 0.028em; }
      .contacts-page-wrapper .contacts-info p.copyright {
        color: #757575;
        font-size: 20px;
        line-height: 28px; }
      .contacts-page-wrapper .contacts-form h1 {
        font-size: 64px;
        line-height: 78px;
        margin-bottom: 60px; }
      .contacts-page-wrapper .contacts-form .form-field input, .contacts-page-wrapper .contacts-form .form-field select {
        font-size: 20px;
        line-height: 32px; }
      .contacts-page-wrapper .contacts-form .form-bottom {
        padding-top: 30px; } }

.text-page-detail-wrapper .entry {
  max-width: 940px;
  margin: 0 auto;
  margin-bottom: 80px; }

.text-page-detail-wrapper .text-detail-info .info {
  max-width: 940px;
  margin: 0 auto; }

@media (min-width: 1600px) {
  .text-page-detail-wrapper .entry {
    max-width: 1230px;
    margin-bottom: 120px; }
  .text-page-detail-wrapper .text-detail-info .info {
    max-width: 1230px; } }

.text-detail-info {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px; }
  .text-detail-info .info h1 {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0.008em; }
  @media (min-width: 992px) {
    .text-detail-info {
      margin-top: 80px;
      margin-bottom: 80px; } }
  @media (min-width: 1024px) {
    .text-detail-info {
      padding-top: 40px; }
      .text-detail-info .info h1 {
        width: 75%;
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 20px;
        letter-spacing: 0em; } }
  @media (min-width: 1600px) {
    .text-detail-info {
      margin-top: 90px;
      margin-bottom: 90px;
      padding-top: 80px; }
      .text-detail-info .info h1 {
        width: 55%;
        font-size: 48px;
        line-height: 60px;
        margin-bottom: 24px; } }

.page-404-wrapper {
  margin-top: -100px; }
  @media (min-width: 1024px) {
    .page-404-wrapper {
      margin-top: 0; } }

.page-404-content {
  height: 100vh;
  min-height: 660px;
  text-align: center;
  position: relative;
  background-color: #FFFFFF; }
  .page-404-content .slide-info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    width: 100%; }
  .page-404-content h1 {
    color: #E0E0E0;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.005em;
    margin-bottom: 18px; }
  .page-404-content h2 {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    margin-bottom: 30px; }
  .page-404-content p {
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0.028em;
    margin-bottom: 0; }
  .page-404-content .btn-wrapper {
    padding-top: 30px; }
  @media (min-width: 1024px) {
    .page-404-content {
      min-height: 580px; }
      .page-404-content h1 {
        font-weight: 500;
        font-size: 164px;
        line-height: 200px;
        letter-spacing: 0em;
        margin-bottom: -80px; }
      .page-404-content h2 {
        font-weight: 600;
        font-size: 40px;
        line-height: 50px;
        letter-spacing: 0.008em;
        max-width: 600px;
        margin: 0 auto;
        margin-bottom: 32px; }
      .page-404-content p {
        margin: 0 auto;
        max-width: 600px;
        font-size: 24px;
        line-height: 32px; }
      .page-404-content .btn-wrapper {
        padding-top: 60px; } }
  @media (min-width: 1600px) {
    .page-404-content {
      min-height: 800px; }
      .page-404-content h1 {
        font-size: 220px;
        line-height: 266px;
        margin-bottom: -100px; } }

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