@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;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: "Love-regular";
  src: url(../fonts/love-regular.woff) format("woff"), url(../fonts/love-regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url(../fonts/CormorantGaramond-Regular.woff) format("woff"), url(../fonts/CormorantGaramond-Regular.woff2) format("woff2");
  font-weight: normal;
  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)
 */
@-webkit-keyframes soundWave {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-63px);
  }
}
@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;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #0d0d0d;
  -webkit-tap-highlight-color: transparent !important;
}

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

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;
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-name: zoominInfinite;
  animation-name: zoominInfinite;
}

@-webkit-keyframes zoominout {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.15);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

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

@-webkit-keyframes flash2 {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

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

@-webkit-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 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);
  }
}
@-webkit-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 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);
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@-webkit-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 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);
  }
}
@-webkit-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 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);
  }
}
@-webkit-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 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);
  }
}
@-webkit-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 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);
  }
}
@-webkit-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 bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@-webkit-keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@-webkit-keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@-webkit-keyframes bounceOutRight {
  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);
  }
}
@-webkit-keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-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);
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            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);
  }
}
@-webkit-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 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);
  }
}
@-webkit-keyframes flipOutX {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}
@keyframes flipOutX {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}
@-webkit-keyframes flipOutY {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}
@keyframes flipOutY {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}
@-webkit-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 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);
  }
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
  }
}
@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center center;
  }
}
@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;
  }
}
@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    transform: rotate(200deg);
    transform-origin: center center;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    transform: rotate(200deg);
    transform-origin: center center;
  }
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom;
  }
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  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);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@-webkit-keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@-webkit-keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@-webkit-keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform: rotate(0);
    transform-origin: top left;
  }
  20%, 60% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform: rotate(60deg);
    transform-origin: top left;
  }
  80% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
  }
  100% {
    opacity: 0;
    transform: translateY(700px);
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform: rotate(0);
    transform-origin: top left;
  }
  20%, 60% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40% {
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    transform: rotate(60deg);
    transform-origin: top left;
  }
  80% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            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);
  }
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInDown {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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 zoomInDown {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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);
  }
}
@-webkit-keyframes zoomInLeft {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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 zoomInLeft {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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);
  }
}
@-webkit-keyframes zoomInRight {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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);
  }
}
@-webkit-keyframes zoomInUp {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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 zoomInUp {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes zoomOutIndex {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes zoomOutIndex {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@-webkit-keyframes zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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 zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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;
  }
}
@-webkit-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 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;
  }
}
@-webkit-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 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;
  }
}
@-webkit-keyframes zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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 zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            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% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            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;
  }
}
@-webkit-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);
  }
}
@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;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

/*===================================================================================*/
/*  flipInX                                                                          */
/*===================================================================================*/
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@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;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

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

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

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

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

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

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

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

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

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

/*===================================================================================*/
/*  bounceIn                                                                         */
/*===================================================================================*/
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@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;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

/*===================================================================================*/
/*  bounceInUp                                                                       */
/*===================================================================================*/
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@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;
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/*===================================================================================*/
/*  bounceInDown                                                                     */
/*===================================================================================*/
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@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;
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/*===================================================================================*/
/*  bounceInLeft                                                                     */
/*===================================================================================*/
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@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;
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

/*===================================================================================*/
/*  bounceInRight                                                                    */
/*===================================================================================*/
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@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;
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

/*===================================================================================*/
/* rotateInUpLeft                                                                    */
/*===================================================================================*/
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@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;
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

/*===================================================================================*/
/*  otateInDownLeft                                                                  */
/*===================================================================================*/
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@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;
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

/*===================================================================================*/
/*  rotateInUpRight                                                                  */
/*===================================================================================*/
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@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;
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

/*===================================================================================*/
/*  rotateInDownRight                                                                */
/*===================================================================================*/
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@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;
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

