@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap);
/* App styles */
/* Colors */
/* Menu */
/* Root vars */
:root {
  --nav-copyright-color: #888;
  --nav-burguer-color: #fff;
  --nav-logo-color: #fff;
  --nav-background-color: #000;
}

/* Padding Section */
@font-face {
  font-family: "NeueMontreal";
  src: url(../fonts/NeueMontreal-Regular.59f1df.woff) format("woff"), url(../fonts/NeueMontreal-Regular.403bb8.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueMontreal-Medium";
  src: url(../fonts/NeueMontreal-Medium.706dda.woff) format("woff"), url(../fonts/NeueMontreal-Medium.829717.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Mixins */
/**
 * Computes a topShadow for a card effect.
 *
 * @param {Number} $depth - depth level
 *
 * @return {List}
 */
/**
 * Computes a bottomShadow for a card effect.
 *
 * @param {Number} $depth - depth level
 *
 * @return {List}
 */
/**
 * Font Face
 *
 * @param {string} $fontName - Name of the font
 * @param {string} $folderName - Subfolder inside the fonts folder
 * @param {string} $fileName - Name of the font-file
 * @param {string} $fontWeight (normal) - Font weight value
 * @param {string} $fontStyle (normal) - Font style value
 */
/**
 * Font Responsive
 *
 * @param {number} $minFontSize - Min font size
 * @param {number} $maxFontSize - Max font size
 * @param {number} $minViewport - Min viewport size
 * @param {number} $maxViewport - Max viewport size
 */
/**
 * Transition
 *
 * @param {string} $prop
 * @param {duration} $duration (0.75s)
 * @param {duration} $delay (0s)
 * @param {ease} $ease ($easeInOutCubic)
 */
/**
 * Cross Browser Placeholder styles
 *
 * Uses the @content styles within the mixin as stytes
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 */
@keyframes soundWave {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-63px);
  }
}
/**
 * Font Responsive
 *
 * @param {number} $minFontSize - Min font size
 * @param {number} $maxFontSize - Max font size
 * @param {number} $minViewport - Min viewport size
 * @param {number} $maxViewport - Max viewport size
 */
/* Core styles */
* {
  outline: 0;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

input[type=submit] {
  -webkit-appearance: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  text-decoration: none;
}

html {
  *overflow: hidden;
}

html,
body {
  height: 100%;
  font-family: "NeueMontreal", Arial, Helvetica, sans-serif;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent !important;
  background-color: #101010;
}

strong {
  font-weight: 500;
  vertical-align: baseline;
}

body {
  touch-action: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
  padding: 0;
  text-align: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  text-transform: inherit;
  color: inherit;
}

::-webkit-scrollbar {
  display: none;
}

::-moz-selection {
  color: #000;
  background: #999;
}

::selection {
  color: #000;
  background: #999;
}

@keyframes zoominInfinite {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.5);
    opacity: 1;
  }
  90% {
    transform: scale(4);
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
.zoominInfinite {
  animation-iteration-count: infinite;
  animation-duration: 10s;
  animation-delay: 0s;
  animation-timing-function: linear;
  animation-fill-mode: both;
  backface-visibility: hidden;
  animation-name: zoominInfinite;
}

@keyframes zoominout {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.15);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.animated.zoominout {
  opacity: 1;
  animation-iteration-count: infinite;
  animation-duration: 28s;
  animation-delay: 0s;
  animation-timing-function: linear;
  animation-fill-mode: both;
  backface-visibility: hidden;
  animation-name: zoominout;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.animated.bounce {
  opacity: 1;
  animation-iteration-count: infinite;
  animation-duration: 2.25s;
  animation-delay: 0s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animated.flash {
  opacity: 1;
  animation-name: flash;
}

@keyframes flash2 {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animated.flash2 {
  opacity: 1;
  animation-iteration-count: infinite;
  animation-duration: 8s;
  animation-delay: 0s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  backface-visibility: hidden;
  animation-name: flash2;
}

@keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
  100% {
    transform: none;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    transform-origin: top center;
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInVan {
  0% {
    opacity: 0;
    transform: translate(-2000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate(25px, 0) rotate(0deg);
  }
  65% {
    transform: translate(30px, 0) rotate(5deg);
  }
  70% {
    transform: translate(30px, 0) rotate(0deg);
  }
  80% {
    transform: translate(-10px, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-500px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  33% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
@keyframes flipInX {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}
@keyframes flipOutX {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}
@keyframes flipOutY {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}
@keyframes lightSpeedIn {
  0% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
  }
  60% {
    opacity: 1;
    transform: translateX(-20%) skewX(30deg);
  }
  80% {
    opacity: 1;
    transform: translateX(0%) skewX(-15deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
  }
}
@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center center;
  }
}
@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }
  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
}
@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
}
@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom;
  }
  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
}
@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }
  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    transform: rotate(200deg);
    transform-origin: center center;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
    transform: rotate(0);
    transform-origin: top left;
  }
  20%, 60% {
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40% {
    animation-timing-function: ease-in-out;
    transform: rotate(60deg);
    transform-origin: top left;
  }
  80% {
    opacity: 1;
    animation-timing-function: ease-in-out;
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
  }
  100% {
    opacity: 0;
    transform: translateY(700px);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomInDown {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}
@keyframes zoomInLeft {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}
@keyframes zoomInRight {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}
@keyframes zoomInUp {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOutIndex {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes zoomOutDown {
  40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
  100% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutUp {
  40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
  100% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
  }
}
@keyframes clipInLeft {
  0% {
    -webkit-clip-path: inset(0% 100% 0 0);
    clip-path: inset(0% 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0 0);
    clip-path: inset(0% 0% 0 0);
  }
}
.animated {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 5s;
}

/*===================================================================================*/
/*  pulse                                                                            */
/*===================================================================================*/
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.animated.pulse {
  opacity: 1;
  animation-name: pulse;
}

/*===================================================================================*/
/*  flipInX                                                                          */
/*===================================================================================*/
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.animated.flipInX {
  opacity: 1;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

/*===================================================================================*/
/*  fadeIn                                                                           */
/*===================================================================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animated.fadeIn {
  opacity: 1;
  animation-name: fadeIn;
}

/*===================================================================================*/
/*  fadeInUp                                                                         */
/*===================================================================================*/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated.fadeInUp {
  opacity: 1;
  animation-name: fadeInUp;
}

/*===================================================================================*/
/* fadeInDown                                                                        */
/*===================================================================================*/
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated.fadeInDown {
  opacity: 1;
  animation-name: fadeInDown;
}

/*===================================================================================*/
/*  fadeInLeft                                                                       */
/*===================================================================================*/
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animated.fadeInLeft {
  opacity: 1;
  animation-name: fadeInLeft;
}

/*===================================================================================*/
/*  fadeInRight                                                                      */
/*===================================================================================*/
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animated.fadeInRight {
  opacity: 1;
  animation-name: fadeInRight;
}

/*===================================================================================*/
/*  fadeInUpBig                                                                      */
/*===================================================================================*/
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated.fadeInUpBig {
  opacity: 1;
  animation-name: fadeInUpBig;
}

/*===================================================================================*/
/*  fadeInDownBig                                                                    */
/*===================================================================================*/
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated.fadeInDownBig {
  opacity: 1;
  animation-name: fadeInDownBig;
}

/*===================================================================================*/
/*  fadeInLeftBig                                                                    */
/*===================================================================================*/
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animated.fadeInLeftBig {
  opacity: 1;
  animation-name: fadeInLeftBig;
}

/*===================================================================================*/
/*  fadeInRightBig                                                                   */
/*===================================================================================*/
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animated.fadeInRightBig {
  opacity: 1;
  animation-name: fadeInRightBig;
}

/*===================================================================================*/
/*  bounceIn                                                                         */
/*===================================================================================*/
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.animated.bounceIn {
  opacity: 1;
  animation-name: bounceIn;
}

/*===================================================================================*/
/*  bounceInUp                                                                       */
/*===================================================================================*/
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animated.bounceInUp {
  opacity: 1;
  animation-name: bounceInUp;
}

/*===================================================================================*/
/*  bounceInDown                                                                     */
/*===================================================================================*/
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animated.bounceInDown {
  opacity: 1;
  animation-name: bounceInDown;
}

/*===================================================================================*/
/*  bounceInLeft                                                                     */
/*===================================================================================*/
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.animated.bounceInLeft {
  opacity: 1;
  animation-name: bounceInLeft;
}

/*===================================================================================*/
/*  bounceInRight                                                                    */
/*===================================================================================*/
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.animated.bounceInRight {
  opacity: 1;
  animation-name: bounceInRight;
}

/*===================================================================================*/
/* rotateInUpLeft                                                                    */
/*===================================================================================*/
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.animated.rotateInUpLeft {
  opacity: 1;
  animation-name: rotateInUpLeft;
}

/*===================================================================================*/
/*  otateInDownLeft                                                                  */
/*===================================================================================*/
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.animated.rotateInDownLeft {
  opacity: 1;
  animation-name: rotateInDownLeft;
}

/*===================================================================================*/
/*  rotateInUpRight                                                                  */
/*===================================================================================*/
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.animated.rotateInUpRight {
  opacity: 1;
  animation-name: rotateInUpRight;
}

/*===================================================================================*/
/*  rotateInDownRight                                                                */
/*===================================================================================*/
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.animated.rotateInDownRight {
  opacity: 1;
  animation-name: rotateInDownRight;
}

/*===================================================================================*/
/*  lightSpeedRight                                                                  */
/*===================================================================================*/
@keyframes lightSpeedRight {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.animated.lightSpeedRight {
  opacity: 1;
  animation-name: lightSpeedRight;
  animation-timing-function: ease-out;
}

.animated.lightSpeedRight {
  opacity: 1;
  animation-duration: 0.5s;
}

/*===================================================================================*/
/*  lightSpeedLeft                                                                  */
/*===================================================================================*/
@keyframes lightSpeedLeft {
  0% {
    transform: translateX(-100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.animated.lightSpeedLeft {
  opacity: 1;
  animation-name: lightSpeedLeft;
  animation-timing-function: ease-out;
}

.animated.lightSpeedLeft {
  opacity: 1;
  animation-duration: 0.5s;
}

/*===================================================================================*/
/*  rollin                                                                          */
/*===================================================================================*/
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.animated.rollIn {
  opacity: 1;
  animation-name: rollIn;
}

.table {
  height: 100%;
  width: 100%;
  display: table;
  z-index: 10;
  margin-bottom: 0px;
}
.table .cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.row.no-padding {
  margin-left: 0px;
  margin-right: 0px;
}
.row.no-padding [class*=col-] {
  padding: 0px;
}

.full-height {
  height: 100%;
}

.w_iframe {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.w_iframe .h_iframe {
  position: relative;
}
.w_iframe .h_iframe img.ratio {
  display: block;
  width: 100%;
  height: auto;
}
.w_iframe .h_iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax {
  background-attachment: fixed;
  background-position: 50% 0;
  width: 100%;
}
@media (max-width: 767px) {
  .parallax {
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .parallax {
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
  }
}

body.lock {
  overflow: hidden;
}

/*! locomotive-scroll v3.5.4 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.6);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff003e;
  opacity: 2;
  width: 10px;
  border-radius: 0;
  margin: 0;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

/**
 * Swiper 6.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 30, 2020
 */
/*
@font-face {
   font-family: 'swiper-icons';
   src: url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');
   font-weight: 400;
   font-style: normal;
 }
 */
:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

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

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

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

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

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

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

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

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

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

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

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

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

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

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

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

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

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

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

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

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

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

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

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

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}

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

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

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

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

.swiper-scrollbar-lock {
  display: none;
}

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

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

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

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

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

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

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

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

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

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

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

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

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

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

/* App Pages, Sections & Components styles */
section .container-full,
footer .container-full,
figure .container-full,
nav .container-full,
article .container-full {
  width: 100%;
}
section .container-full .container,
footer .container-full .container,
figure .container-full .container,
nav .container-full .container,
article .container-full .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  transform: translateX(96px);
}
@media (min-width: 1600px) {
  section .container-full .container,
footer .container-full .container,
figure .container-full .container,
nav .container-full .container,
article .container-full .container {
    padding: 0;
  }
}
section .container-frame,
footer .container-frame,
figure .container-frame,
nav .container-frame,
article .container-frame {
  width: 100%;
  padding: 0;
}
section .container-frame .container,
footer .container-frame .container,
figure .container-frame .container,
nav .container-frame .container,
article .container-frame .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 768px) {
  section .container-frame .container,
footer .container-frame .container,
figure .container-frame .container,
nav .container-frame .container,
article .container-frame .container {
    padding: 0 60px;
  }
}
@media (min-width: 1600px) {
  section .container-frame .container,
footer .container-frame .container,
figure .container-frame .container,
nav .container-frame .container,
article .container-frame .container {
    padding: 0;
  }
}

.footer {
  padding-bottom: 3vh;
  background-color: #101010;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #101010;
  z-index: -1;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 12vh;
    align-items: flex-end;
    display: flex;
  }
}
.footer .main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer .main-container .box-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}
.footer .main-container .box-title:hover .line-bottom.right {
  transform: translateX(0%);
}
.footer .main-container .box-title:hover .line-bottom.left {
  transform: translateX(250%);
}
@media (min-width: 992px) {
  .footer .main-container .box-title {
    margin-bottom: 12vh;
  }
}
.footer .main-container .box-title .heading-01 {
  color: #e3d5c6;
  font-size: 56px;
  margin-bottom: 2vh;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer .main-container .box-title .heading-01 {
    font-size: 240px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .footer .main-container .box-title .heading-01 {
    font-size: calc( 56px + (240 - 56) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
@media (min-width: 992px) {
  .footer .main-container .box-title .heading-01 {
    margin-bottom: 3vh;
  }
}
.footer .main-container .box-title .line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e3d5c6;
  transition: all 0.75s ease-out;
}
@media (min-width: 992px) {
  .footer .main-container .box-title .line-bottom {
    height: 4px;
  }
}
.footer .main-container .box-title .line-bottom.right {
  transform: translateX(-250%);
}
.footer .main-container .box-title .line-bottom.left {
  transform: translateX(0%);
}
.footer .main-container .wrapper-container {
  color: #e3d5c6;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .footer .main-container .wrapper-container {
    flex-wrap: nowrap;
  }
}
.footer .main-container .wrapper-container .wrapper-content {
  display: flex;
  margin-bottom: 45px;
  flex-direction: column;
  font-size: 16px;
  width: 50%;
  margin-right: 0;
}
@media (min-width: 768px) {
  .footer .main-container .wrapper-container .wrapper-content {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .footer .main-container .wrapper-container .wrapper-content {
    font-size: calc( 16px + (20 - 16) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.footer .main-container .wrapper-container .wrapper-content:last-child {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .footer .main-container .wrapper-container .wrapper-content:last-child {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .footer .main-container .wrapper-container .wrapper-content {
    width: 20.7%;
  }
}
.footer .main-container .wrapper-container .wrapper-content .title {
  color: #e3d5c6;
  margin-bottom: 20px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 18px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .footer .main-container .wrapper-container .wrapper-content .title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.footer .main-container .wrapper-container .wrapper-content li {
  color: #7c756f;
  margin-bottom: 15px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 768px) {
  .footer .main-container .wrapper-container .wrapper-content li {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .footer .main-container .wrapper-container .wrapper-content li {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.footer .main-container .wrapper-container .wrapper-content li:last-child {
  margin: 0;
}
.footer .main-container .wrapper-container .wrapper-content li:hover a:after {
  opacity: 0.5;
  width: 100%;
}
@media (min-width: 992px) {
  .footer .main-container .wrapper-container .wrapper-content li {
    margin-bottom: 20px;
  }
}
.footer .main-container .wrapper-container .wrapper-content li a {
  display: inline-block;
  font-size: 16px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  color: #7c756f;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  text-transform: none;
  letter-spacing: 0px;
  text-align: left;
}
@media (min-width: 768px) {
  .footer .main-container .wrapper-container .wrapper-content li a {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .footer .main-container .wrapper-container .wrapper-content li a {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.footer .main-container .wrapper-container .wrapper-content li a:hover {
  color: #e3d5c6;
}
.footer .main-container .wrapper-container .wrapper-content li a:after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  border-radius: 6px;
  background-color: #e3d5c6;
  position: absolute;
  left: 0px;
  bottom: -5px;
  opacity: 0.5;
  transition: all 0.4s ease 0s;
}
.footer .main-container .wrapper-container .wrapper-content li img {
  height: 24px;
  width: 24px;
  margin-right: 5px;
}
.footer .copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 400;
  font-size: 13px;
  color: #7c756f;
  align-items: left;
  margin-top: 50px;
  position: relative;
}
@media (min-width: 1024px) {
  .footer .copyright {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (max-width: 1600px) {
  .footer .copyright {
    font-size: calc( 13px + (18 - 13) * (( 100vw - 1024px ) / (1600 - 1024)) );
  }
}
@media (min-width: 768px) {
  .footer .copyright {
    padding-top: 3vh;
    border-top: 1px solid #7c756f;
    margin-top: 10vh;
    flex-direction: row;
    align-items: center;
  }
}
.footer .copyright .desktop {
  display: none;
}
@media (min-width: 992px) {
  .footer .copyright .desktop {
    display: block;
  }
}
.footer .copyright .mobile {
  display: block;
}
@media (min-width: 992px) {
  .footer .copyright .mobile {
    display: none;
  }
}
.footer .copyright .siteby {
  width: 100%;
  order: 2;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .footer .copyright .siteby {
    width: 40%;
    order: 1;
  }
  .footer .copyright .siteby br {
    display: none;
  }
}
@media (min-width: 992px) {
  .footer .copyright .siteby {
    width: 50%;
  }
}
.footer .copyright .siteby .mobile {
  vertical-align: baseline;
  display: none;
}
@media (min-width: 768px) {
  .footer .copyright .siteby .mobile {
    display: inline-flex;
  }
}
@media (min-width: 992px) {
  .footer .copyright .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
  }
}
.footer .copyright .box-content {
  order: 1;
  margin-bottom: 1vh;
  width: 50%;
}
@media (min-width: 768px) {
  .footer .copyright .box-content {
    width: 56%;
    display: flex;
    justify-content: flex-end;
    order: 2;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .footer .copyright .box-content {
    width: 50%;
  }
}
.footer .copyright .box-content .go-top {
  transition: all 0.3s ease-out;
  display: none;
}
@media (min-width: 768px) {
  .footer .copyright .box-content .go-top {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
}
.footer .copyright .box-content .go-top svg {
  margin-left: 10px;
}
.footer .copyright .box-content .go-top svg path,
.footer .copyright .box-content .go-top svg line {
  transition: all 0.3s ease-out;
}
.footer .copyright .box-content .go-top:hover {
  color: #e3d5c6;
}
.footer .copyright .box-content .go-top:hover svg path,
.footer .copyright .box-content .go-top:hover svg line {
  stroke: #e3d5c6;
}

/** HOME PORTRAIT **/
.portrait {
  height: auto;
  width: 100%;
  position: relative;
  background-color: #101010;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  padding-top: 10vh;
  padding-bottom: 6vh;
  /* PORTRAIT > VIDEO BACKGROUND */
}
@media (min-width: 768px) {
  .portrait {
    padding-top: 20vh;
  }
}
.portrait .container-frame {
  position: relative;
  z-index: 2;
}
.portrait .box-title {
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.portrait .box-title .heading-06 {
  color: #776f66;
  font-size: 14px;
}
@media (min-width: 768px) {
  .portrait .box-title .heading-06 {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .portrait .box-title .heading-06 {
    font-size: calc( 14px + (24 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.portrait .box-title .heading-06.bottom {
  display: none;
}
@media (min-width: 1200px) {
  .portrait .box-title .heading-06.bottom {
    display: block;
  }
}
.portrait .box-title .heading-06 strong {
  color: #fff;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
}
.portrait .box-title .heading-01 {
  color: #e3d5c6;
  font-size: 50px;
  line-height: 0.85;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  margin: 20px 0 40px 0;
}
@media (min-width: 400px) {
  .portrait .box-title .heading-01 {
    font-size: 200px;
  }
}
@media (min-width: 400px) and (max-width: 1600px) {
  .portrait .box-title .heading-01 {
    font-size: calc( 50px + (200 - 50) * (( 100vw - 400px ) / (1600 - 400)) );
  }
}
@media (min-width: 992px) {
  .portrait .box-title .heading-01 {
    line-height: 0.78;
    margin-top: 3vh;
    margin-bottom: 16vh;
  }
}
.portrait .box-title .heading-01 span {
  color: #ff003d;
  display: inline-block;
  vertical-align: baseline;
}
.portrait .box-title .heading-01 .span-text {
  margin-top: 15px;
}
.portrait .box-title .button-hold {
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-bottom: 8vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .portrait .box-title .button-hold {
    margin-right: 5vw;
  }
}
@media (min-width: 992px) {
  .portrait .box-title .button-hold {
    width: 165px;
    height: 165px;
    margin-bottom: 5vh;
  }
}
@media (min-width: 1600px) {
  .portrait .box-title .button-hold {
    margin-right: 0;
  }
}
.portrait .box-title .button-hold .skate-container {
  width: 90px;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
  cursor: pointer;
  background-position: 0px 0px;
  background-repeat: repeat;
  background-size: auto 100%;
}
@media (min-width: 992px) {
  .portrait .box-title .button-hold .skate-container {
    width: 100px;
    height: 100px;
  }
}
.portrait .box-title .button-hold .mobile {
  display: block;
}
@media (min-width: 992px) {
  .portrait .box-title .button-hold .mobile {
    display: none;
  }
}
.portrait .box-title .button-hold .desktop {
  display: none;
}
@media (min-width: 992px) {
  .portrait .box-title .button-hold .desktop {
    display: block;
  }
}
.portrait .box-title .button-hold svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.portrait .box-title .button-hold svg.hold_mask {
  z-index: 1;
}
.portrait .box-title .copy {
  color: #776f66;
  font-size: 18px;
  max-width: 280px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .portrait .box-title .copy {
    font-size: 24px;
    max-width: none;
  }
}
@media (min-width: 1600px) {
  .portrait .box-title .copy {
    font-size: 30px;
  }
}
.portrait .box-title .copy br {
  display: none;
}
@media (min-width: 992px) {
  .portrait .box-title .copy br {
    display: block;
  }
}
.portrait .box-title .sign {
  margin-top: 9vh;
}
.portrait .bottom.mobile {
  display: block;
  color: #b8b8b8;
  overflow: hidden;
  position: absolute;
  bottom: 30vw;
  left: 30px;
  line-height: 1.3;
}
.portrait .bottom.mobile strong {
  color: #fff;
}
@media (min-width: 768px) {
  .portrait .bottom.mobile {
    bottom: 6vw;
  }
}
@media (min-width: 1200px) {
  .portrait .bottom.mobile {
    display: none;
  }
}
.portrait .bottom.bottom-works {
  line-height: 1.5;
  margin-bottom: 6vh;
  font-size: 14px;
}
@media (min-width: 768px) {
  .portrait .bottom.bottom-works {
    font-size: 27px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .portrait .bottom.bottom-works {
    font-size: calc( 14px + (27 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.portrait audio {
  opacity: 0;
  display: none;
}
.portrait .bg-media {
  position: absolute;
  top: 0px;
  right: 0px;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  /* 4000% */
  max-width: 100%;
  /* 100% */
  width: auto;
  height: auto;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
}
.portrait .bg-media::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 999;
}
.portrait .bg-media .mobile {
  display: block;
}
@media (min-width: 992px) {
  .portrait .bg-media .mobile {
    display: none;
  }
}
.portrait .bg-media .desktop {
  display: none;
}
@media (min-width: 992px) {
  .portrait .bg-media .desktop {
    display: block;
  }
}
.portrait .bg-media div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}
.portrait .bg-media video {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@keyframes singleSlide {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  5% {
    opacity: 1;
    transform: scale(1.02);
  }
  6% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.works {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .works {
    height: 180vh;
  }
}
.works .container-frame {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}
.works video {
  width: 220%;
  height: auto;
}
@media (min-width: 768px) {
  .works video {
    width: 100%;
  }
}
.works .box-title {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .works .box-title {
    padding: 0;
  }
}
.works .box-title .top {
  display: flex;
}
@media (min-width: 768px) {
  .works .box-title .top {
    margin-bottom: 4vh;
  }
}
.works .box-title .top .heading-02 {
  color: #e3d5c6;
  margin-bottom: 4vh;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 100px;
  line-height: 0.75;
}
.works .box-title .top .heading-02 span {
  vertical-align: baseline;
  line-height: 0.75;
}
.works .box-title .top .heading-02 .line {
  line-height: 0.75;
}
.works .box-title .top .heading-02 .line .word {
  line-height: 0.75;
}
@media (min-width: 768px) {
  .works .box-title .top .heading-02 {
    font-size: 100px;
  }
}
@media (min-width: 992px) {
  .works .box-title .top .heading-02 {
    font-size: 150px;
  }
}
@media (min-width: 1600px) {
  .works .box-title .top .heading-02 {
    font-size: 200px;
  }
}
.works .box-title .top .number {
  color: #776f66;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .works .box-title .top .number {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .works .box-title .top .number {
    margin-top: 31px;
    font-size: 27px;
  }
}
@media (min-width: 1600px) {
  .works .box-title .top .number {
    margin-top: 44px;
  }
}
.works .box-title .bottom {
  display: flex;
  flex-direction: column;
}
.works .box-title .bottom .copy {
  color: #776f66;
  line-height: 1.3;
  margin-bottom: 6vh;
  font-size: 18px;
}
@media (min-width: 768px) {
  .works .box-title .bottom .copy {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .works .box-title .bottom .copy {
    font-size: calc( 18px + (25 - 18) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .works .box-title .bottom .copy {
    margin-bottom: 12vh;
  }
}
.works .box-title .bottom .copy strong {
  color: #e3d5c6;
}
.works .box-title .bottom .copy br {
  display: none;
}
@media (min-width: 992px) {
  .works .box-title .bottom .copy br {
    display: block;
  }
}
.works .box-title .bottom .capsule-button_rounded-title {
  position: absolute !important;
}
.works .box-title .bottom .capsule-button_rounded-title svg {
  margin-left: 0 !important;
}
.works .box-title .bottom .capsule-button_rounded-box {
  width: 50px !important;
  height: 50px !important;
}
@media (min-width: 992px) {
  .works .box-title .bottom .capsule-button_rounded-box {
    width: 100px !important;
    height: 100px !important;
  }
}
.works .box-title .bottom .capsule-button_rounded-box svg {
  width: 16px !important;
}
@media (min-width: 992px) {
  .works .box-title .bottom .capsule-button_rounded-box svg {
    width: 33px !important;
  }
}
.works .box-title .bottom a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 16px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  color: #776f66;
}
@media (min-width: 992px) {
  .works .box-title .bottom a {
    font-size: 25px;
  }
}
.works .box-title .bottom a .capsule-button {
  margin-right: 15px;
}
@media (min-width: 992px) {
  .works .box-title .bottom a .capsule-button {
    font-size: 25px;
  }
}
.works .box-title .bottom .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg line,
.works .box-title .bottom .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg path {
  stroke: #000;
  fill: #000;
}

.skills {
  position: relative;
  padding: 20vh 0 15vh 0;
}
@media (min-width: 992px) {
  .skills {
    padding: 20vh 0;
  }
}
.skills .container {
  display: flex;
  flex-direction: column;
}
.skills .container .box-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .skills .container .box-title {
    padding: 0;
    margin-bottom: 10vh;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.skills .container .box-title .top {
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .skills .container .box-title .top {
    margin: 0;
  }
}
.skills .container .box-title .top .heading-02 {
  color: #e3d5c6;
  margin-bottom: 4vh;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 100px;
  line-height: 0.75;
}
@media (min-width: 992px) {
  .skills .container .box-title .top .heading-02 {
    margin-bottom: 0;
  }
}
.skills .container .box-title .top .heading-02 span {
  vertical-align: baseline;
  line-height: 0.75;
}
.skills .container .box-title .top .heading-02 .line {
  line-height: 0.75;
}
.skills .container .box-title .top .heading-02 .line .word {
  line-height: 0.75;
}
@media (min-width: 768px) {
  .skills .container .box-title .top .heading-02 {
    font-size: 100px;
  }
}
@media (min-width: 992px) {
  .skills .container .box-title .top .heading-02 {
    font-size: 150px;
  }
}
@media (min-width: 1600px) {
  .skills .container .box-title .top .heading-02 {
    font-size: 200px;
  }
}
.skills .container .box-title .top .number {
  color: #776f66;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .skills .container .box-title .top .number {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .skills .container .box-title .top .number {
    margin-top: 31px;
    font-size: 27px;
  }
}
@media (min-width: 1600px) {
  .skills .container .box-title .top .number {
    margin-top: 44px;
  }
}
.skills .container .box-title .bottom {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .skills .container .box-title .bottom {
    width: 50%;
  }
}
.skills .container .box-title .bottom .copy {
  color: #776f66;
  line-height: 1.3;
  font-size: 18px;
  max-width: 280px;
}
@media (min-width: 768px) {
  .skills .container .box-title .bottom .copy {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skills .container .box-title .bottom .copy {
    font-size: calc( 18px + (25 - 18) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .skills .container .box-title .bottom .copy {
    margin-bottom: 0;
    max-width: none;
  }
}
.skills .container .box-title .bottom .copy strong {
  color: #e3d5c6;
}
.skills .container .box-title .bottom .copy br {
  display: none;
}
@media (min-width: 1600px) {
  .skills .container .box-title .bottom .copy br {
    display: block;
  }
}
.skills .container .box-title .bottom .capsule-button_rounded-title {
  position: absolute !important;
}
.skills .container .box-title .bottom .capsule-button_rounded-title svg {
  margin-left: 0 !important;
}
.skills .container .box-title .bottom .capsule-button_rounded-box {
  width: 50px !important;
  height: 50px !important;
}
@media (min-width: 992px) {
  .skills .container .box-title .bottom .capsule-button_rounded-box {
    width: 100px !important;
    height: 100px !important;
  }
}
.skills .container .box-title .bottom .capsule-button_rounded-box svg {
  width: 16px !important;
}
@media (min-width: 992px) {
  .skills .container .box-title .bottom .capsule-button_rounded-box svg {
    width: 33px !important;
  }
}
.skills .container .box-title .bottom a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 16px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  color: #776f66;
}
@media (min-width: 992px) {
  .skills .container .box-title .bottom a {
    font-size: 25px;
  }
}
.skills .container .box-title .bottom a .capsule-button {
  margin-right: 15px;
}
@media (min-width: 992px) {
  .skills .container .box-title .bottom a .capsule-button {
    font-size: 25px;
  }
}
.skills .container .box-title .bottom .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg line,
.skills .container .box-title .bottom .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg path {
  stroke: #000;
  fill: #000;
}
.skills .container .services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.skills .container .services.desktop {
  display: none;
}
@media (min-width: 992px) {
  .skills .container .services.desktop {
    display: flex;
  }
}
.skills .container .services.mobile {
  display: flex;
}
@media (min-width: 992px) {
  .skills .container .services.mobile {
    display: none;
  }
}
.skills .container .services .service-title {
  display: flex;
  flex-direction: column;
}
.skills .container .services .service-title .title {
  font-size: 36px;
  color: #45413e;
  font-family: "NeueMontreal-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .skills .container .services .service-title .title {
    font-size: 43px;
    width: 50%;
    margin-bottom: 25px;
  }
}
@media (min-width: 1600px) {
  .skills .container .services .service-title .title {
    font-size: 56px;
    width: 50%;
    margin-bottom: 30px;
  }
}
.skills .container .services .service-title .title.active {
  color: #e3d5c6;
}
.skills .container .services .service-description {
  position: relative;
  width: 50%;
  margin-top: 10px;
}
.skills .container .services .service {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .skills .container .services .service {
    width: 100%;
    margin-bottom: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .skills .container .services .service:first-child {
    z-index: 1;
  }
  .skills .container .services .service:first-child .lineChild {
    opacity: 1;
  }
  .skills .container .services .service .lineChild {
    opacity: 0;
  }
}
.skills .container .services .service .title {
  font-size: 36px;
  color: #776f66;
  font-family: "NeueMontreal-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .skills .container .services .service .title {
    font-size: 48px;
    width: 50%;
    margin-bottom: 4vh;
  }
}
.skills .container .services .service .title.open {
  color: #e3d5c6;
}
.skills .container .services .service .text {
  color: #776f66;
  font-size: 16px;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 992px) {
  .skills .container .services .service .text {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .skills .container .services .service .text {
    font-size: 30px;
    margin-bottom: 19px;
  }
}
.skills .container .services .service .text:hover {
  color: #e3d5c6;
}

.home-about {
  padding: 16vh 0;
  width: 100%;
  position: relative;
  background-color: #f2f2f2;
}
.home-about .box-title .heading-06 {
  color: #666;
}
.home-about .box-title .heading-02 {
  color: #000;
  margin: 4vh 0;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  line-height: 1.2;
}
.home-about .box-title .heading-02 span {
  color: #ff003e;
  vertical-align: baseline;
}
.home-about .wrapper-video {
  margin-top: 12vh;
}
.home-about .wrapper-video video {
  width: 100%;
}
.home-about .wrapper-video .copy {
  margin-top: 4vh;
  font-size: 16px;
  color: #666;
}

.quote {
  padding: 16vh 0;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  .quote {
    padding: 20vh 0;
  }
}
.quote::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 101%;
  background-color: #f2f2f2;
  z-index: -1;
}
.quote.dark-quote {
  position: relative;
}
.quote.dark-quote::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 101%;
  background-color: #101010;
  z-index: -1;
}
.quote.dark-quote .box-quote .blockquote {
  color: #fff;
}
.quote.dark-quote .box-quote .author {
  color: rgba(255, 255, 255, 0.6);
}
.quote.dark-quote .box-quote .author strong {
  color: #fff;
}
.quote .container-frame {
  height: 100%;
}
.quote .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.quote .wrapper-quote {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 900px;
}
@media (max-width: 767px) {
  .quote .wrapper-quote {
    flex-wrap: wrap;
  }
}
.quote .wrapper-quote .box-image {
  margin-right: 4vw;
  min-width: 220px;
  height: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .quote .wrapper-quote .box-image {
    margin: 0 auto;
  }
}
.quote .wrapper-quote .box-image img {
  width: 80%;
}
@media (min-width: 768px) {
  .quote .wrapper-quote .box-image img {
    width: 100%;
  }
}
.quote .wrapper-quote .box-quote {
  text-align: left;
}
@media (max-width: 767px) {
  .quote .wrapper-quote .box-quote {
    text-align: center;
  }
}
.quote .wrapper-quote .box-quote .blockquote {
  font-size: 32px;
  font-size: 24px;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  line-height: 1.4;
  color: #101010;
  margin-bottom: 6vh;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .quote .wrapper-quote .box-quote .blockquote {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .quote .wrapper-quote .box-quote .blockquote {
    font-size: calc( 24px + (32 - 24) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (max-width: 767px) {
  .quote .wrapper-quote .box-quote .blockquote {
    padding-top: 0;
    margin: 6vh 0;
  }
}
.quote .wrapper-quote .box-quote .author {
  font-size: 18px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .quote .wrapper-quote .box-quote .author {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .quote .wrapper-quote .box-quote .author {
    font-size: calc( 14px + (18 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.quote .wrapper-quote .box-quote .author strong {
  color: #101010;
}

.home-brands {
  padding: 12vh 0;
  width: 100%;
  position: relative;
  background-color: #101010;
}
@media (min-width: 992px) {
  .home-brands {
    padding: 30vh 0;
  }
}
.home-brands .box-title .top {
  display: flex;
}
.home-brands .box-title .top .heading-02 {
  color: #fff;
  margin-bottom: 4vh;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 70px;
}
.home-brands .box-title .top .heading-02 span {
  vertical-align: baseline;
  color: #ff003d;
}
@media (min-width: 768px) {
  .home-brands .box-title .top .heading-02 {
    font-size: 190px;
  }
}
.home-brands .box-title .top .number {
  color: #8d8d8d;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 16px;
  margin-top: 92px;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .home-brands .box-title .top .number {
    font-size: 31px;
    margin-top: 88px;
    margin-left: 25px;
  }
}
.home-brands .box-title .bottom {
  display: flex;
  justify-content: space-between;
}
.home-brands .box-title .bottom .copy {
  color: #888;
  line-height: 1.3;
  font-size: 15px;
}
@media (min-width: 768px) {
  .home-brands .box-title .bottom .copy {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .home-brands .box-title .bottom .copy {
    font-size: calc( 15px + (22 - 15) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.home-brands .box-title .bottom .copy br {
  display: none;
}
@media (min-width: 992px) {
  .home-brands .box-title .bottom .copy br {
    display: block;
  }
}
.home-brands .box-title .bottom .copy strong {
  color: #fff;
}
.home-brands .box-title .bottom .button {
  display: none;
}
@media (min-width: 992px) {
  .home-brands .box-title .bottom .button {
    display: block;
  }
}
@media (min-width: 768px) {
  .home-brands .box-paragraph {
    width: 50%;
    margin-left: 50%;
  }
}
.home-brands .box-paragraph .heading-04 {
  color: #b8b8b8;
  line-height: 1.4;
  letter-spacing: 0.05;
}
.home-brands .box-paragraph .heading-04 strong {
  color: #fff;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
}
.home-brands .brands-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 12vh;
}
.home-brands .brands-grid .brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  min-width: 20%;
  min-height: 33vh;
}
@media (min-width: 768px) {
  .home-brands .brands-grid .brand {
    width: 220px;
  }
}
.home-brands .brands-grid .brand img {
  max-width: 80%;
  opacity: 0.4;
  transition: opacity 0.4s ease-out;
}
.home-brands .brands-grid .brand:last-child {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-brands .brands-grid .brand:last-child {
    margin: 0;
  }
}
.home-brands .brands-grid .brand:hover img {
  opacity: 1;
}

.s-instagram {
  margin: 0;
  pointer-events: none;
  background-color: #101010;
  overflow: hidden;
  position: relative;
}
.s-instagram .s-instagram-figure {
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  height: 300vh;
}
.s-instagram .s-instagram-figure .s-instagram-scroller {
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}
.s-instagram .s-instagram-figure #context {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: pink;
}
.s-instagram .s-instagram-figure .container-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: absolute;
}
@media (min-width: 768px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid {
    max-width: 84vw;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  will-change: transform;
  transform-origin: center center;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block {
  display: block;
  position: absolute;
  background-size: cover;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block picture {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block picture .desktop {
  display: none;
}
@media (min-width: 992px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block picture .desktop {
    display: flex;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block picture .mobile {
  display: flex;
}
@media (min-width: 992px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block picture .mobile {
    display: none;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block .desktop {
  display: none;
}
@media (min-width: 992px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block .desktop {
    display: flex;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block .mobile {
  display: flex;
}
@media (min-width: 992px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer .s-instagram-block .mobile {
    display: none;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(1) {
  z-index: 1;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(1) .s-instagram-block {
  height: 23vh;
  top: 57.5vh;
  right: 30px;
  width: 27vw;
}
@media (min-width: 768px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(1) .s-instagram-block {
    top: 16.5vh;
    left: 8.5vw;
    width: 19.4vw;
    height: 46.5vh;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(2) {
  z-index: 1;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(2) .s-instagram-block {
  height: 23vh;
  top: 40vh;
  left: 30px;
  width: 27vw;
}
@media (min-width: 992px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(2) .s-instagram-block {
    top: 0;
    left: 29vw;
    width: 31.99vw;
    height: 35.4vh;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(3) {
  z-index: 1;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(3) .s-instagram-block {
  top: 24.1vh;
  left: 13vw;
  width: 22vw;
  height: 14vh;
}
@media (min-width: 768px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(3) .s-instagram-block {
    left: 62vw;
    top: 13.54vh;
    width: 15vw;
    height: 21.8vh;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(4) {
  z-index: 10;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(4) .s-instagram-block {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(4) .s-instagram-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(5) {
  z-index: 1;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(5) .s-instagram-block {
  top: 13vh;
  left: 50%;
  transform: translateX(-50%);
  width: 26vw;
  height: 22.7vh;
  background-color: #ae97a2;
  transition: background-color 0.4s ease-out;
  pointer-events: all;
}
@media (min-width: 768px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(5) .s-instagram-block {
    top: 37.1vh;
    left: 67.8vw;
    width: 23.5vw;
    height: 25.5vh;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(5) .s-instagram-block a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(5) .s-instagram-block svg {
  width: 1.75vw;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(6) {
  z-index: 1;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(6) .s-instagram-block {
  height: 11vh;
  top: 64.5vh;
  left: 33vw;
  width: 30vw;
}
@media (min-width: 992px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(6) .s-instagram-block {
    left: 0;
    top: 66vh;
    width: 32.89vw;
    height: 34vh;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(7) {
  z-index: 1;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(7) .s-instagram-block {
  right: 30px;
  width: 27vw;
  top: 40vh;
  height: 16vh;
}
@media (min-width: 768px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(7) .s-instagram-block {
    top: 66vh;
    right: 0;
    left: 34vw;
    width: 21vw;
    height: 36vh;
  }
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(8) {
  z-index: 1;
}
.s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(8) .s-instagram-block {
  top: 23.3vh;
  width: 22vw;
  height: 15vh;
  left: 65.6vw;
}
@media (min-width: 768px) {
  .s-instagram .s-instagram-figure .container-grid .s-instagram-grid .s-instagram-layer:nth-child(8) .s-instagram-block {
    top: 66vh;
    left: 56vw;
    width: 21vw;
    height: 29vh;
  }
}
.s-instagram .box-title {
  pointer-events: all;
  align-items: center;
  transform: translateY(50px);
}
@media (min-width: 992px) {
  .s-instagram .box-title {
    margin-bottom: 10vh;
    transform: translateY(0);
  }
}
.s-instagram .box-title .heading-06 {
  color: #525255;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  font-size: 14px;
}
@media (min-width: 768px) {
  .s-instagram .box-title .heading-06 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .s-instagram .box-title .heading-06 {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.s-instagram .box-title h1 {
  color: #e3d5c6;
  margin: 2vh 0;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  line-height: 0.9;
  font-size: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .s-instagram .box-title h1 {
    font-size: 100px;
  }
}
@media (min-width: 992px) {
  .s-instagram .box-title h1 {
    font-size: 150px;
    margin: 4vh 0 8vh 0;
  }
}
@media (min-width: 1600px) {
  .s-instagram .box-title h1 {
    font-size: 200px;
  }
}
.s-instagram .box-title .capsule-button_rounded-title {
  position: absolute !important;
}
.s-instagram .box-title .capsule-button_rounded-title svg {
  margin-left: 0 !important;
}
.s-instagram .box-title .capsule-button_rounded-box {
  width: 50px !important;
  height: 50px !important;
}
@media (min-width: 992px) {
  .s-instagram .box-title .capsule-button_rounded-box {
    width: 100px !important;
    height: 100px !important;
  }
}
.s-instagram .box-title .capsule-button_rounded-box svg {
  width: 16px !important;
}
@media (min-width: 992px) {
  .s-instagram .box-title .capsule-button_rounded-box svg {
    width: 33px !important;
  }
}
.s-instagram .box-title a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  color: #776f66;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .s-instagram .box-title a {
    font-size: 25px;
  }
}
.s-instagram .box-title a .capsule-button {
  margin-right: 15px;
}
@media (min-width: 992px) {
  .s-instagram .box-title a .capsule-button {
    font-size: 25px;
  }
}
.s-instagram .box-title .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg line,
.s-instagram .box-title .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg path {
  stroke: #000;
  fill: #000;
}

.snapshots {
  height: 400vh;
  margin-bottom: 5vh;
  background-color: #101010;
  position: relative;
}
@media (min-width: 992px) {
  .snapshots {
    margin-bottom: 20vh;
  }
}
.snapshots .container-frame {
  overflow: hidden;
}
.snapshots .module-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .snapshots .module-container {
    padding: 0 60px;
  }
}
@media (min-width: 1600px) {
  .snapshots .module-container {
    padding: 0;
  }
}
.snapshots .module-container .box-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  top: 35%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 992px) {
  .snapshots .module-container .box-text {
    top: 26%;
  }
}
.snapshots .module-container .box-text .tagname {
  font-size: 15px;
  color: #776f66;
}
@media (min-width: 992px) {
  .snapshots .module-container .box-text .tagname {
    font-size: 24px;
  }
}
.snapshots .module-container .box-text .number-container {
  display: flex;
  align-items: flex-start;
  margin: 20px 0 30px 0;
  position: relative;
}
@media (min-width: 992px) {
  .snapshots .module-container .box-text .number-container {
    margin: 60px 0 90px 0;
  }
}
.snapshots .module-container .box-text .number-container .number {
  font-size: 380px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  color: #e3d5c6;
  line-height: 0.7;
  font-size: 130px;
}
@media (min-width: 768px) {
  .snapshots .module-container .box-text .number-container .number {
    font-size: 380px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .snapshots .module-container .box-text .number-container .number {
    font-size: calc( 130px + (380 - 130) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.snapshots .module-container .box-text .number-container .sign {
  position: absolute;
  right: -20px;
  top: 0;
}
@media (min-width: 992px) {
  .snapshots .module-container .box-text .number-container .sign {
    right: -50px;
  }
}
.snapshots .module-container .box-text .number-container .sign img {
  width: 20px;
  height: auto;
}
@media (min-width: 992px) {
  .snapshots .module-container .box-text .number-container .sign img {
    width: 48px;
    height: auto;
  }
}
.snapshots .module-container .box-text .copy {
  font-size: 13px;
  color: #776f66;
  line-height: 1.5;
  text-align: center;
  width: 73%;
}
@media (min-width: 992px) {
  .snapshots .module-container .box-text .copy {
    font-size: 20px;
    width: 100%;
  }
}
.snapshots .module-container .box-text .copy br {
  display: none;
}
@media (min-width: 992px) {
  .snapshots .module-container .box-text .copy br {
    display: block;
  }
}
.snapshots .module-container .left {
  position: absolute;
  top: 75%;
  left: 30px;
  z-index: 0;
  width: 29%;
}
.snapshots .module-container .left.img-three {
  top: 110vh;
  width: 42%;
}
@media (min-width: 992px) {
  .snapshots .module-container .left.img-three {
    width: 22.16%;
  }
}
.snapshots .module-container .left.img-two {
  top: 110vh;
  width: 33%;
}
@media (min-width: 992px) {
  .snapshots .module-container .left.img-two {
    width: 16%;
  }
}
.snapshots .module-container .left.img-one {
  top: 110vh;
  width: 39%;
}
@media (min-width: 992px) {
  .snapshots .module-container .left.img-one {
    width: 18%;
  }
}
@media (min-width: 992px) {
  .snapshots .module-container .left {
    top: 50%;
    width: 17%;
    left: 0;
  }
}
.snapshots .module-container .right {
  position: absolute;
  top: 15%;
  right: 30px;
  z-index: 0;
  width: 39%;
}
@media (min-width: 992px) {
  .snapshots .module-container .right {
    top: 15%;
    width: 18%;
    right: 0;
  }
}
.snapshots .module-container .right.img-three {
  top: 110vh;
  width: 33%;
}
@media (min-width: 992px) {
  .snapshots .module-container .right.img-three {
    width: 15%;
  }
}
.snapshots .module-container .right.img-two {
  top: 110vh;
  width: 36%;
}
@media (min-width: 992px) {
  .snapshots .module-container .right.img-two {
    width: 14%;
  }
}
.snapshots .module-container .right.img-one {
  top: 110vh;
  width: 28%;
}
@media (min-width: 992px) {
  .snapshots .module-container .right.img-one {
    width: 18%;
  }
}
.snapshots .pagination-snapshots {
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: #e3d5c6;
  text-align: right;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 30px;
}
@media (min-width: 1600px) {
  .snapshots .pagination-snapshots {
    padding: 0 90px;
  }
}
.snapshots .pagination-snapshots .text-mask {
  border-right: 2px solid rgba(227, 213, 198, 0.25);
  transition: all 0.4s ease-in;
  margin-bottom: 10px;
  padding: 10px 0;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.snapshots .pagination-snapshots .text-mask.active {
  border-right: 2px solid #ff003d;
}
.snapshots .pagination-snapshots span {
  width: -moz-fit-content;
  width: fit-content;
  transform: translateX(110%);
  display: block;
  font-size: 14px;
  padding-right: 10px;
  display: none;
}
@media (min-width: 1600px) {
  .snapshots .pagination-snapshots span {
    display: block;
  }
}
.snapshots .pagination-snapshots span.active {
  transform: translateX(0%);
}

/** HOME PORTRAIT **/
.team {
  height: 100vh;
  position: relative;
  background-color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .team {
    height: 140vh;
  }
}
.team .marquee-container {
  height: 180%;
  width: 180%;
  z-index: 0;
  position: relative;
  transform: translateX(-10%) rotate(-10deg);
}
@media (min-width: 992px) {
  .team .marquee-container {
    transform: translateX(-15%) rotate(-10deg);
  }
}
@media (min-width: 1600px) {
  .team .marquee-container {
    transform: translateX(0%) rotate(-10deg) scale(1.1);
  }
}
@media (min-width: 2000px) {
  .team .marquee-container {
    transform: translateX(8%) rotate(-10deg) scale(1.2);
  }
}
.team .marquee-container .marquee {
  min-width: 300px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.team .marquee-container .marquee span {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  padding: 0 15px;
}
.team .marquee-container .marquee span::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  height: 100%;
  width: 101%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.team .marquee-container .marquee span img {
  padding: 15px 0;
  height: 340px;
}
@media (min-width: 992px) {
  .team .marquee-container .marquee span img {
    height: 410px;
  }
}
@media (min-width: 1200px) {
  .team .marquee-container .marquee span img {
    height: 500px;
  }
}
@media (min-width: 1600px) {
  .team .marquee-container .marquee span img {
    height: auto;
    width: 100%;
  }
}
.team .marquee-container.desktop {
  display: none;
}
@media (min-width: 768px) {
  .team .marquee-container.desktop {
    display: flex;
  }
}
.team .marquee-container.mobile {
  display: flex;
  height: 150%;
}
@media (min-width: 768px) {
  .team .marquee-container.mobile {
    display: none;
  }
}
.team .container-frame {
  z-index: 999;
  position: absolute;
  transform: translateZ(1px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.team .box-title {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .team .box-title {
    padding: 0;
  }
}
.team .box-title .top {
  display: flex;
  margin-bottom: 4vh;
}
.team .box-title .top .heading-02 {
  color: #e3d5c6;
  margin-bottom: 4vh;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 75px;
  line-height: 0.75;
}
.team .box-title .top .heading-02 span {
  vertical-align: baseline;
  line-height: 0.81;
}
.team .box-title .top .heading-02 .line {
  line-height: 0.81;
}
.team .box-title .top .heading-02 .line .word {
  line-height: 0.81;
}
@media (min-width: 768px) {
  .team .box-title .top .heading-02 {
    font-size: 100px;
  }
}
@media (min-width: 992px) {
  .team .box-title .top .heading-02 {
    font-size: 150px;
  }
}
@media (min-width: 1600px) {
  .team .box-title .top .heading-02 {
    font-size: 200px;
  }
}
.team .box-title .top .number {
  color: #776f66;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 16px;
  margin-top: 75px;
}
@media (min-width: 768px) {
  .team .box-title .top .number {
    margin-top: 103px;
  }
}
@media (min-width: 992px) {
  .team .box-title .top .number {
    font-size: 27px;
    margin-top: 157px;
  }
}
@media (min-width: 1600px) {
  .team .box-title .top .number {
    margin-top: 212px;
  }
}
.team .box-title .bottom {
  display: flex;
  flex-direction: column;
}
.team .box-title .bottom .copy {
  color: #776f66;
  line-height: 1.3;
  margin-bottom: 12vh;
  font-size: 18px;
}
@media (min-width: 768px) {
  .team .box-title .bottom .copy {
    font-size: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .team .box-title .bottom .copy {
    font-size: calc( 18px + (25 - 18) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.team .box-title .bottom .copy strong {
  color: #e3d5c6;
}
.team .box-title .bottom .copy br {
  display: none;
}
@media (min-width: 992px) {
  .team .box-title .bottom .copy br {
    display: block;
  }
}
.team .box-title .bottom .button {
  display: none;
}
@media (min-width: 992px) {
  .team .box-title .bottom .button {
    display: block;
  }
}

.checkbox {
  background-color: #101010;
  padding: 20vh 0;
}
.checkbox .container {
  display: flex;
  position: relative;
}
.checkbox .container .main-container {
  z-index: 1;
  width: 100%;
}
.checkbox .container .main-container .box-title {
  width: 100%;
  margin-bottom: 6vh;
}
.checkbox .container .main-container .box-title .top {
  display: flex;
  position: relative;
  width: 100%;
  margin-bottom: 4vh;
}
.checkbox .container .main-container .box-title .top .heading-02 {
  color: #e3d5c6;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  font-size: 56px;
  line-height: 0.84;
}
.checkbox .container .main-container .box-title .top .heading-02 span {
  vertical-align: baseline;
  line-height: 0.84;
}
.checkbox .container .main-container .box-title .top .heading-02 .line {
  line-height: 0.84;
}
.checkbox .container .main-container .box-title .top .heading-02 .line .word {
  line-height: 0.84;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .box-title .top .heading-02 {
    font-size: 100px;
  }
}
@media (min-width: 992px) {
  .checkbox .container .main-container .box-title .top .heading-02 {
    font-size: 150px;
  }
}
@media (min-width: 1600px) {
  .checkbox .container .main-container .box-title .top .heading-02 {
    font-size: 200px;
  }
}
.checkbox .container .main-container .box-title .top .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}
@media (min-width: 992px) {
  .checkbox .container .main-container .box-title .top .btn {
    display: block;
  }
}
.checkbox .container .main-container .box-title .bottom {
  display: flex;
  justify-content: space-between;
}
.checkbox .container .main-container .box-title .bottom .copy {
  color: #776f66;
  line-height: 1.3;
  font-size: 18px;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .box-title .bottom .copy {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .checkbox .container .main-container .box-title .bottom .copy {
    font-size: calc( 18px + (24 - 18) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.checkbox .container .main-container .box-title .bottom .copy strong {
  color: #e3d5c6;
}
.checkbox .container .main-container .cb-checkbox-group {
  margin-bottom: 6vh;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .cb-checkbox-group {
    display: block;
  }
}
.checkbox .container .main-container .cb-checkbox-group br {
  display: none;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .cb-checkbox-group br {
    display: block;
  }
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox {
  margin: 7px 6px 7px 0;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox {
    margin: 12px 9px 12px 0;
  }
}
@media (min-width: 1600px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox {
    margin: 15px 10px 15px 0;
  }
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  contain: content;
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded:before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: -10px;
  right: -10px;
  bottom: -15px;
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 44px;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: -0.01em;
  background: #101010;
  border-radius: 68px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: opacity 0.4s;
}
@media (min-width: 1200px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box {
    padding: 0 32px;
    height: 60px;
    border-radius: 90px;
  }
}
@media (min-width: 1600px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box {
    height: 60px;
    padding: 0 35px;
    font-size: 20px;
    border-radius: 100px;
  }
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px #2d2d2d solid;
  border-radius: 68px;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box:before {
    border-radius: 90px;
  }
}
@media (min-width: 1600px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box:before {
    border-radius: 100px;
  }
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
  position: relative;
  top: 1px;
  display: block;
  overflow: hidden;
  height: 17px;
  color: #e3d5c6;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
    height: 17px;
  }
}
@media (min-width: 1200px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
    height: 18px;
  }
}
@media (min-width: 1600px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
    height: 23px;
  }
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title span {
  display: block;
  position: relative;
  z-index: 2;
  transition: color 0.2s, transform 0.4s;
  transform-origin: left top;
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title span:after {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 150%;
  left: 0;
  transform: skewY(5deg);
  transform-origin: left top;
  transition: transform 0.4s;
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(1px);
  border-radius: 68px;
  outline: none;
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple:focus {
  outline-color: transparent;
  outline-style: none;
}
@media (min-width: 768px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple {
    border-radius: 90px;
  }
}
@media (min-width: 768px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple {
    border-radius: 100px;
  }
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple span {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(101%) translateZ(1px);
  background: #e3d5c6;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded.neon .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
  height: 25px !important;
  width: 82px !important;
}
@media (min-width: 1600px) {
  .checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded.neon .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
    height: 25px !important;
    width: 99px !important;
  }
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded.neon .cb-checkbox_rounded-box .cb-checkbox_rounded-title span {
  display: flex;
  align-items: center;
}
.checkbox .container .main-container .cb-checkbox-group .cb-checkbox_rounded.neon .cb-checkbox_rounded-box .cb-checkbox_rounded-title span:after {
  content: url(data:image/png;base64,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);
  transition: all 0.4s ease-in-out;
}
.checkbox .container .main-container .cb-checkbox_rounded label > input:focus ~ .cb-checkbox_rounded-box:before,
.checkbox .container .main-container .cb-checkbox_rounded-box:focus:before {
  border-color: rgba(0, 0, 0, 0.25);
}
.checkbox .container .main-container .cb-checkbox_rounded label > input:disabled ~ .cb-checkbox_rounded-box,
.checkbox .container .main-container .cb-checkbox_rounded-box.-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.checkbox .container .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span {
  transform: translateY(-150%) skewY(-5deg);
}
@media (pointer: coarse) {
  .checkbox .container .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span {
    transform: none;
  }
}
.checkbox .container .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span:after {
  transform: skewY(7deg);
}
@media (pointer: coarse) {
  .checkbox .container .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span:after {
    transform: none;
  }
}
.checkbox .container .main-container .cb-checkbox_rounded label {
  cursor: pointer;
}
.checkbox .container .main-container .cb-checkbox_rounded label > input {
  position: absolute;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  opacity: 0;
}
.checkbox .container .main-container .cb-checkbox_rounded label > input:checked ~ .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
  color: #000;
}
.checkbox .container .main-container .neon label > input:checked ~ .cb-checkbox_rounded-box .cb-checkbox_rounded-title span:after {
  content: url(data:image/png;base64,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) !important;
}
.checkbox .container .main-container .cb-checkbox_rounded label > input:checked ~ .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple span {
  border-radius: 0;
  transform: translateY(0) translateZ(1px);
  transition-duration: 0s, 0s;
  animation: cb-checkbox_rounded-ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
}
@keyframes cb-checkbox_rounded-ripple-in {
  0% {
    border-radius: 100%;
    transform: translateY(-101%) translateZ(1px);
  }
  100% {
    border-radius: 0;
    transform: translateY(0) translateZ(1px);
  }
}
.checkbox .container .contact-box {
  position: absolute;
  top: 16vh;
  right: 0;
  margin: 0 auto;
  height: 150vh;
  display: none;
  padding-right: 30px;
  z-index: 0;
  pointer-events: all;
}
@media (min-width: 1200px) {
  .checkbox .container .contact-box {
    display: flex;
    justify-content: flex-end;
  }
}
.checkbox .container .contact-box .content {
  margin-left: auto;
}
.checkbox .container .contact-box .content .box {
  margin-bottom: 3vh;
}
.checkbox .container .contact-box .content .box .title {
  font-size: 18px;
  margin-bottom: 2vh;
  font-weight: 400;
}
@media (min-width: 768px) {
  .checkbox .container .contact-box .content .box .title {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .checkbox .container .contact-box .content .box .title {
    font-size: calc( 18px + (24 - 18) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.checkbox .container .contact-box .content .box li {
  font-size: 16px;
  color: #929292;
  margin-bottom: 1vh;
  font-weight: 400;
}
@media (min-width: 768px) {
  .checkbox .container .contact-box .content .box li {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .checkbox .container .contact-box .content .box li {
    font-size: calc( 16px + (20 - 16) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.checkbox .container .contact-box .content .box li:hover a:after {
  opacity: 0.5;
  width: 100%;
}
.checkbox .container .contact-box .content .box li a {
  display: inline-block;
  color: #929292;
  font-weight: 400;
  padding-bottom: 4px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  text-transform: none;
  letter-spacing: 0px;
  text-align: left;
}
.checkbox .container .contact-box .content .box li a:hover {
  color: #000;
}
.checkbox .container .contact-box .content .box li a:after {
  content: "";
  display: block;
  width: 0px;
  height: 2px;
  border-radius: 6px;
  background-color: #000;
  position: absolute;
  left: -1px;
  bottom: 0px;
  opacity: 0.5;
  transition: all 0.4s ease 0s;
}

.form {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
.form .error {
  color: red;
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .form {
    width: 60%;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .form {
    padding: 0;
  }
}
.form .form-item {
  position: relative;
  overflow: hidden;
  padding: 7px 0;
}
.form .form-item input {
  font-size: 20px;
  color: #776f66;
  background-color: transparent;
  border: 0px solid #000;
  padding: 0;
  transition: all 0.2s ease-in;
  border-radius: 0;
  overflow: hidden;
  padding: 7px 0;
  padding-bottom: 15px;
  font-family: "NeueMontreal", Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #303030;
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .form .form-item input {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .form .form-item input {
    font-size: calc( 20px + (24 - 20) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .form .form-item input {
    padding-bottom: 3vh;
    margin: 5vh 0;
  }
}
.form .form-item input::-moz-placeholder {
  color: #776f66;
}
.form .form-item input:-ms-input-placeholder {
  color: #776f66;
}
.form .form-item input::placeholder {
  color: #776f66;
}
.form .form-item input:focus {
  border-bottom: 1px solid #776f66;
}
.form button {
  margin: 5vh 0;
  font-size: 17px;
  color: #000;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  background-color: transparent;
}
@media (min-width: 768px) {
  .form button {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .form button {
    font-size: calc( 17px + (20 - 17) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.form .cb-checkbox-group {
  display: flex !important;
  flex-wrap: wrap;
}
.form .cb-checkbox-group .cb-checkbox:first-child {
  margin-left: 0;
}
.form .cb-checkbox-group .text {
  width: 100%;
  font-size: 20px;
  color: #776f66;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .form .cb-checkbox-group .text {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .form .cb-checkbox-group .text {
    font-size: calc( 20px + (32 - 20) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .form .cb-checkbox-group .text {
    margin: 6vh 0 45px 0;
  }
}

@keyframes neon {
  0% {
    box-shadow: -2px -2px 6px #888;
  }
  25% {
    box-shadow: 2px -2px 6px #888;
  }
  50% {
    box-shadow: 2px 2px 6px #888;
  }
  75% {
    box-shadow: -2px 2px 6px #888;
  }
}
.navigation-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 70px;
  width: 100vw;
  transition: all 0.3s ease-out;
}
@media (min-width: 1200px) {
  .navigation-bar {
    height: 100%;
    width: 96px;
    background-color: transparent;
  }
}
.navigation-bar.solid, .navigation-bar.solid-default {
  background-color: #000;
  border-bottom: 1px solid rgba(20, 20, 20, 0);
}
.navigation-bar.solid .wrapper-logo svg path, .navigation-bar.solid-default .wrapper-logo svg path {
  fill: #fff !important;
}
.navigation-bar.solid .burger-button .fill, .navigation-bar.solid-default .burger-button .fill {
  background-color: #fff !important;
}
.navigation-bar .nav-modules {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 100;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules {
    flex-direction: column;
  }
}
.navigation-bar .nav-modules.desktop {
  display: none;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules.desktop {
    display: flex;
  }
}
.navigation-bar .nav-modules.mobile {
  display: flex;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules.mobile {
    display: none;
  }
}
.navigation-bar .nav-modules .border-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 0%;
  background-color: rgba(114, 114, 114, 0.15);
}
.navigation-bar .nav-modules .wrapper-logo {
  margin-left: 30px;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .wrapper-logo {
    margin-left: 0;
    margin-top: 30px;
  }
}
.navigation-bar .nav-modules .wrapper-logo img {
  width: 40px;
}
.navigation-bar .nav-modules .wrapper-logo svg path {
  fill: #fff;
  transition: fill 0.3s ease-out;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .wrapper-logo svg path {
    fill: var(--nav-logo-color);
  }
}
.navigation-bar .nav-modules .wrapper-copyright {
  margin-bottom: 30px;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: none;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .wrapper-copyright {
    display: block;
  }
}
.navigation-bar .nav-modules .wrapper-copyright span {
  color: var(--nav-copyright-color);
  vertical-align: baseline;
  transition: color 0.4s ease-out;
  display: block;
  position: relative;
  transform: translateY(-100%);
  opacity: 0;
}

.navigation-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 89;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (min-width: 1600px) {
  .navigation-menu {
    padding: 0 60px;
    max-width: none;
  }
}
.navigation-menu .nav-header {
  height: 70px;
  padding: 0 30px;
  width: 100%;
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.navigation-menu .nav-header.solid, .navigation-menu .nav-header.solid-default {
  background: transparent;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.86) 100%);
}
.navigation-menu .nav-header.solid .wrapper-logo svg path, .navigation-menu .nav-header.solid-default .wrapper-logo svg path {
  fill: #e3d5c6 !important;
}
.navigation-menu .nav-header.solid .burger-button .fill, .navigation-menu .nav-header.solid-default .burger-button .fill {
  background-color: #e3d5c6 !important;
}
.navigation-menu .nav-header.opened .wrapper-logo svg path {
  fill: #e3d5c6 !important;
}
.navigation-menu .nav-header.opened .burger-button .fill {
  background-color: #e3d5c6 !important;
}
@media (min-width: 992px) {
  .navigation-menu .nav-header {
    height: -moz-fit-content;
    height: fit-content;
    align-items: baseline;
    padding-top: 40px;
  }
}
.navigation-menu .wrapper-logo {
  position: relative;
  z-index: 999;
  pointer-events: all;
  cursor: pointer;
}
.navigation-menu .nav-links {
  display: none;
  flex-wrap: nowrap;
  justify-content: flex-end;
  pointer-events: all;
}
@media (min-width: 992px) {
  .navigation-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.navigation-menu .nav-links li {
  overflow: hidden;
  margin-bottom: 12px;
}
.navigation-menu .nav-links li:last-child {
  margin: 0;
}
.navigation-menu .nav-links li .item {
  display: inline-block;
  color: #e3d5c6;
  opacity: 0.5;
  font-size: 14px;
  letter-spacing: 0.5px;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  cursor: pointer;
}
.navigation-menu .nav-links li .item:hover {
  opacity: 1;
}
.navigation-menu .nav-links li .item.active {
  opacity: 1;
}
.navigation-menu .nav-links li .lang-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  text-transform: uppercase;
  pointer-events: all;
}
.navigation-menu .nav-links li .lang-selector .lang-content {
  overflow: hidden;
  position: relative;
}
.navigation-menu .nav-links li .lang-selector .clickeable {
  display: flex;
  align-items: center;
  padding: 2px 30px 0 15px;
  color: var(--nav-logo-color);
  transition: color 0.3s ease-in-out;
  background-color: transparent;
  width: 100%;
  z-index: 1;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transform: translateY(20px);
}
.navigation-menu .nav-links li .lang-selector .select {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}
.navigation-menu .nav-links li .lang-selector .select a {
  display: block;
  position: relative;
  padding: 20px 30px;
  color: var(--nav-logo-color);
  opacity: 0.5;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.navigation-menu .nav-links li .lang-selector .select a:hover {
  color: var(--nav-logo-color);
  opacity: 1;
}
.navigation-menu .nav-links li .lang-selector .select a.active {
  display: none;
}
.navigation-menu .nav-links li .lang-selector .arrow {
  height: 10px;
  width: 10px;
  transform-origin: center;
  border-bottom: 2px solid #ff003d;
  border-right: 2px solid #ff003d;
  position: absolute;
  top: 35%;
  right: 4px;
  transform: translateY(20px) rotate(45deg);
  cursor: pointer;
  z-index: 0;
}
.navigation-menu .burger-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  z-index: auto;
  display: flex;
  align-items: center;
  width: 35px;
  height: 35px;
  pointer-events: auto;
  z-index: 999;
}
@media (min-width: 992px) {
  .navigation-menu .burger-button {
    display: none;
  }
}
.navigation-menu .burger-button .content {
  position: relative;
  height: 17px;
  width: 100%;
}
.navigation-menu .burger-button .content .bar {
  position: absolute;
  left: 0;
  width: 100%;
  transform-origin: right center;
  transition: background-color 0.3s ease-out;
  border-radius: 6px;
}
.navigation-menu .burger-button .content .bar .fill {
  width: 100%;
  height: 2.5px;
  background-color: #e3d5c6;
  transition: background-color 0.3s ease-out;
  will-change: transform;
  border-radius: 100px;
}
@media (min-width: 1200px) {
  .navigation-menu .burger-button .content .bar .fill {
    background-color: var(--nav-burguer-color);
  }
}
.navigation-menu .burger-button .content .bar.top {
  top: 0;
}
.navigation-menu .burger-button .content .bar.middle {
  top: 50%;
  margin-top: -0.5px;
}
.navigation-menu .burger-button .content .bar.bottom {
  bottom: -2px;
  width: 60%;
  transform: translateX(-100%);
  left: 100%;
}

.nav-fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.nav-fullscreen-menu .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #101010;
  z-index: 1;
  pointer-events: none;
}
.nav-fullscreen-menu .container-frame {
  height: 100%;
}
.nav-fullscreen-menu .container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
  transform: translateX(-120vw);
  flex-direction: column;
  justify-content: unset;
  align-items: inherit;
}
.nav-fullscreen-menu .container .navigation {
  position: relative;
  z-index: 98;
  width: 100%;
  height: 35%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  margin-top: 135px;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .navigation {
    height: 100%;
    margin-top: 0;
  }
}
.nav-fullscreen-menu .container .navigation .list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
  pointer-events: all;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .navigation .list {
    flex-direction: row;
    height: auto;
    align-items: center;
  }
}
.nav-fullscreen-menu .container .navigation .list li {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.nav-fullscreen-menu .container .navigation .list li.active a {
  color: #e3d5c6;
  opacity: 1 !important;
}
.nav-fullscreen-menu .container .navigation .list li a {
  display: block;
  font-size: 44px;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  color: #e3d5c6;
  pointer-events: all;
}
@media (min-width: 768px) {
  .nav-fullscreen-menu .container .navigation .list li a {
    font-size: 75px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .nav-fullscreen-menu .container .navigation .list li a {
    font-size: calc( 44px + (75 - 44) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.nav-fullscreen-menu .container .navigation .list li a:hover {
  opacity: 1;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0 30px;
  }
}
@media (min-width: 1600px) {
  .nav-fullscreen-menu .container .nav-sub-container {
    padding: 0;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #7a736b;
  pointer-events: all;
  margin-top: 70px;
  position: relative;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub {
    flex-direction: column;
    font-size: 18px;
    flex-direction: row;
    padding-top: 50px;
    margin-bottom: 50px;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .border-top {
  position: absolute;
  height: 1px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #797979;
  display: none;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .border-top {
    display: block;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container {
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container {
    display: block;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright {
  display: none;
  font-size: 14px;
  align-items: center;
  line-height: 1.3;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright {
    display: flex;
    font-size: 18px;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright span {
  display: none;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright span {
    display: block;
    margin: 0 5px;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright br {
  display: block;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright br {
    display: none;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 5vh;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list {
    justify-content: space-between;
    margin-bottom: 0;
    flex-direction: row;
    width: 20%;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list.mobile {
  display: flex;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list.mobile {
    display: none;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .title-container {
  overflow: hidden;
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .title-container .title {
  color: #e3d5c6;
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .title-container .title {
    display: none;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container {
  overflow: hidden;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container {
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container a,
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container p {
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  padding: 3px 0;
  color: #7a736b;
  display: block;
}
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container a:last-child,
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container a,
.nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container p {
    margin-bottom: 0;
    font-size: 18px;
  }
}
.nav-fullscreen-menu .wrapper-images {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .nav-fullscreen-menu .wrapper-images {
    display: block;
  }
}
.nav-fullscreen-menu .wrapper-images .bg {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-origin: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.3);
}
.nav-fullscreen-menu .wrapper-images .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.nav-fullscreen-menu .wrapper-images .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.heading-01 {
  font-weight: 500;
  font-size: 36px;
  font-family: "NeueMontreal-Medium";
}
@media (min-width: 768px) {
  .heading-01 {
    font-size: 90px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-01 {
    font-size: calc( 36px + (90 - 36) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.heading-02 {
  font-weight: 400;
  font-size: 24px;
}
@media (min-width: 768px) {
  .heading-02 {
    font-size: 75px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-02 {
    font-size: calc( 24px + (75 - 24) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.heading-03 {
  font-weight: 400;
  font-size: 21px;
}
@media (min-width: 768px) {
  .heading-03 {
    font-size: 65px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-03 {
    font-size: calc( 21px + (65 - 21) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.heading-04 {
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 768px) {
  .heading-04 {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-04 {
    font-size: calc( 18px + (30 - 18) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.heading-05 {
  font-weight: 400;
  font-size: 16px;
}
@media (min-width: 768px) {
  .heading-05 {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-05 {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.heading-06 {
  font-weight: 400;
  font-size: 12px;
}
@media (min-width: 768px) {
  .heading-06 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-06 {
    font-size: calc( 12px + (18 - 12) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.g-copyright {
  position: fixed;
  right: 2.5vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 8px;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  letter-spacing: 3px;
}

#pointer {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 99999999;
  top: 50%;
  left: 50%;
  opacity: 0;
}
#pointer .main-circle {
  position: absolute;
  top: 50%;
  transform: scale(1) translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  background: #ff003d;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
}
#pointer .main-circle .inner-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#pointer .main-circle .inner-text span {
  display: inline-block;
  text-align: center;
  opacity: 0;
  font-size: 0;
  color: #fff;
  vertical-align: baseline;
  font-weight: 500;
  line-height: 1.2;
  transform: translateY(2px);
  transition: opacity 0.3s ease-out;
}
#pointer .arrows {
  position: absolute;
  top: 50%;
  transform: scale(1) translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 39px;
  color: #ff003d;
  transition: all 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
  display: flex;
  opacity: 0;
  justify-content: space-between;
}
#pointer .arrows i {
  font-size: 25px;
}
#pointer .draggable {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translatey(-50%);
}
#pointer .draggable .drag-circle {
  fill: transparent;
  stroke: #ff003d;
  stroke-width: 2px;
  stroke-dasharray: 60;
  transition: all 1s cubic-bezier(0.37, 0.01, 0, 0.98), stroke-dasharray 1.5s 0.1s cubic-bezier(0.37, 0.01, 0, 0.98);
  stroke-dashoffset: 0;
  opacity: 0;
  transform: scale(0) rotate(0);
  transform-origin: center;
}
#pointer .wrapper-play {
  position: relative;
  width: 100%;
  height: 100%;
}
#pointer .wrapper-play .circle-dashed {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.5);
  transform-origin: center;
  transition: all 0.3s ease;
}
#pointer .wrapper-play .circle-dashed circle {
  transform-origin: center;
  animation: rotating 6s linear infinite;
}
#pointer .wrapper-play .ic-play {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  color: #ff003d;
  transition: all 0.3s ease;
  transform: translate3d(-38%, -50%, 0) scale(0);
}
#pointer .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  color: #fff;
  font-family: "Gotham-Medium", Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0;
  transition: all 0.3s;
  transform: translateX(-50%);
  opacity: 0;
}
#pointer .text span {
  position: relative;
  background: #111;
  padding: 5px 8px;
  white-space: nowrap;
}
#pointer.on-play-video {
  /*.circle-dashed {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  } */
}
#pointer.on-play-video .main-circle {
  transition: all 0.3s;
  opacity: 0.4;
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 61, 0.4);
  *border: 2px solid #ff003d;
}
#pointer.on-play-video .wrapper-play .ic-play {
  opacity: 1;
  transform: translate3d(-42%, -50%, 0) scale(0.5);
}
#pointer.on-play-video .text {
  bottom: -10px !important;
}
#pointer.active .main-circle {
  transition: all 0.3s;
  opacity: 0.4;
  width: 60px;
  height: 60px;
}
#pointer.active-with-text .main-circle {
  transition: all 0.3s;
  opacity: 0.9;
  width: 130px;
  background-color: #fff;
  box-shadow: 0px 0px 50px -10px #fff;
  height: 130px;
}
#pointer.active-with-text .main-circle .inner-text span {
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  opacity: 1;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #949494;
  text-transform: uppercase;
  width: 130px;
  white-space: normal;
}
#pointer.drag .main-circle {
  width: 0;
  height: 0;
}
#pointer.drag .arrows {
  width: 80px;
  opacity: 1;
  transition-delay: 0.2s;
}
#pointer.drag .draggable .drag-circle {
  stroke-dasharray: 200;
  opacity: 1;
  transform: scale(1) rotate(280deg);
}
#pointer.display-text .text {
  opacity: 1;
  bottom: 20px;
}
#pointer.display-text.on-hover .text {
  bottom: 0;
}
#pointer.hide:not(.on-hover) .text, #pointer.drag .text {
  opacity: 0;
  bottom: 10px;
  transition-delay: 0s;
}

#pointer .loading {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.5s;
  opacity: 0;
  text-align: center;
}
#pointer .loading .loader {
  text-align: center;
}
#pointer .loading svg {
  width: 25px;
  height: 35px;
  margin-top: 2px;
}

body.loading #pointer .main-circle {
  opacity: 0;
}

body.loading #pointer .loading {
  opacity: 1;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.contact-global-button {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 59;
}
@media (min-width: 992px) {
  .contact-global-button {
    right: calc(2vw + 24px);
    bottom: calc(2vw + 24px);
  }
}
.contact-global-button:hover {
  transform: scale(1.1);
}
.contact-global-button a img {
  height: 60px;
  width: 60px;
}
@media (min-width: 992px) {
  .contact-global-button a img {
    height: 71px;
    width: 71px;
  }
}

.g-position-bar {
  position: fixed;
  left: 3vw;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  height: 190px;
  width: 2px;
}
.g-position-bar .wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
.g-position-bar .wrapper .progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 0;
  background-color: #ff003d;
}

.g-mouse-hint {
  width: 25px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: all 0.3s ease 0s;
}
.g-mouse-hint.no-visible {
  opacity: 0;
  bottom: 0;
}
.g-mouse-hint .mouse-icon {
  width: 25px;
  height: 45px;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.g-mouse-hint .mouse-icon .mouse-wheel {
  height: 10px;
  margin: 2px auto 0;
  display: block;
  width: 10px;
  background-color: #ff003d;
  border-radius: 50%;
  animation: 2s cubic-bezier(0.37, 0.01, 0, 0.98) infinite wheel-up-down;
}

@keyframes wheel-up-down {
  0% {
    margin-top: -70px;
    opacity: 0;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    margin-top: 35px;
    opacity: 0;
  }
}
.g-dark-overlay {
  position: fixed;
  top: -110%;
  left: 0;
  z-index: 7;
  height: 100vh;
  width: 100%;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
}

img.three {
  width: 100%;
  display: block;
  opacity: 0;
}

#container {
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}

.pin-spacer {
  pointer-events: none;
}

.button-secondary {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.button-secondary a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.button-secondary div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.button-secondary span {
  vertical-align: baseline;
  color: #888;
  font-size: 16px;
  transition: all 0.3s ease-out;
}
@media (min-width: 992px) {
  .button-secondary span {
    font-size: 24px;
  }
}
.button-secondary .icon {
  margin-left: 16px;
  transition: all 0.3s ease-out;
  margin-top: 2px;
}
.button-secondary .icon svg {
  height: 20px;
  width: 20px;
}
.button-secondary .icon.rotate {
  transform: rotate(90deg);
  transform-origin: center center;
}
.button-secondary .icon .circle {
  stroke: #888;
  fill: transparent;
  transition: all 0.2s ease-out;
}
.button-secondary .icon .arrow {
  stroke: #888;
  transition: all 0.2s ease-out;
}
.button-secondary:hover span {
  color: #fff;
}
.button-secondary:hover .icon .circle {
  stroke: #fff;
  fill: #fff;
}
.button-secondary:hover .icon .arrow {
  stroke: #101010;
}
.button-secondary.dark-btn span {
  vertical-align: baseline;
  color: #000;
}
.button-secondary.dark-btn .icon {
  margin-left: 16px;
  transition: all 0.3s ease-out;
}
.button-secondary.dark-btn .icon .circle {
  stroke: #000;
  fill: none;
  transition: all 0.2s ease-out;
}
.button-secondary.dark-btn .icon .arrow {
  stroke: #000;
  transition: all 0.2s ease-out;
}
.button-secondary.dark-btn:hover .icon .circle {
  fill: #ff003d;
  stroke: #ff003d;
}
.button-secondary.dark-btn:hover .icon .arrow {
  stroke: #fff;
}

.capsule-button-group {
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: all;
}
.capsule-button-group br {
  display: none;
}
@media (min-width: 768px) {
  .capsule-button-group br {
    display: block;
  }
}
.capsule-button-group .capsule-button {
  border-radius: 100px;
}
.capsule-button-group .capsule-button_rounded {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  contain: content;
}
.capsule-button-group .capsule-button_rounded:before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: -10px;
  right: -10px;
  bottom: -15px;
}
.capsule-button-group .capsule-button_rounded label {
  cursor: pointer;
}
.capsule-button-group .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title {
  color: #000;
}
.capsule-button-group .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg line,
.capsule-button-group .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-title svg path {
  stroke: #000;
}
.capsule-button-group .capsule-button_rounded label:hover .capsule-button_rounded-box .capsule-button_rounded-ripple span {
  border-radius: 0;
  transform: translateY(0) translateZ(0);
  transition-duration: 0s, 0s;
  animation: capsule_ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  overflow: hidden;
  padding: 0 26px;
  font-size: 16px;
  letter-spacing: -0.01em;
  background: transparent;
  border-radius: 68px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: opacity 0.4s;
}
@media (min-width: 1200px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box {
    padding: 0 32px;
    height: 60px;
    border-radius: 90px;
  }
}
@media (min-width: 1600px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box {
    height: 60px;
    padding: 0 35px;
    font-size: 20px;
    border-radius: 100px;
  }
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px #E3D5C6 solid;
  border-radius: 68px;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box:before {
    border-radius: 90px;
  }
}
@media (min-width: 1600px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box:before {
    border-radius: 100px;
  }
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  font-family: "NeueMontreal";
  font-size: 16px;
  color: #e3d5c6;
  transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
}
@media (min-width: 992px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title {
    font-size: 20px;
  }
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title svg {
  margin-left: 10px;
  width: 12px;
}
@media (min-width: 992px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title svg {
    width: 14px;
  }
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title svg.instagram-logo {
  width: 28px;
}
@media (min-width: 992px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title svg.instagram-logo {
    width: auto;
  }
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title svg line,
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-title svg path {
  transition: all 0.5s cubic-bezier(0.4, 0, 0, 1);
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-ripple {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(0);
  border-radius: 68px;
  z-index: 0;
  outline: none;
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-ripple:focus {
  outline-color: transparent;
  outline-style: none;
}
@media (min-width: 768px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-ripple {
    border-radius: 90px;
  }
}
@media (min-width: 768px) {
  .capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-ripple {
    border-radius: 100px;
  }
}
.capsule-button-group .capsule-button_rounded label .capsule-button_rounded-box .capsule-button_rounded-ripple span {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(100%) translateZ(0);
  background: #e3d5c6;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
}
@keyframes capsule_ripple-in {
  0% {
    border-radius: 100%;
    transform: translateY(-100%) translateZ(0);
  }
  100% {
    border-radius: 0;
    transform: translateY(0) translateZ(0);
  }
}

.button-simple {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 5px 0;
  overflow: hidden;
}
.button-simple span {
  color: #101010;
  vertical-align: baseline;
}
.button-simple::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.75s ease-out;
  transform: translateX(-250%);
}
.button-simple::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.75s ease-out;
  transform: translateX(0);
}
.button-simple:hover::before {
  transform: translateX(0);
}
.button-simple:hover::after {
  transform: translateX(250%);
}
.button-simple.white span {
  color: #fff;
}
.button-simple.white::before, .button-simple.white::after {
  background-color: #fff;
}
.button-simple.gray span {
  color: #a0a0a1;
}
.button-simple.gray::before, .button-simple.gray::after {
  background-color: #a0a0a1;
}
.button-simple.no-line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.4s ease-out;
  transform: translateX(-250%);
}
.button-simple.no-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: black;
  transition: all 0.4s ease-out;
  transform: translateX(0);
}
.button-simple.no-line:hover::before {
  transform: translateX(0);
}
.button-simple.no-line:hover::after {
  transform: translateX(250%);
}
.button-simple.red span {
  color: #fff;
  transition: all 0.4s ease-out;
}
.button-simple.red::before, .button-simple.red::after {
  background-color: #ff003d;
}
.button-simple.red:hover span {
  color: #ff003d;
}
.button-simple.active {
  color: #ff003d !important;
}
.button-simple.active:after {
  transform: scaleX(1);
  transform-origin: left;
  background: #ff003d;
}

.overlay {
  background-color: #000;
  opacity: 0;
  position: absolute;
  top: -10%;
  left: -10%;
  height: 120%;
  width: 120%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}
.overlay .text {
  opacity: 0;
  color: #fff;
  font-size: 15px;
  margin: 0;
  pointer-events: none;
}
.overlay::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #101010;
  z-index: -1;
}

.wrapper-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: all;
}
.wrapper-loading .wrapper-preloader {
  position: absolute;
  z-index: 998;
  height: 100%;
  width: 100%;
  background-color: #101010;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in;
}
.wrapper-loading .wrapper-preloader .box-preloader {
  display: inline-block;
  padding-top: 0;
  text-align: center;
}
.wrapper-loading .wrapper-preloader .box-preloader img {
  width: 65px;
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-preloader .box-preloader img {
    width: 85px;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .main-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50px);
  width: 200px;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
  cursor: pointer;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
  opacity: 0;
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-preloader .box-preloader .main-container {
    width: 220px;
    height: 220px;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container {
    bottom: 28%;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .counter {
  font-size: 36px;
  color: #e3d5c6;
  font-weight: 500;
  font-family: Arial, Helvetica, Verdana, Tahoma, "NeueMontreal-Medium";
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .counter {
    font-size: 52px;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .click {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  top: 100%;
  left: 50%;
  cursor: pointer;
  overflow: hidden;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .click .text {
  color: #e3d5c6;
  font-size: 15px;
  font-weight: 500;
  font-family: Arial, Helvetica, Verdana, Tahoma, "NeueMontreal-Medium";
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .click .text {
    font-size: 18px;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .click .line {
  height: 2px;
  width: 0;
  transform-origin: center center;
  background-color: #e3d5c6;
  transform: translateX(0%);
  transition: all 0.4s ease-in-out;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .click .line-left {
  height: 2px;
  width: 100%;
  transform-origin: center center;
  background-color: #e3d5c6;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-250%);
  transition: all 0.4s ease-in-out;
}

.marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
  position: relative;
  overflow: hidden;
  margin-top: 12vh;
}
.marquee.marquee-loader {
  margin-top: 30px;
  width: 150px;
}
@media (min-width: 992px) {
  .marquee.marquee-loader {
    width: 200px;
  }
}
.marquee.marquee-loader .text {
  font-size: 14px;
  color: #888;
  padding: 2px 0;
}
@media (min-width: 992px) {
  .marquee.marquee-loader .text {
    font-size: 18px;
  }
}
.marquee.marquee-loader .degree {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #121212;
  background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0) 25%, rgba(18, 18, 18, 0) 75%, #121212 100%);
}
@media (min-width: 992px) {
  .marquee.marquee-loader .degree {
    background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0) 25%, rgba(18, 18, 18, 0) 75%, #121212 100%);
  }
}
.marquee .line-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #272727;
}
.marquee .line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #272727;
}
.marquee .degree {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #121212;
  background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0) 15%, rgba(18, 18, 18, 0) 85%, #121212 100%);
}
@media (min-width: 992px) {
  .marquee .degree {
    background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0) 5%, rgba(18, 18, 18, 0) 95%, #121212 100%);
  }
}
.marquee .text {
  display: flex;
  white-space: nowrap;
  font-size: 26px;
  color: #fff;
  z-index: 2;
  padding: 0;
  align-items: center;
}
@media (min-width: 768px) {
  .marquee .text {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .marquee .text {
    font-size: calc( 26px + (100 - 26) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .marquee .text {
    z-index: 1;
    padding: 50px 0;
  }
}
.marquee .text .brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin: 0 15px;
  min-height: 150px;
}
@media (min-width: 768px) {
  .marquee .text .brand {
    width: 220px;
    margin: 0 30px;
  }
}
.marquee .text .brand img {
  max-width: -moz-fit-content;
  max-width: fit-content;
  opacity: 0.4;
  transition: opacity 0.4s ease-out;
  width: 100%;
  height: 100%;
}
.marquee .text .brand:last-child {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .marquee .text .brand:last-child {
    margin: 0;
  }
}
.marquee .text .brand:hover img {
  opacity: 1;
}

/** about PORTRAIT **/
.banner {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: #101010;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #101010;
  margin-top: 20vh;
  /* Hack to avoid pixel line generated by locomotive animations */
  /* PORTRAIT > VIDEO BACKGROUND */
}
.banner::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #101010;
  z-index: -1;
}
.banner .container-frame {
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.banner .box-title .heading-06 {
  color: #b8b8b8;
  overflow: hidden;
  font-size: 15px;
}
@media (min-width: 768px) {
  .banner .box-title .heading-06 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .banner .box-title .heading-06 {
    font-size: calc( 15px + (18 - 15) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.banner .box-title .heading-06 strong {
  font-weight: 700;
  color: #fff;
}
.banner .box-title .heading-01 {
  color: #fff;
  margin: 6vh 0 8vh 0;
  font-size: 32px;
  font-family: "NeueMontreal-Medium";
  font-weight: 500;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .banner .box-title .heading-01 {
    font-size: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .banner .box-title .heading-01 {
    font-size: calc( 32px + (80 - 32) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .banner .box-title .heading-01 {
    margin-bottom: 15vh;
  }
}
.banner .box-title .heading-01 br {
  display: none;
}
@media (min-width: 992px) {
  .banner .box-title .heading-01 br {
    display: block;
  }
}
.banner .box-title .button-simple {
  color: #fff;
  font-size: 15px;
}
@media (min-width: 768px) {
  .banner .box-title .button-simple {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .banner .box-title .button-simple {
    font-size: calc( 15px + (18 - 15) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.banner .bg-media {
  position: absolute;
  top: 0px;
  right: 0px;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  /* 4000% */
  max-width: 100%;
  /* 100% */
  width: auto;
  height: auto;
  z-index: 0;
  overflow: hidden;
}
.banner .bg-media video {
  width: 100vw;
  height: 100vh;
  opacity: 0.4;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .bg-media img {
  width: 100vw;
  height: 100vh;
  opacity: 0.4;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.separador {
  width: 100%;
  background-color: #101010;
  position: relative;
  overflow: hidden;
  /* Hack to avoid pixel line generated by locomotive animations */
}
.separador img {
  width: 100%;
  height: 100%;
}
.separador::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #101010;
  z-index: -1;
}

.g-noise {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999999;
  opacity: 0.3;
  overflow: hidden;
}
.g-noise:after {
  content: "";
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url(../images/design/grain.91b8f8.png);
  background-position: 50%;
  position: absolute;
  left: -10rem;
  top: -10rem;
  will-change: transform;
  animation: noise 1s steps(2) infinite;
}
@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
.line {
  -webkit-clip-path: polygon(0% 0%, 120% 0%, 120% 120%, 0% 120%) !important;
          clip-path: polygon(0% 0%, 120% 0%, 120% 120%, 0% 120%) !important;
}

#s-player {
  width: 100%;
  height: 100%;
  position: absolute;
  background: black;
  top: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
}
#s-player.true-challenge .blur {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  filter: blur(15px);
  transition: all 0.4s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
#s-player.true-challenge .box-text {
  display: flex;
}
#s-player video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
}
#s-player .blur {
  display: none;
}
#s-player .back {
  z-index: 9;
  position: absolute;
  pointer-events: none;
}
#s-player .cursor {
  opacity: 0;
  color: #fcf6f4;
  margin-left: 2vw;
  font-size: 0.972vw;
}
#s-player .controls {
  left: 6.25vw;
  right: 6.25vw;
  bottom: 6.25vw;
  height: 1.042vw;
  z-index: 1;
  color: white;
  position: absolute;
  line-height: 1.042vw;
  text-transform: uppercase;
}
#s-player .play,
#s-player .close {
  height: 100%;
  cursor: pointer;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  letter-spacing: 1px;
  position: absolute;
}
#s-player .play {
  left: 0;
}
#s-player .close {
  right: 0;
  text-align: right;
}
#s-player .timeline {
  top: 0;
  left: 7.5vw;
  right: 7.5vw;
  height: 100%;
  position: absolute;
}
#s-player .timeline:after {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}
#s-player .timer {
  width: 0;
  left: -1vw;
  top: 1.5vw;
  text-align: center;
  font-size: 0.833vw;
  position: absolute;
}
#s-player .progress {
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  position: absolute;
  pointer-events: none;
  transform: translateY(-50%);
}
#s-player .progress {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
#s-player .progress::-webkit-progress-bar {
  background-color: transparent;
}
#s-player .progress::-webkit-progress-value {
  background: #fcf6f4;
}
#s-player .range {
  left: 0;
  right: 0;
  top: 50%;
  z-index: 3;
  width: 100%;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
  background: transparent;
  -webkit-appearance: none;
  transform: translateY(-50%);
  margin: 0;
}
#s-player .range::-webkit-slider-thumb {
  -webkit-appearance: none;
}
#s-player .range:focus {
  outline: none;
}
#s-player .range::-ms-track {
  width: 100%;
  cursor: pointer;
  color: transparent;
  background: transparent;
  border-color: transparent;
}
#s-player .range::-webkit-slider-thumb {
  width: 0.347vw;
  height: 0.347vw;
  cursor: pointer;
  background: #fcf6f4;
  border-radius: 1vw;
  -webkit-appearance: none;
}
#s-player .range::-moz-range-thumb {
  width: 0.347vw;
  height: 0.347vw;
  cursor: pointer;
  background: #fcf6f4;
  border-radius: 1vw;
}
#s-player .range::-ms-thumb {
  width: 0.347vw;
  height: 0.347vw;
  cursor: pointer;
  background: #fcf6f4;
  border-radius: 1vw;
}
#s-player .cc-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #161616;
  z-index: 10;
}
#s-player .box-text {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
#s-player .box-text .top-box .title {
  margin: 20px 0 30px 0;
  color: #fff;
  font-weight: 500;
  font-family: "NeueMontreal-Medium";
  font-size: 18px;
}
@media (min-width: 768px) {
  #s-player .box-text .top-box .title {
    font-size: 24px;
  }
}
#s-player .box-text .top-box .copy {
  color: #b4adaa;
  line-height: 1.6;
  font-size: 12px;
}
@media (min-width: 768px) {
  #s-player .box-text .top-box .copy {
    font-size: 20px;
  }
}
#s-player .box-text .bottom-box {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  height: -moz-fit-content;
  height: fit-content;
}
#s-player .box-text .bottom-box .button-simple {
  margin-right: 50px;
  font-size: 18px;
  pointer-events: all;
}
@media (min-width: 768px) {
  #s-player .box-text .bottom-box .button-simple {
    font-size: 24px;
  }
}
#s-player .box-text .bottom-box .button-simple:last-child {
  margin-right: 0;
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.accordion-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 30px 0;
  color: var(--nav-fill-color);
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .accordion-toggle {
    padding: 35px 0;
  }
}
.accordion-toggle h5 {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--nav-fill-color);
  opacity: 0.5;
  line-height: 1.4;
  max-width: calc(100% - 60px);
  transition: opacity 0.3s ease;
}
@media (min-width: 1200px) {
  .accordion-toggle h5 {
    font-size: 22px;
  }
}
.accordion-toggle h5:hover {
  opacity: 1;
}
.accordion-toggle .circle {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  position: relative;
  border-radius: 32px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.accordion-toggle .circle .line {
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-toggle .circle .line.horizontal {
  width: 13px;
  height: 2px;
}
.accordion-toggle .circle .line.vertical {
  height: 13px;
  width: 2px;
  transition: transform 0.2s ease-in;
}

.accordion-toggle.open h5 {
  opacity: 1;
}
.accordion-toggle.open .vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-toggle.open .circle,
.accordion-toggle:hover .circle {
  opacity: 1;
}

.accordion-content {
  display: none;
  padding-bottom: 30px;
  overflow: auto;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .accordion-content {
    padding-bottom: 70px;
  }
}