/*===================================================================================*/
/*  lightSpeedRight                                                                  */
/*===================================================================================*/
@-webkit-keyframes lightSpeedRight {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@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;
  -webkit-animation-name: lightSpeedRight;
  animation-name: lightSpeedRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

/*===================================================================================*/
/*  lightSpeedLeft                                                                  */
/*===================================================================================*/
@-webkit-keyframes lightSpeedLeft {
  0% {
    -webkit-transform: translateX(-100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@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;
  -webkit-animation-name: lightSpeedLeft;
  animation-name: lightSpeedLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

/*===================================================================================*/
/*  rollin                                                                          */
/*===================================================================================*/
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.animated.rollIn {
  opacity: 1;
  -webkit-animation-name: rollIn;
  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: #c2a269;
  opacity: 2;
  width: 10px;
  border-radius: 0;
  margin: 0;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  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, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') 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%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          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;
}

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

@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;
  -webkit-backface-visibility: hidden;
  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;
  -webkit-backface-visibility: hidden;
  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;
  -webkit-backface-visibility: hidden;
  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;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* App Pages, Sections & Components styles */
section .container-full,
footer .container-full,
figure .container-full,
article .container-full {
  width: 100%;
}
section .container-full .container,
footer .container-full .container,
figure .container-full .container,
article .container-full .container {
  width: 100%;
  max-width: 1648px;
  margin: 0 auto;
  padding: 0 5vw;
}
@media (min-width: 1600px) {
  section .container-full .container,
footer .container-full .container,
figure .container-full .container,
article .container-full .container {
    padding: 0;
  }
}
section .container-frame,
footer .container-frame,
figure .container-frame,
article .container-frame {
  width: 100%;
  padding: 0;
}
section .container-frame .container,
footer .container-frame .container,
figure .container-frame .container,
article .container-frame .container {
  width: 100%;
  max-width: 1630px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 1600px) {
  section .container-frame .container,
footer .container-frame .container,
figure .container-frame .container,
article .container-frame .container {
    padding: 0;
  }
}

.footer {
  padding: 20vh 0 10vh 0;
  position: relative;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .container .logo {
  width: 70%;
  margin-bottom: 12vh;
}
@media (min-width: 992px) {
  .footer .container .logo {
    width: 30%;
  }
}
.footer .container .tagname {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer .container .tagname {
    font-size: 21px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container .tagname {
    font-size: calc( 13px + (21 - 13) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container .play {
  margin-bottom: 5vh;
}
.footer .container .play span {
  font-weight: 400;
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
  color: #fff;
  /* @include fontResponsive(45px, 116px, 768px, 1920px);*/
  font-size: 30px;
}
@media (min-width: 768px) {
  .footer .container .play span {
    font-size: 96px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container .play span {
    font-size: calc( 30px + (96 - 30) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container .link {
  margin-bottom: 12vh;
}
.footer .container .link span {
  font-size: 25px;
  font-weight: 400;
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
  .footer .container .link span {
    font-size: 56px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container .link span {
    font-size: calc( 25px + (56 - 25) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container .copy {
  font-size: 14px;
  color: #999999;
  margin-top: 45px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .container .copy {
    font-size: 19px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container .copy {
    font-size: calc( 14px + (19 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container .sign {
  font-size: 16px;
  color: #999999;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .footer .container .sign {
    font-size: 19px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container .sign {
    font-size: calc( 16px + (19 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container .sign a {
  color: #FFF;
  vertical-align: baseline;
  transition: color 0.35s ease-out;
}
.footer .container .sign a:hover {
  color: #fff;
}
.footer .container .go-top {
  cursor: pointer;
}
.footer .container .go-top .circle circle {
  fill: transparent;
  transition: all 0.4s ease-in-out;
}
.footer .container .go-top:hover .circle circle {
  fill: #c2a269;
}

/** HOME PORTRAIT **/
.portrait {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: #0d0d0d;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 767px) and (orientation: landscape) {
  .portrait {
    height: 130vh;
  }
}
@media (min-width: 768px) {
  .portrait {
    height: 114vh;
  }
}
@media (min-width: 992px) {
  .portrait {
    height: 134vh;
  }
}
.portrait .container-frame {
  position: relative;
  z-index: 2;
  height: 100%;
}
.portrait .container-frame .container {
  position: relative;
  height: 100%;
}
.portrait .text-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}
@media (max-width: 767px) and (orientation: landscape) {
  .portrait .text-container {
    height: 120vh;
  }
}
.portrait .box-title {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1200px) {
  .portrait .box-title {
    height: auto;
  }
}
.portrait .box-title .heading-01 {
  color: #fff;
  margin: 6vh 0;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 3vh;
  font-weight: 400;
  font-family: "Love-regular";
  transform: translateY(0);
}
@media (min-width: 768px) {
  .portrait .box-title .heading-01 {
    font-size: 226px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .portrait .box-title .heading-01 {
    font-size: calc( 60px + (226 - 60) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (-webkit-device-pixel-ratio: 2) {
  .portrait .box-title .heading-01 {
    font-size: 60px;
  }
}
@media (-webkit-device-pixel-ratio: 2) and (min-width: 768px) {
  .portrait .box-title .heading-01 {
    font-size: 175px;
  }
}
@media (-webkit-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1400px) {
  .portrait .box-title .heading-01 {
    font-size: calc( 60px + (175 - 60) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .portrait .box-title .heading-01 {
    transform: translateY(-6vh);
  }
}
@media (min-width: 992px) {
  .portrait .box-title .heading-01 {
    line-height: 0.9;
  }
}
.portrait .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portrait .bottom .text {
  color: #c2a269;
  font-size: 18px;
  margin-bottom: 3vh;
  letter-spacing: 5px;
}
@media (min-width: 768px) {
  .portrait .bottom .text {
    font-size: 23px;
  }
}
.portrait .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .portrait .copy {
    flex-wrap: nowrap;
  }
}
.portrait .copy span {
  margin-right: 15px;
  margin-bottom: 15px;
}
.portrait .copy span:last-child {
  margin-right: 0;
}
.portrait .copy .story img {
  height: 16px;
}
.portrait .copy .kid img {
  height: 45px;
}
.portrait .copy .text {
  color: #a4a4a4;
  font-size: 10px;
  text-transform: uppercase;
  display: block;
  text-align: center;
}
@media (min-width: 992px) {
  .portrait .copy .text {
    display: inline-block;
    margin-top: 0;
  }
}
.portrait .c-image.img-one-container {
  position: absolute;
  top: 9%;
  left: 24px;
  width: 25%;
  height: auto;
  z-index: 0;
  opacity: 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  .portrait .c-image.img-one-container {
    top: 13%;
  }
}
@media (min-width: 992px) {
  .portrait .c-image.img-one-container {
    top: 15%;
    left: 17%;
    width: 10%;
  }
}
.portrait .img-one {
  width: 100%;
  height: auto;
  opacity: 0;
}
.portrait .c-image.img-two-container {
  position: absolute;
  top: 17%;
  left: 63%;
  width: 7%;
  height: auto;
  z-index: 0;
  opacity: 0;
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .portrait .c-image.img-two-container {
    top: 21%;
  }
}
@media (min-width: 992px) {
  .portrait .c-image.img-two-container {
    display: block;
  }
}
.portrait .img-two {
  width: 100%;
  height: auto;
  opacity: 0;
}
.portrait .c-image.img-three-container {
  position: absolute;
  top: 12%;
  left: 54%;
  width: 30%;
  height: auto;
  z-index: 0;
  opacity: 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  .portrait .c-image.img-three-container {
    top: 16%;
  }
}
@media (min-width: 992px) {
  .portrait .c-image.img-three-container {
    left: 67%;
    top: 15%;
    width: 10%;
  }
}
.portrait .img-three {
  width: 100%;
  height: auto;
  opacity: 0;
}
.portrait .c-image.img-four-container {
  position: absolute;
  top: 47%;
  left: 2%;
  width: 17%;
  height: auto;
  z-index: 0;
  opacity: 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  .portrait .c-image.img-four-container {
    top: 51%;
  }
}
.portrait .img-four {
  width: 100%;
  height: auto;
  opacity: 0;
}
.portrait .c-image.img-five-container {
  position: absolute;
  top: 42%;
  left: 80%;
  width: 14%;
  height: auto;
  z-index: 0;
  opacity: 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  .portrait .c-image.img-five-container {
    top: 51%;
  }
}
.portrait .img-five {
  width: 100%;
  height: auto;
  opacity: 0;
}

.introduction {
  position: relative;
  padding-top: 6vh;
}
.introduction .container {
  position: relative;
}
.introduction .box-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.introduction .box-text .tagname {
  color: #c2a269;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .introduction .box-text .tagname {
    font-size: 21px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .introduction .box-text .tagname {
    font-size: calc( 14px + (21 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.introduction .box-text audio {
  display: none;
}
.introduction .box-text .text {
  color: #fff;
  font-size: 22px;
  text-align: center;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 12vh 0;
  font-family: "Cormorant", Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
  .introduction .box-text .text {
    font-size: 58px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .introduction .box-text .text {
    font-size: calc( 22px + (58 - 22) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.introduction .box-text .text .word {
  opacity: 0.3;
}
.introduction .box-text .text br {
  display: none;
}
@media (min-width: 992px) {
  .introduction .box-text .text br {
    display: block;
  }
}
.introduction .box-text .copy {
  color: #c2a269;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .introduction .box-text .copy {
    font-size: 21px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .introduction .box-text .copy {
    font-size: calc( 14px + (21 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.introduction .img-container {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  width: 15%;
  display: none;
}
@media (min-width: 992px) {
  .introduction .img-container {
    display: block;
  }
}
.introduction .img-container img, .introduction .img-container video {
  width: 100%;
  height: auto;
}
.introduction .img-container.left {
  bottom: 10vh;
  left: 4vw;
}
.introduction .img-container.right {
  right: 4vw;
  top: 0;
}

.box-media-content {
  margin: 0 auto;
  margin-bottom: 5vh;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .box-media-content {
    margin-top: 5vh;
  }
}
.box-media-content .video-container {
  width: 100%;
  margin-top: 15vh;
  cursor: pointer;
  aspect-ratio: 4/5;
  -webkit-clip-path: polygon(20% 20%, 20% 80%, 80% 80%, 80% 20%);
          clip-path: polygon(20% 20%, 20% 80%, 80% 80%, 80% 20%);
  /* clip-path: polygon(10% 6%, 10% 94%, 94% 90%, 94% 6%); */
}
.box-media-content .video-container video {
  width: 100%;
}
.box-media-content .video-container video.mobile {
  display: block;
}
.box-media-content .video-container video.desktop {
  display: none;
}
@media (max-width: 767px) and (orientation: landscape) {
  .box-media-content .video-container {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 768px) {
  .box-media-content .video-container {
    aspect-ratio: 16/9;
  }
  .box-media-content .video-container video.mobile {
    display: none;
  }
  .box-media-content .video-container video.desktop {
    display: block;
  }
}
.box-media-content .wrapper-button {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin: 0 auto;
  cursor: pointer;
}
.box-media-content .wrapper-button .box-play-button {
  position: relative;
  width: 90px;
  height: 90px;
}
@media (min-width: 768px) {
  .box-media-content .wrapper-button .box-play-button {
    width: 180px;
    height: 180px;
  }
}
.box-media-content .wrapper-button .box-play-button .rotating {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.6;
  transform-origin: center;
  -webkit-animation: rotating 12s linear infinite;
  animation: rotating 12s linear infinite;
}
.box-media-content .wrapper-button .box-play-button .triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-37%, -50%, 0);
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  .box-media-content .wrapper-button .box-play-button .triangle {
    width: auto;
    height: auto;
  }
}

.slider-custom {
  padding: 8vh 0;
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .slider-custom {
    padding: 20vh 0;
  }
}
.slider-custom .wrapper-content {
  position: relative;
}
.slider-custom .box-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 6vh;
}
@media (min-width: 768px) {
  .slider-custom .box-text {
    margin-bottom: 14vh;
  }
}
.slider-custom .box-text .tagname {
  color: #c2a269;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .slider-custom .box-text .tagname {
    font-size: 23px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .slider-custom .box-text .tagname {
    font-size: calc( 16px + (23 - 16) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.slider-custom .box-text h1 {
  color: #fff;
  margin: 6vh 0;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 3vh;
  font-weight: 400;
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
  .slider-custom .box-text h1 {
    font-size: 226px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-custom .box-text h1 {
    font-size: calc( 60px + (226 - 60) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .slider-custom .box-text h1 {
    line-height: 0.9;
  }
}
.slider-custom .box-text .copy {
  color: #848484;
  line-height: 1.3;
  font-size: 14px;
}
@media (min-width: 768px) {
  .slider-custom .box-text .copy {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .slider-custom .box-text .copy {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.slider-custom .swiper-container {
  height: 100%;
  overflow: visible;
}
.slider-custom .swiper-container .swiper-wrapper {
  align-items: center;
  cursor: -webkit-grab;
  cursor: grab;
}
.slider-custom .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 992px) {
  .slider-custom .swiper-container .swiper-slide {
    flex-direction: inherit;
  }
}
.slider-custom .swiper-container .slider-controls {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 85px;
  align-items: center;
  margin-top: 10vh;
}
.slider-custom .swiper-container .slider-controls .buttons {
  display: flex;
  width: 15%;
  position: relative;
  justify-content: flex-end;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next,
.slider-custom .swiper-container .slider-controls .swiper-button-prev {
  position: relative;
  transition: opacity 0.4s ease-out;
  display: flex;
  width: 35%;
  max-width: 85px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  left: 0;
  margin-top: 0;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next .button,
.slider-custom .swiper-container .slider-controls .swiper-button-prev .button {
  width: 100%;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next .button svg,
.slider-custom .swiper-container .slider-controls .swiper-button-prev .button svg {
  width: 100%;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next .button .flecha path,
.slider-custom .swiper-container .slider-controls .swiper-button-prev .button .flecha path {
  z-index: 1;
  transition: all 0.4s ease-out;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next .button .trazo ellipse,
.slider-custom .swiper-container .slider-controls .swiper-button-prev .button .trazo ellipse {
  z-index: 0;
  transition: all 0.4s ease-out;
  fill: transparent;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next::after, .slider-custom .swiper-container .slider-controls .swiper-button-next::before,
.slider-custom .swiper-container .slider-controls .swiper-button-prev::after,
.slider-custom .swiper-container .slider-controls .swiper-button-prev::before {
  display: none;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next:hover .button .trazo ellipse,
.slider-custom .swiper-container .slider-controls .swiper-button-prev:hover .button .trazo ellipse {
  fill: #c2a269;
}
.slider-custom .swiper-container .slider-controls .swiper-button-next {
  transform-origin: center center;
  transform: rotate(180deg);
  margin-left: 10px;
}
.slider-custom .swiper-container .slider-controls .swiper-pagination {
  display: flex;
  width: 100%;
  height: 2px;
  background-color: #2e2e2e;
  position: relative;
}
.slider-custom .swiper-container .slider-controls .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #c2a269;
}
.slider-custom .block-case {
  width: 100%;
  padding: 0 9vw;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 992px) {
  .slider-custom .block-case {
    width: 80%;
    padding: 0;
  }
}
.slider-custom .block-case .text-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.slider-custom .block-case .text-container .position {
  color: #fff;
  font-size: 18px;
  z-index: 1;
}
.slider-custom .block-case .text-container .text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  z-index: 1;
  text-transform: uppercase;
}
.slider-custom .block-case img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
}

.gallery {
  padding: 12vh 0;
}
@media (min-width: 992px) {
  .gallery {
    padding: 20vh 0;
  }
}
.gallery .three-distortion {
  opacity: 0;
}
.gallery .box-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 6vh;
}
@media (min-width: 768px) {
  .gallery .box-text {
    margin-bottom: 14vh;
  }
}
.gallery .box-text .tagname {
  color: #c2a269;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .gallery .box-text .tagname {
    font-size: 23px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .gallery .box-text .tagname {
    font-size: calc( 16px + (23 - 16) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
.gallery .box-text h1 {
  color: #fff;
  margin: 6vh 0;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 3vh;
  font-weight: 400;
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
  .gallery .box-text h1 {
    font-size: 226px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .gallery .box-text h1 {
    font-size: calc( 60px + (226 - 60) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .gallery .box-text h1 {
    line-height: 0.9;
  }
}
.gallery .box-text .copy {
  color: #dadada;
  line-height: 1.2;
  font-size: 14px;
}
@media (min-width: 768px) {
  .gallery .box-text .copy {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .gallery .box-text .copy {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.gallery .gallery-container-desktop {
  position: relative;
  height: 235vh;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .gallery .gallery-container-desktop {
    display: block;
  }
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop {
    height: 815vh;
    max-height: 7642px;
  }
}
.gallery .gallery-container-desktop .img-container {
  position: absolute;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.gallery .gallery-container-desktop .img-container img {
  width: 100%;
}
.gallery .gallery-container-desktop .img-container.img1 {
  width: 73%;
  top: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img1 {
    left: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img2 {
  width: 57%;
  top: 9%;
  right: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img2 {
    right: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img3 {
  width: 31%;
  top: 16%;
  left: 0;
  z-index: 2;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img3 {
    left: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img4 {
  width: 83%;
  top: 22%;
  right: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img4 {
    right: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img5 {
  width: 43%;
  top: 37%;
  left: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img5 {
    left: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img6 {
  width: 31%;
  top: 36%;
  right: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img6 {
    right: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img7 {
  width: 76%;
  top: 49%;
  right: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img7 {
    right: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img8 {
  width: 31%;
  top: 58%;
  left: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img8 {
    left: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img9 {
  width: 50%;
  top: 63%;
  right: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img9 {
    right: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img10 {
  width: 87%;
  top: 74%;
  left: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img10 {
    left: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img11 {
  width: 38%;
  top: 85%;
  right: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img11 {
    right: 0;
  }
}
.gallery .gallery-container-desktop .img-container.img12 {
  width: 46%;
  top: 93%;
  left: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.img12 {
    left: 0;
  }
}
.gallery .gallery-container-desktop .img-container.text-img {
  width: 43%;
  left: 47%;
  top: 19%;
  z-index: 2;
  display: none;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.text-img {
    display: block;
  }
}
.gallery .gallery-container-desktop .img-container.text-img2 {
  width: 10%;
  left: 9%;
  top: 44%;
  z-index: 2;
  display: none;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.text-img2 {
    display: block;
  }
}
.gallery .gallery-container-desktop .img-container.text-img3 {
  width: 34%;
  left: 14%;
  top: 88%;
  z-index: 2;
  display: none;
}
@media (min-width: 992px) {
  .gallery .gallery-container-desktop .img-container.text-img3 {
    left: 20%;
    display: block;
  }
}
.gallery .gallery-container-mobile {
  position: relative;
  height: 350vh;
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  .gallery .gallery-container-mobile {
    display: block;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .gallery .gallery-container-mobile {
    height: 1200vh;
    padding-bottom: 30vh;
  }
}
.gallery .gallery-container-mobile .img-container {
  position: absolute;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.gallery .gallery-container-mobile .img-container img {
  width: 100%;
}
.gallery .gallery-container-mobile .img-container.img1 {
  width: 100%;
  top: 0;
  z-index: 0;
}
.gallery .gallery-container-mobile .img-container.img2 {
  width: 47%;
  top: 12%;
  right: 0;
  z-index: 1;
}
.gallery .gallery-container-mobile .img-container.img3 {
  width: 47%;
  top: 15%;
  left: 0;
  z-index: 2;
}
.gallery .gallery-container-mobile .img-container.img4 {
  width: 100%;
  top: 27%;
  right: 0;
  z-index: 0;
}
.gallery .gallery-container-mobile .img-container.img5 {
  width: 50%;
  top: 38%;
  left: 0;
  z-index: 1;
}
.gallery .gallery-container-mobile .img-container.img6 {
  width: 42%;
  top: 42%;
  right: 0;
  z-index: 0;
}
.gallery .gallery-container-mobile .img-container.img7 {
  width: 100%;
  top: 54%;
  right: 0;
  z-index: 0;
}
.gallery .gallery-container-mobile .img-container.img8 {
  width: 44%;
  top: 65%;
  right: 0;
  z-index: 1;
}
.gallery .gallery-container-mobile .img-container.img9 {
  width: 50%;
  top: 68%;
  left: 0;
  z-index: 0;
}
.gallery .gallery-container-mobile .img-container.img10 {
  width: 100%;
  top: 79%;
  left: 0;
  z-index: 0;
}
.gallery .gallery-container-mobile .img-container.img11 {
  width: 50%;
  top: 90%;
  left: 0;
  z-index: 1;
}
.gallery .gallery-container-mobile .img-container.img12 {
  width: 44%;
  top: 94%;
  right: 0;
  z-index: 0;
}

.slider-products-white {
  padding: 12vh 0;
  width: 100%;
  position: relative;
  background-color: #fff;
}
@media (min-width: 992px) {
  .slider-products-white {
    padding: 20vh 0;
  }
}
.slider-products-white .wrapper-content {
  position: relative;
}
.slider-products-white .box-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 2vh;
}
@media (min-width: 992px) {
  .slider-products-white .box-text {
    margin-bottom: 10vh;
  }
}
.slider-products-white .box-text .tagname {
  color: #c2a269;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .slider-products-white .box-text .tagname {
    font-size: 23px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-products-white .box-text .tagname {
    font-size: calc( 16px + (23 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.slider-products-white .box-text h1 {
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  margin-top: 3vh;
  margin-bottom: 0;
  font-weight: 400;
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
  -webkit-text-stroke: 1px #000;
}
@media (min-width: 768px) {
  .slider-products-white .box-text h1 {
    font-size: 226px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-products-white .box-text h1 {
    font-size: calc( 40px + (226 - 40) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .slider-products-white .box-text h1 {
    line-height: 0.9;
    -webkit-text-stroke: 2px #000;
    margin-top: 6vh;
    margin-bottom: 3vh;
    text-stroke: 2px #000;
  }
}
.slider-products-white .box-text .copy {
  color: #dadada;
  font-size: 14px;
}
@media (min-width: 768px) {
  .slider-products-white .box-text .copy {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-products-white .box-text .copy {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.slider-products-white .swiper-container {
  height: 100%;
  overflow: hidden;
}
.slider-products-white .swiper-container .swiper-wrapper {
  align-items: center;
}
.slider-products-white .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 992px) {
  .slider-products-white .swiper-container .swiper-slide {
    flex-direction: inherit;
  }
}
.slider-products-white .swiper-container .swiper-slide-active .block-case {
  transform: scale(1);
}
.slider-products-white .swiper-container .swiper-slide-active .block-case .text-container {
  opacity: 1;
}
.slider-products-white .swiper-container .slider-controls {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin-top: 6vh;
  flex-direction: column;
}
@media (min-width: 992px) {
  .slider-products-white .swiper-container .slider-controls {
    flex-direction: row;
    height: 85px;
  }
}
.slider-products-white .swiper-container .slider-controls .buttons {
  display: flex;
  width: 45%;
  position: relative;
  justify-content: center;
  margin-top: 4vh;
}
@media (min-width: 992px) {
  .slider-products-white .swiper-container .slider-controls .buttons {
    justify-content: flex-end;
    width: 15%;
    margin-top: 0;
  }
}
.slider-products-white .swiper-container .slider-controls .swiper-button-next,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev {
  position: relative;
  transition: opacity 0.4s ease-out;
  display: flex;
  width: 35%;
  max-width: 85px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  left: 0;
  margin-top: 0;
}
.slider-products-white .swiper-container .slider-controls .swiper-button-next .button,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev .button {
  width: 100%;
}
.slider-products-white .swiper-container .slider-controls .swiper-button-next .button svg,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev .button svg {
  width: 100%;
}
.slider-products-white .swiper-container .slider-controls .swiper-button-next .button .flecha path,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev .button .flecha path {
  z-index: 1;
  transition: all 0.4s ease-out;
}
.slider-products-white .swiper-container .slider-controls .swiper-button-next .button .trazo ellipse,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev .button .trazo ellipse {
  z-index: 0;
  transition: all 0.4s ease-out;
  fill: transparent;
}
.slider-products-white .swiper-container .slider-controls .swiper-button-next::after, .slider-products-white .swiper-container .slider-controls .swiper-button-next::before,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev::after,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev::before {
  display: none;
}
@media (min-width: 992px) {
  .slider-products-white .swiper-container .slider-controls .swiper-button-next:hover .button .trazo ellipse,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev:hover .button .trazo ellipse {
    fill: #c2a269;
  }
  .slider-products-white .swiper-container .slider-controls .swiper-button-next:hover .button path,
.slider-products-white .swiper-container .slider-controls .swiper-button-prev:hover .button path {
    stroke: #fff;
  }
}
.slider-products-white .swiper-container .slider-controls .swiper-button-next {
  transform-origin: center center;
  transform: rotate(180deg);
  margin-left: 10px;
}
.slider-products-white .swiper-container .slider-controls .swiper-pagination {
  display: flex;
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  position: relative;
}
@media (min-width: 768px) {
  .slider-products-white .swiper-container .slider-controls .swiper-pagination {
    width: 85%;
  }
}
.slider-products-white .swiper-container .slider-controls .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #c2a269;
}
.slider-products-white .block-case {
  width: 100%;
  margin: 0 auto;
  position: relative;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .slider-products-white .block-case {
    padding: 0;
  }
}
.slider-products-white .block-case .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1vh;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.slider-products-white .block-case .text-container .position {
  color: #8c8c8c;
  font-size: 14px;
  z-index: 1;
  margin-bottom: 20px;
}
.slider-products-white .block-case .text-container .text {
  color: #353532;
  font-size: 25px;
  font-family: "Cormorant";
  font-weight: 400;
  z-index: 1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .slider-products-white .block-case .text-container .text {
    font-size: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-products-white .block-case .text-container .text {
    font-size: calc( 25px + (35 - 25) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.slider-products-white .block-case .text-container .button {
  padding: 12px 34px;
  border: 2px solid #c2a269;
  margin-top: 40px;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  color: #c2a269;
  font-size: 13px;
}
@media (min-width: 768px) {
  .slider-products-white .block-case .text-container .button {
    font-size: 14px;
    padding: 15px 40px;
  }
}
.slider-products-white .block-case .text-container .button a {
  font-size: 14px;
  font-weight: 500;
  color: #c2a269;
  transition: all 0.4s ease-in-out;
}
.slider-products-white .block-case .text-container .button:hover {
  background-color: #c2a269;
  color: #fff;
}
.slider-products-white .block-case img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.c-scrollbar.playing {
  display: none;
}

.interactive-movie {
  position: absolute;
  top: -120vh;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: all;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1000;
}
.interactive-movie .rotation-warning {
  position: absolute;
  z-index: 100;
  background-color: #000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.interactive-movie .rotation-warning.active {
  display: flex;
}
.interactive-movie .rotation-warning svg {
  width: 50%;
  max-height: 80vh;
}
.interactive-movie .controls {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 80;
  pointer-events: none;
  opacity: 0;
}
.interactive-movie .controls .pause-button {
  position: absolute;
  bottom: 25px;
  left: 27px;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
@media (min-width: 1200px) {
  .interactive-movie .controls .pause-button {
    left: calc(8% + 5px);
    bottom: 11%;
    width: 35px;
    height: 35px;
  }
}
.interactive-movie .controls .pause-button svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: invert(1);
}
.interactive-movie .controls .pause-button .play {
  display: none;
}
.interactive-movie .controls .pause-button.paused .pause {
  display: none;
}
.interactive-movie .controls .pause-button.paused .play {
  display: block;
}
.interactive-movie .controls .exit-button {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .interactive-movie .controls .exit-button {
    right: 8%;
    top: 11%;
    width: 50px;
    height: 50px;
  }
}
.interactive-movie .controls .exit-button #Elipse_135 {
  fill: transparent;
  transition: all 0.3s ease-in-out;
}
.interactive-movie .controls .exit-button line {
  stroke: #888;
  transition: all 0.3s ease-in-out;
}
.interactive-movie .controls .exit-button:hover #Elipse_135 {
  fill: #fff;
  stroke: #fff;
}
.interactive-movie .controls .exit-button:hover line {
  stroke: #000;
}
.interactive-movie .controls .interactive-zones {
  position: absolute;
  top: 25px;
  left: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .interactive-movie .controls .interactive-zones {
    display: none;
  }
}
html[data-os=iOS] .interactive-movie .controls .interactive-zones {
  display: none;
}
html[data-device=mobile] .interactive-movie .controls .interactive-zones, html[data-device=tablet] .interactive-movie .controls .interactive-zones {
  display: none;
}
@media (min-width: 1200px) {
  .interactive-movie .controls .interactive-zones {
    left: 8%;
    top: 11%;
  }
}
.interactive-movie .controls .interactive-zones .point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #fff;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}
.interactive-movie .controls .interactive-zones .point.desactive {
  border: 1px solid #999;
  background-color: #999;
}
.interactive-movie .controls .interactive-zones .point.desactive div {
  background: #999;
}
.interactive-movie .controls .interactive-zones .point.desactive::before {
  border: 0.1px solid #999;
}
.interactive-movie .controls .interactive-zones .point div {
  background: #fff;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.interactive-movie .controls .interactive-zones .point div img {
  transition: opacity 0.5s ease-in-out;
}
.interactive-movie .controls .interactive-zones .point div img:first-of-type {
  height: 46%;
}
.interactive-movie .controls .interactive-zones .point div img:last-of-type {
  height: 15%;
}
.interactive-movie .controls .interactive-zones .point::before {
  content: "";
  z-index: 1;
  position: absolute;
  border-radius: 50%;
  border: 0.1px solid #fff;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  -webkit-animation: 2s ease 0s infinite normal none running pulse-animation;
          animation: 2s ease 0s infinite normal none running pulse-animation;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
.interactive-movie .controls .interactive-zones span {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .interactive-movie .controls .interactive-zones span {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .interactive-movie .controls .interactive-zones span {
    font-size: calc( 11px + (18 - 11) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.interactive-movie .controls .fullscreen-toggle {
  position: absolute;
  bottom: 25px;
  right: 25px;
  cursor: pointer;
  pointer-events: all;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .interactive-movie .controls .fullscreen-toggle {
    right: calc(8% + 10px);
    bottom: 11%;
    width: 28px;
    height: 28px;
  }
}
.interactive-movie .controls .fullscreen-toggle:hover svg {
  transform: scale(1.1);
}
.interactive-movie .controls .fullscreen-toggle svg {
  width: 100%;
  height: 100%;
  display: none;
  transition: transform 0.1s ease-out;
}
.interactive-movie .controls .fullscreen-toggle svg.fs-open {
  display: block;
}
.interactive-movie .controls .fullscreen-toggle svg.fs-close {
  width: 80%;
  height: 80%;
}
.interactive-movie .controls .fullscreen-toggle svg.fs-close path {
  stroke-width: 2;
}
.interactive-movie .controls .fullscreen-toggle.full svg {
  display: block;
}
.interactive-movie .controls .fullscreen-toggle.full svg.fs-open {
  display: none;
}
.interactive-movie .track {
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 80;
  pointer-events: none;
  display: none;
}
.interactive-movie .track.active {
  display: block;
}
.interactive-movie .track .track-point {
  opacity: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #fff;
  z-index: 10000;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: width 1.5s ease-in-out, height 1.5s ease-in-out;
  pointer-events: none;
}
.interactive-movie .track .track-point.active {
  width: 8000px;
  height: 8000px;
  border: none;
}
.interactive-movie .track .track-point.active div {
  width: 100%;
  height: 100%;
}
.interactive-movie .track .track-point.active div * {
  opacity: 0;
}
.interactive-movie .track .track-point.active::before {
  display: none;
}
.interactive-movie .track .track-point.changing {
  pointer-events: none;
  border: none;
}
.interactive-movie .track .track-point.changing::before {
  display: none;
}
.interactive-movie .track .track-point:not(.active) {
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.interactive-movie .track .track-point:not(.active) div img {
  opacity: 0;
}
.interactive-movie .track .track-point:not(.active):hover {
  width: 200px;
  height: 200px;
}
.interactive-movie .track .track-point:not(.active):hover div {
  width: 200px;
  height: 200px;
}
.interactive-movie .track .track-point:not(.active):hover div img {
  opacity: 1;
}
.interactive-movie .track .track-point:not(.active):hover::before {
  display: none;
}
.interactive-movie .track .track-point div {
  background: #fff;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.interactive-movie .track .track-point div img {
  transition: opacity 0.5s ease-in-out;
}
.interactive-movie .track .track-point div img:first-of-type {
  height: 46%;
}
.interactive-movie .track .track-point div img:last-of-type {
  height: 15%;
}
.interactive-movie .track .track-point::before {
  content: "";
  z-index: 1;
  position: absolute;
  border-radius: 50%;
  border: 0.1px solid white;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  -webkit-animation: 2s ease 0s infinite normal none running pulse-animation;
          animation: 2s ease 0s infinite normal none running pulse-animation;
  transform: translate(-50%, -50%);
}
@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
.interactive-movie .notifications {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.interactive-movie .notifications .prepare-to-decide {
  width: 16%;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.interactive-movie .notifications .prepare-to-decide svg {
  width: 50px;
}
@media (min-width: 768px) {
  .interactive-movie .notifications .prepare-to-decide svg {
    width: 66px;
    margin-bottom: 20px;
  }
}
.interactive-movie .notifications .prepare-to-decide p {
  text-align: center;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 13px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .interactive-movie .notifications .prepare-to-decide p {
    font-size: 18px;
    padding: 18px;
    line-height: 1.6;
  }
}
.interactive-movie .notifications .prepare-to-decide p span {
  color: #fff;
}
.interactive-movie .notifications .prepare-to-decide p span:last-of-type {
  color: #bebebe;
}
.interactive-movie .notifications .prepare-to-decide p .prepare-to-decide-time {
  vertical-align: baseline;
  color: #fff !important;
}
.interactive-movie .xray {
  position: absolute;
  width: 415px;
  max-width: 25%;
  height: 55%;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
  opacity: 0;
  z-index: 80;
  pointer-events: none;
  display: none;
}
html[data-os=iOS] .interactive-movie .xray {
  pointer-events: none;
  display: none;
}
@media (max-width: 767px) {
  .interactive-movie .xray {
    display: none;
    pointer-events: none;
  }
}
html[data-device=mobile] .interactive-movie .xray, html[data-device=tablet] .interactive-movie .xray {
  display: none;
  pointer-events: none;
}
.interactive-movie .xray.active {
  display: block;
}
html[data-os=iOS] .interactive-movie .xray.active {
  pointer-events: none;
  display: none;
}
.interactive-movie .xray .xray-slider {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  overflow: hidden;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide {
  opacity: 0;
  display: none;
}
@media (min-width: 768px) {
  .interactive-movie .xray .xray-slider .xray-container .swiper-slide {
    display: block;
  }
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  aspect-ratio: 16/4;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card * {
  pointer-events: none;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-photo-container {
  width: 34%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-photo-container .xray-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 66%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  padding-left: 8%;
  position: relative;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-title span {
  display: block;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-title .xray-category {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-title .xray-category {
    font-size: 10px;
  }
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-title .xray-name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 9px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-title .xray-name {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-title .xray-name {
    font-size: calc( 9px + (20 - 9) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-view-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-view-more span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 5px;
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-view-more span {
    font-size: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-view-more span {
    font-size: calc( 5px + (10 - 5) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 1200px) {
  .interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-view-more {
    margin-right: 5%;
  }
}
.interactive-movie .xray .xray-slider .xray-container .swiper-slide .xray-card .xray-info .xray-view-more svg {
  width: 14%;
}
.interactive-movie .xray .xray-bar {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  pointer-events: all;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
}
.interactive-movie .xray .xray-bar .bar-container {
  height: 80%;
  width: 1px;
  background-color: #747474;
  position: relative;
}
.interactive-movie .xray .xray-bar .bar-container .bar {
  width: 100%;
  height: 27%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.interactive-movie .xray .xray-bar svg {
  height: 2vh;
  cursor: pointer;
  transform: translateY(100%);
}
.interactive-movie .xray .xray-bar .xray-arrow-up {
  transform: rotate(180deg) translateY(100%);
}
.interactive-movie .modal-box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
}
.interactive-movie .modal-box .container-full {
  height: 100%;
}
.interactive-movie .modal-box .container-full .container {
  height: 100%;
  display: block;
  padding-left: 5vw;
  padding-right: 5vw;
}
.interactive-movie .modal-box .container-full .container .modalbox-title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  order: 2;
  -webkit-text-stroke: medium;
  padding: 6vh 0;
  order: unset;
  margin-left: 0;
  /* &::before {
    content: "";
    background-color: #c8c8c8;
    width: 24px;
    height: 1px;
    position: absolute;
    top: 70%;
    left: 2px;

    @include respond-to("LG") {
      display: none;
    }
  } */
}
.interactive-movie .modal-box .container-full .container .modalbox-title h1 {
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 400;
  color: #c2a269;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .interactive-movie .modal-box .container-full .container .modalbox-title h1 {
    font-size: 119px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .interactive-movie .modal-box .container-full .container .modalbox-title h1 {
    font-size: calc( 27px + (119 - 27) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.interactive-movie .modal-box .container-full .container .modalbox-title .exit-modal {
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 79px;
  height: 79px;
}
.interactive-movie .modal-box .container-full .container .modalbox-title .exit-modal path {
  transition: all 0.4s ease-in-out;
}
.interactive-movie .modal-box .container-full .container .modalbox-title .exit-modal circle {
  fill: transparent;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .interactive-movie .modal-box .container-full .container .modalbox-title .exit-modal:hover circle {
    fill: #c2a269;
  }
  .interactive-movie .modal-box .container-full .container .modalbox-title .exit-modal:hover path {
    stroke: #fff;
  }
}
.interactive-movie .modal-box .container-full .container .swiper {
  order: unset;
  height: 27%;
  width: 100%;
  overflow: hidden;
}
.interactive-movie .modal-box .container-full .container .swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
.interactive-movie .modal-box .container-full .container .swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-height: 331px;
  max-width: 588px;
}
.interactive-movie .modal-box .container-full .container .lower-bar {
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 5%;
  margin-top: 4vh;
  display: flex;
}
.interactive-movie .modal-box .container-full .container .lower-bar .slider-progress-bar-wrapper {
  width: 73%;
  height: 2px;
  background-color: #cccccc;
  opacity: 0.66;
  order: 1;
}
@media (min-width: 768px) {
  .interactive-movie .modal-box .container-full .container .lower-bar .slider-progress-bar-wrapper {
    order: 2;
    width: 73%;
  }
}
@media (min-width: 1200px) {
  .interactive-movie .modal-box .container-full .container .lower-bar .slider-progress-bar-wrapper {
    width: 83%;
  }
}
.interactive-movie .modal-box .container-full .container .lower-bar .slider-progress-bar-wrapper .slider-progress-bar {
  width: 50%;
  height: 100%;
  background-color: #c2a269;
}
.interactive-movie .modal-box .container-full .container .lower-bar .slider-buttons {
  display: flex;
  flex-direction: row;
  order: 3;
}
.interactive-movie .modal-box .container-full .container .lower-bar .slider-buttons svg {
  cursor: pointer;
}
.interactive-movie .modal-box .container-full .container .lower-bar .slider-buttons svg:first-of-type {
  margin-right: 14px;
}
.interactive-movie .modal-box .container-full .container .lower-bar .slider-buttons svg ellipse {
  fill: transparent;
  transition: all 0.4s ease-in-out;
}
.interactive-movie .modal-box .container-full .container .lower-bar .slider-buttons svg g path {
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .interactive-movie .modal-box .container-full .container .lower-bar .slider-buttons svg:hover ellipse {
    fill: #c2a269;
  }
  .interactive-movie .modal-box .container-full .container .lower-bar .slider-buttons svg:hover g path {
    stroke: #fff;
  }
}
.interactive-movie .modal-box .container-full .container .modal-info {
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  order: 3;
  display: flex;
  margin-top: 4vh;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-title span {
  display: block;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-title .product-subtitle {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .interactive-movie .modal-box .container-full .container .modal-info .modal-title .product-subtitle {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .interactive-movie .modal-box .container-full .container .modal-info .modal-title .product-subtitle {
    font-size: calc( 12px + (15 - 12) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-title .product-title {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 44px;
  color: #353532;
  text-transform: uppercase;
  font-family: "Cormorant", Arial, Helvetica, sans-serif;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .interactive-movie .modal-box .container-full .container .modal-info .modal-title .product-title {
    font-size: 64px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .interactive-movie .modal-box .container-full .container .modal-info .modal-title .product-title {
    font-size: calc( 44px + (64 - 44) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip {
  position: relative;
  display: block;
  padding-left: 16%;
  align-items: center;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip p {
  padding-top: 1vw;
  margin-bottom: 2vw;
  max-width: 337px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 1.6;
  text-align: left;
  padding: 0;
  line-height: 1.6;
  margin-bottom: 2vw;
  max-width: 492px;
}
@media (min-width: 768px) {
  .interactive-movie .modal-box .container-full .container .modal-info .modal-descrip p {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .interactive-movie .modal-box .container-full .container .modal-info .modal-descrip p {
    font-size: calc( 12px + (18 - 12) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip .shop-now {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #c2a269;
  padding: 12px 24px;
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 0.2s ease-out;
  text-decoration: none;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip .shop-now:hover {
  background-color: #c2a269;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip .shop-now:hover span {
  color: #fff;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip .shop-now:hover path {
  stroke: #fff;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip .shop-now span {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #c2a269;
  transition: all 0.2s ease-out;
}
.interactive-movie .modal-box .container-full .container .modal-info .modal-descrip .shop-now svg {
  margin-left: 10px;
  transition: all 0.4s ease-out;
}
.interactive-movie .videos-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  background-color: #000;
}
.interactive-movie .videos-container video {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: 100%;
  display: none;
  pointer-events: none;
}
.interactive-movie .videos-container video:first-of-type {
  display: block;
}
.interactive-movie .options {
  position: absolute;
  z-index: 85;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  min-height: 80px;
  background: #000;
  transform: translateY(100%);
}
.interactive-movie .options .choose-label {
  position: absolute;
  font-size: 10px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .interactive-movie .options .choose-label {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .interactive-movie .options .choose-label {
    font-size: calc( 10px + (15 - 10) * (( 100vw - 768px ) / (1600 - 768)) );
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .interactive-movie .options .choose-label {
    display: none;
  }
}
.interactive-movie .options .time-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.interactive-movie .options .time-bar .time-bar-progress {
  background-color: #fff;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.interactive-movie .options .options-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}
.interactive-movie .options .options-container .option {
  height: 1em;
  color: #fff;
  font-size: 20px;
  font-family: "Cormorant", Arial, Helvetica, sans-serif;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: all;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease-out;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .interactive-movie .options .options-container .option {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .interactive-movie .options .options-container .option {
    font-size: calc( 20px + (40 - 20) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.interactive-movie .options .options-container .option.not-selected {
  opacity: 0.3;
  pointer-events: none;
}
.interactive-movie .options .options-container .option.selected {
  color: #c2a269;
}
.interactive-movie .options .options-container .option.selected::before {
  opacity: 1;
}
.interactive-movie .options .options-container .option:hover {
  color: #c2a269;
}

/*
@import "app/section/home.works";
@import "app/section/home.about";
@import "app/section/home.bbo";
@import "app/section/home.quote";
@import "app/section/home.brands";
@import "app/section/home.instagram";
@import "app/section/home.gotoabout"; */
.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.opened .wrapper-logo svg path {
  fill: #fff !important;
}
.navigation-bar.opened .burger-button .fill {
  background-color: #fff !important;
}
.navigation-bar.opened .wrapper-copyright span {
  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 .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;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .burger-button {
    right: auto;
  }
}
.navigation-bar .nav-modules .burger-button .content {
  position: relative;
  height: 16px;
  width: 100%;
}
.navigation-bar .nav-modules .burger-button .content .bar {
  position: absolute;
  left: 0;
  width: 100%;
  transform-origin: right center;
  transition: background-color 0.3s ease-out;
}
.navigation-bar .nav-modules .burger-button .content .bar .fill {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.3s ease-out;
  will-change: transform;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .burger-button .content .bar .fill {
    background-color: var(--nav-burguer-color);
  }
}
.navigation-bar .nav-modules .burger-button .content .bar.top {
  top: 0;
}
.navigation-bar .nav-modules .burger-button .content .bar.middle {
  top: 50%;
  margin-top: -0.5px;
}
.navigation-bar .nav-modules .burger-button .content .bar.bottom {
  bottom: -2px;
}
.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-bar .nav-fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.navigation-bar .nav-fullscreen-menu .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0d0d0d;
  z-index: 1;
  pointer-events: none;
}
.navigation-bar .nav-fullscreen-menu .container-frame {
  height: 100%;
}
.navigation-bar .nav-fullscreen-menu .container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
  transform: translateX(-120vw);
}
.navigation-bar .nav-fullscreen-menu .container .navigation {
  position: relative;
  z-index: 98;
  width: 100%;
  height: 33%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  margin-top: 135px;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .navigation {
    height: 100%;
    margin-top: 0;
  }
}
.navigation-bar .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) {
  .navigation-bar .nav-fullscreen-menu .container .navigation .list {
    flex-direction: row;
    height: auto;
    align-items: center;
  }
}
.navigation-bar .nav-fullscreen-menu .container .navigation .list li {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.navigation-bar .nav-fullscreen-menu .container .navigation .list li a {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .navigation-bar .nav-fullscreen-menu .container .navigation .list li a {
    font-size: 75px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .navigation-bar .nav-fullscreen-menu .container .navigation .list li a {
    font-size: calc( 36px + (75 - 36) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .navigation .list li a {
    opacity: 0.4;
  }
}
.navigation-bar .nav-fullscreen-menu .container .navigation .list li a:hover {
  opacity: 1;
}
.navigation-bar .nav-fullscreen-menu .container .navigation .list li.active a {
  opacity: 1;
}
@media (min-width: 1200px) {
  .navigation-bar .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) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container {
    padding: 0;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #999;
  pointer-events: all;
  margin-top: 70px;
  position: relative;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub {
    flex-direction: column;
    font-size: 18px;
    flex-direction: row;
    padding-top: 50px;
    margin-bottom: 50px;
  }
}
.navigation-bar .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) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .border-top {
    display: block;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container {
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container {
    display: block;
  }
}
.navigation-bar .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) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright {
    display: flex;
    font-size: 18px;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright span {
  display: none;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright span {
    display: block;
    margin: 0 5px;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright br {
  display: block;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .copyright-container .copyright br {
    display: none;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 5vh;
  width: 40%;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list {
    justify-content: space-between;
    margin-bottom: 0;
    flex-direction: row;
    width: 20%;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list.mobile {
  display: flex;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list.mobile {
    display: none;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .title-container {
  overflow: hidden;
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .title-container .title {
  color: #fff;
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Gilroy-Medium";
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .title-container .title {
    display: none;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container {
  overflow: hidden;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container {
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container a {
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  padding: 3px 0;
  color: #999;
  display: block;
}
.navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container a:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-fullscreen-menu .container .nav-sub-container .nav-sub .list .link .a-container a {
    margin-bottom: 0;
    font-size: 18px;
  }
}
.navigation-bar .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) {
  .navigation-bar .nav-fullscreen-menu .wrapper-images {
    display: block;
  }
}
.navigation-bar .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);
}
.navigation-bar .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);
}
.navigation-bar .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;
}

.navigation-menu {
  position: fixed;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1630px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  pointer-events: none;
}
.navigation-menu .logo-container {
  position: relative;
  z-index: 9;
  pointer-events: all;
}
.navigation-menu .logo-container span {
  cursor: pointer;
}
@media (min-width: 1600px) {
  .navigation-menu {
    padding: 0 60px;
    max-width: none;
  }
}
.navigation-menu .desktop {
  display: none;
}
@media (min-width: 992px) {
  .navigation-menu .desktop {
    display: block;
  }
}
.navigation-menu .mobile {
  display: block;
}
@media (min-width: 992px) {
  .navigation-menu .mobile {
    display: none;
  }
}
.navigation-menu .text {
  color: #888;
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 8;
  transform: translateX(-50%);
  width: auto;
  text-align: center;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  height: 28px;
  pointer-events: none;
  display: none;
}
@media (min-width: 992px) {
  .navigation-menu .text {
    display: flex;
    font-size: 15px;
    height: auto;
    letter-spacing: 2px;
    margin-top: 2px;
  }
}
.navigation-menu .nav-links {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  display: none;
  position: relative;
  z-index: 9;
  pointer-events: all;
}
@media (min-width: 992px) {
  .navigation-menu .nav-links {
    display: block;
  }
}
.navigation-menu .nav-links li {
  overflow: hidden;
  margin-bottom: 15px;
}
.navigation-menu .nav-links li:last-child {
  margin-bottom: 0;
}
.navigation-menu .nav-links li .item {
  display: inline-block;
  color: #888;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transform: translate3d(0, 20px, 0);
  transition: all 0.45s ease-out;
}
.navigation-menu .nav-links li .item:hover {
  color: #fff;
  transform: translate3d(6px, 20px, 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;
}
@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;
}
.navigation-menu .burger-button .content .bar .fill {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.3s ease-out;
  will-change: transform;
}
@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: -1px;
}

.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: #0d0d0d;
  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);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0d0d0d;
  overflow: auto;
}
.nav-fullscreen-menu .container .navigation {
  position: relative;
  z-index: 98;
  width: 100%;
  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;
  margin-bottom: 20px;
}
.nav-fullscreen-menu .container .navigation .list li:last-child {
  margin-bottom: 0;
}
.nav-fullscreen-menu .container .navigation .list li a {
  display: block;
  font-size: 47px;
  font-weight: 600;
  color: #fff;
  opacity: 1;
  pointer-events: all;
  font-weight: 400;
  font-family: "Love-regular";
  -webkit-text-stroke: 1px #fff;
}
@media (min-width: 1200px) {
  .nav-fullscreen-menu .container .navigation .list li a {
    opacity: 0.4;
  }
}
.nav-fullscreen-menu .container .navigation .list li a:hover {
  opacity: 1;
}
.nav-fullscreen-menu .container .navigation .list li.active a {
  opacity: 1;
}
.nav-fullscreen-menu .container .sub-container {
  margin-bottom: 50px;
  width: 100%;
}
.nav-fullscreen-menu .container .sub-container .copy {
  font-size: 12px;
  color: #fff;
  margin-top: 45px;
  line-height: 6px;
}
.nav-fullscreen-menu .container .sub-container .sign {
  font-size: 12px;
  color: #999999;
  margin-top: 14px;
  line-height: 6px;
}
.nav-fullscreen-menu .container .sub-container .sign a {
  vertical-align: baseline;
  transition: color 0.35s ease-out;
  color: #ccc;
}
.nav-fullscreen-menu .container .sub-container .sign a:hover {
  color: #fff;
}

.heading-01 {
  font-weight: 400;
  font-size: 36px;
  font-family: "Love-regular";
}
@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: 14px;
}
@media (min-width: 768px) {
  .heading-06 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-06 {
    font-size: calc( 14px + (18 - 14) * (( 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: 99999;
  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: #fff;
  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: #fff;
  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%);
  background-color: #fff;
  width: 0;
  height: 0;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
#pointer .wrapper-play {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  height: 130px;
  width: 130px;
}
#pointer .wrapper-play span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}
#pointer .wrapper-play svg {
  transform: rotate(-90deg);
  width: 130px;
  height: 130px;
}
#pointer .text {
  position: absolute;
  left: 50%;
  width: 200px;
  text-align: center;
  letter-spacing: 0;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
#pointer .text span {
  position: relative;
  background: transparent;
  padding: 5px 8px;
  white-space: nowrap;
}
#pointer.hide .main-circle {
  opacity: 0 !important;
}
#pointer.hide .arrows {
  display: none !important;
}
#pointer.on-play-video .main-circle {
  transition: all 0.3s;
  opacity: 0;
  width: 0;
  height: 0;
}
#pointer.on-play-video .wrapper-play {
  opacity: 1;
}
#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: 1;
  width: 100px;
  height: 100px;
}
#pointer.active-with-text .main-circle .inner-text span {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  opacity: 1;
}
#pointer.active-with-text.black .main-circle {
  background: #000;
}
#pointer.active-with-text.black .main-circle .inner-text span {
  color: #fff;
}
#pointer.drag .arrows {
  width: 80px;
  opacity: 1;
  transition-delay: 0.2s;
  width: 140px;
  transform: scale(1) translate(-50%, -50%);
  left: 50%;
}
#pointer.drag .draggable {
  opacity: 0;
  width: 100px;
  height: 100px;
}
#pointer.drag.black .arrows svg path {
  fill: #000;
}
#pointer.display-text .text {
  opacity: 1;
}
#pointer.display-text.on-hover .text {
  bottom: 0;
}
#pointer.hide:not(.on-hover) .text, #pointer.drag .text {
  opacity: 1;
}

#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;
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.contact-global-button {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 89;
}
@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: #c2a269;
}

.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: #c2a269;
  border-radius: 50%;
  -webkit-animation: 3s cubic-bezier(0.37, 0.01, 0, 0.98) infinite wheel-up-down;
  animation: 2s cubic-bezier(0.37, 0.01, 0, 0.98) infinite wheel-up-down;
}

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: -70px;
    opacity: 0;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    margin-top: 35px;
    opacity: 0;
  }
}

@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: -webkit-fit-content;
  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: -webkit-fit-content;
  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: -webkit-fit-content;
  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: #0d0d0d;
}
.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: #c2a269;
  stroke: #c2a269;
}
.button-secondary.dark-btn:hover .icon .arrow {
  stroke: #fff;
}

.container-magnetic {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.button-simple {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 5px 0;
  overflow: hidden;
}
.button-simple span {
  color: #0d0d0d;
  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: #c2a269;
}
.button-simple.red:hover span {
  color: #c2a269;
}
.button-simple.active {
  color: #c2a269 !important;
}
.button-simple.active:after {
  transform: scaleX(1);
  transform-origin: left;
  background: #c2a269;
}

.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: #0d0d0d;
  z-index: -1;
}

.wrapper-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.wrapper-loading .wrapper-preloader {
  position: absolute;
  z-index: 998;
  height: 100%;
  width: 100%;
  background-color: #000;
  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:hover .logo__container svg {
  transform: scale(1.1);
}
.wrapper-loading .wrapper-preloader .box-preloader .logo__container {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate3d(-50%, -50%, 0);
}
.wrapper-loading .wrapper-preloader .box-preloader .logo__container svg {
  height: 50vh;
  max-width: 80vw;
  transform: rotate(-90deg);
  transition: all 0.45s ease-out;
}
.wrapper-loading .wrapper-preloader .box-preloader .counter {
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .wrapper-loading .wrapper-preloader .box-preloader .counter {
    font-size: 142px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .wrapper-loading .wrapper-preloader .box-preloader .counter {
    font-size: calc( 42px + (142 - 42) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .box-click {
  font-family: "Love-regular", Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #888;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: color 0.45s ease-out;
}
@media (min-width: 768px) {
  .wrapper-loading .wrapper-preloader .box-preloader .box-click {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .wrapper-loading .wrapper-preloader .box-preloader .box-click {
    font-size: calc( 42px + (100 - 42) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .box-click:hover {
  color: #FFF;
}
.wrapper-loading .wrapper-preloader .box-preloader .copyright {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #b1b1b1;
  position: absolute;
  left: 0;
  bottom: 4vh;
  width: 100%;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 1px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .wrapper-loading .wrapper-preloader .box-preloader .copyright {
    display: none;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .brand {
  position: absolute;
  left: 0;
  top: 4vh;
  width: 100%;
  text-align: center;
}
.wrapper-loading .wrapper-preloader .box-preloader .brand img {
  height: 20px;
}
@media (max-width: 767px) and (orientation: landscape) {
  .wrapper-loading .wrapper-preloader .box-preloader .brand {
    display: none;
  }
}

.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: -webkit-fit-content;
  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: #0d0d0d;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #0d0d0d;
  /* 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: #0d0d0d;
  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: "Gilroy-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: #0d0d0d;
  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: #0d0d0d;
  z-index: -1;
}

.g-noise {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.3;
  overflow: hidden;
}
.g-noise:after {
  content: "";
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url(../images/design/grain.946637.webp);
  background-position: 50%;
  position: absolute;
  left: -10rem;
  top: -10rem;
  will-change: transform;
  -webkit-animation: noise 1s steps(2) infinite;
  animation: noise 1s steps(2) infinite;
}

@-webkit-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);
  }
}
@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: 600;
  font-family: "Gilroy-semibold";
  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: "Gilroy-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: -webkit-fit-content;
  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;
}

.whatsapp-box {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 40px;
  padding: 12px 0;
  border-radius: 50px;
  background-color: #c2a269;
  z-index: 1;
}
@media (min-width: 768px) {
  .whatsapp-box {
    left: auto;
    right: 30px;
    transform: translateX(0);
  }
}
.whatsapp-box .box a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-box .box a .text-container {
  overflow: hidden;
  width: 0;
}
.whatsapp-box .box a .text-container .text {
  padding-left: 10px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .whatsapp-box .box a {
    font-size: 15px;
  }
}

html {
  overflow: hidden;
}

body {
  position: fixed;
  width: 100%;
  height: 100%;
}
