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

/* Padding Section */
@font-face {
  font-family: "SF-Pro-Display-Regular";
  src: url(../fonts/SF-Pro-Display-Regular.0fba62.woff) format("woff"), url(../fonts/SF-Pro-Display-Regular.9e4e70.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Medium";
  src: url(../fonts/SF-Pro-Display-Medium.9c8952.woff) format("woff"), url(../fonts/SF-Pro-Display-Medium.bc7935.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Semibold";
  src: url(../fonts/SF-Pro-Display-Semibold.6fce9e.woff) format("woff"), url(../fonts/SF-Pro-Display-Semibold.907a87.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Bold";
  src: url(../fonts/SF-Pro-Display-Bold.07dc15.woff) format("woff"), url(../fonts/SF-Pro-Display-Bold.895bfb.woff2) format("woff2");
  font-weight: 700;
  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;
  touch-action: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

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

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

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

html {
  *overflow: hidden;
}

html,
body {
  height: 100%;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

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-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: #ff003e;
  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 */
.navigation-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  pointer-events: none;
}
.navigation-bar.solid, .navigation-bar.solid-default {
  fill: #000 !important;
}
.navigation-bar.solid .burger-button .fill, .navigation-bar.solid-default .burger-button .fill {
  background-color: #000 !important;
}
.navigation-bar .nav-modules {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 35px 30px;
}
@media (min-width: 992px) {
  .navigation-bar .nav-modules {
    padding: 3% 5%;
  }
}
.navigation-bar .nav-modules * {
  pointer-events: all;
}
.navigation-bar .nav-modules .wrapper-logo {
  color: transparent;
  font-size: 0px;
  width: 100%;
  max-width: 110px;
  z-index: 99999999;
}
@media (min-width: 992px) {
  .navigation-bar .nav-modules .wrapper-logo {
    max-width: 130px;
  }
}
.navigation-bar .nav-modules .wrapper-logo svg {
  width: 100%;
  height: auto;
}
.navigation-bar .nav-modules .right-modules {
  z-index: 99;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.navigation-bar .nav-modules .right-modules .country-selector {
  margin-right: 30px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  pointer-events: all;
}
.navigation-bar .nav-modules .right-modules .burger-button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
  position: relative;
  height: 16px;
  width: 30px;
  max-width: 30px;
}
.navigation-bar .nav-modules .right-modules .burger-button.closed div:nth-of-type(3) {
  width: 15px;
  transition: width 0.3s ease-in-out;
  margin-bottom: 0;
}
.navigation-bar .nav-modules .right-modules .burger-button.closed:hover div:nth-of-type(3) {
  width: 30px;
}
.navigation-bar .nav-modules .right-modules .burger-button div {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
}
.navigation-bar .nav-modules .right-modules .burger-button div:nth-of-type(1) {
  top: 0;
}
.navigation-bar .nav-modules .right-modules .burger-button div:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.navigation-bar .nav-modules .right-modules .burger-button div:nth-of-type(3) {
  bottom: 0;
}
.navigation-bar.opened .burger-button .fill {
  background-color: #fff !important;
}
.navigation-bar.opened .country-selector {
  opacity: 0 !important;
  pointer-events: none !important;
}
.navigation-bar.opened .country-selector span {
  pointer-events: none !important;
}
.navigation-bar.opened .nav-fullscreen-menu {
  opacity: 1;
  pointer-events: all;
}
.navigation-bar .nav-fullscreen-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: black;
  pointer-events: none;
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navigation-bar .nav-fullscreen-menu .menu-list {
  width: 100%;
  height: 80%;
  z-index: 9 !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .menu-list {
    height: 100%;
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20vh;
  width: 100%;
  z-index: 10;
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.navigation-bar .nav-fullscreen-menu .menu-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20vh;
  width: 100%;
  z-index: 10;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.navigation-bar .nav-fullscreen-menu .menu-list .images-container {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  width: 30vw;
  height: auto;
  overflow: hidden;
  z-index: 0;
  display: none;
  pointer-events: none;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .images-container {
    display: block;
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list .images-container img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.navigation-bar .nav-fullscreen-menu .menu-list .images-container img:first-child {
  position: relative;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list {
  text-align: left;
  color: #fff;
  z-index: 9;
  position: relative;
  width: 100%;
  height: 100%;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform-origin: center center;
  padding: 3vh 0;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section {
    padding: 6vh 0;
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .container-info {
  padding-left: 11.7%;
  position: relative;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section:first-of-type {
  opacity: 1;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .sold-out {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eebf37;
  padding: 4px 10px;
  font-size: 11px;
  font-family: "SF-Pro-Display-Bold", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #000;
}
@media (min-width: 768px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .sold-out {
    padding: 7px 20px;
    font-size: 18px;
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .title-animation {
  -webkit-clip-path: polygon(0% 0%, 130% 0%, 130% 130%, 0% 130%);
          clip-path: polygon(0% 0%, 130% 0%, 130% 130%, 0% 130%);
  margin-left: 0 !important;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .item {
  font-size: 36px;
  display: inline-block;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: transparent;
  color: #fff;
  font-family: "SF-Pro-Display-Medium", A;
  font-weight: 500;
  padding-top: 2vh;
  cursor: pointer;
}
@media (min-width: 768px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .item {
    font-size: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .item {
    font-size: calc(
      36px + (130 - 36) * ((
              100vw - 768px
            ) / (1920 - 768))
    );
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .item:hover {
  color: #eebf37;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .item {
    white-space: nowrap;
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .subtitle {
  white-space: nowrap;
  font-family: "SF-Pro-Display-Medium";
  font-weight: 500;
  font-size: 16px;
  color: #cccccc;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container {
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 15px;
  position: relative;
  opacity: 0;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .left-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  margin-left: 0;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .date {
  font-size: 26px;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
  margin-left: 0;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .date {
    margin-bottom: 10px;
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .date .line,
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .date .word,
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .date .char {
  margin-left: 0 !important;
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .location {
  font-size: 14px;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #cccccc;
  margin-left: 0;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .location {
    font-size: 18px;
  }
}
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .location .line,
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .location .word,
.navigation-bar .nav-fullscreen-menu .menu-list .menu-text-list .menu-text-list-container .menu-text-list-section .data-container .location .char {
  margin-left: 0 !important;
}
.navigation-bar .nav-fullscreen-menu .social-media {
  position: absolute;
  bottom: 35px;
  left: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  z-index: 999999;
  font-size: 14px;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .social-media {
    left: 5%;
    bottom: 5%;
    flex-direction: column;
  }
}
.navigation-bar .nav-fullscreen-menu .social-media a {
  margin-right: 15px;
  height: 20px;
  width: 20px;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .social-media a {
    margin-bottom: 20px;
    height: 21px;
    width: 21px;
  }
}
.navigation-bar .nav-fullscreen-menu .social-media a svg {
  height: 100%;
  width: 100%;
}
.navigation-bar .nav-fullscreen-menu .social-media a svg path {
  transition: all 0.4s ease-in-out;
}
.navigation-bar .nav-fullscreen-menu .social-media a:hover svg path {
  fill: #eebf37;
}
.navigation-bar .nav-fullscreen-menu .sign {
  position: absolute;
  bottom: 35px;
  right: 30px;
  display: block;
  color: #fff;
  z-index: 999999;
  font-size: 12px;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .sign {
    right: 5%;
    bottom: 5%;
    transform-origin: center center;
    transform: rotate(180deg);
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    font-size: 14px;
  }
}
.navigation-bar .nav-fullscreen-menu .sign a {
  color: #eebf37;
  vertical-align: baseline;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .sign a {
    -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
  }
}
.navigation-bar .nav-fullscreen-menu .sign span {
  display: inline-flex;
  color: #eebf37;
}
@media (min-width: 992px) {
  .navigation-bar .nav-fullscreen-menu .sign span {
    transform: translateX(-6px) rotate(90deg);
    transform-origin: center center;
  }
}
.navigation-bar .country-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999999999;
  top: 0;
  right: 0;
  background-color: #fff;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  pointer-events: all;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .navigation-bar .country-nav {
    max-width: 333px;
  }
}
.navigation-bar .country-nav.open {
  transform: translateX(0);
}
.navigation-bar .country-nav .navigation {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}
.navigation-bar .country-nav .navigation .close-button {
  cursor: pointer;
  pointer-events: all;
  z-index: 9999;
}
.navigation-bar .country-nav .countries {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.navigation-bar .country-nav .countries .country-item {
  color: #000;
  font-size: 16px;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.navigation-bar .country-nav .countries .country-item:first-child {
  border-top: 1px solid #cccccc;
}
@media (min-width: 992px) {
  .navigation-bar .country-nav .countries .country-item {
    font-size: 20px;
  }
}
.navigation-bar .country-nav .countries .country-item img {
  display: none;
  height: 16px;
  width: 16px;
}
@media (min-width: 992px) {
  .navigation-bar .country-nav .countries .country-item img {
    width: 20px;
    height: 20px;
  }
}
.navigation-bar .country-nav .countries .country-item.active img {
  display: block;
}

#pointer {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 88888;
  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%);
}
#pointer .draggable svg {
  width: 0;
  height: 0;
  transition: all 0.3s ease-in-out;
}
#pointer .about-cursor {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-25%, -25%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#pointer .about-cursor .about-cursor-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
}
#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;
}
#pointer .wrapper-play span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "SF-Pro-Display-Regular";
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}
#pointer .wrapper-play svg {
  transform: rotate(-90deg);
}
#pointer .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  color: #fff;
  font-family: "Gotham-Medium", Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0;
  transition: all 0.3s;
  transform: translateX(-50%);
  opacity: 0;
}
#pointer .text span {
  position: relative;
  background: #111;
  padding: 5px 8px;
  white-space: nowrap;
}
#pointer.on-play-video .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.about .main-circle {
  opacity: 0;
}
#pointer.about .about-cursor {
  opacity: 1;
}
#pointer.about .about-cursor .about-cursor-text {
  -webkit-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
}
@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#pointer.hide .main-circle {
  opacity: 0;
}
#pointer.active .main-circle {
  transition: all 0.3s;
  opacity: 0.5;
  width: 70px;
  height: 70px;
}
#pointer.active-with-text .main-circle {
  transition: all 0.3s;
  opacity: 1;
  width: 130px;
  height: 130px;
}
#pointer.active-with-text .main-circle .inner-text span {
  color: #000;
  opacity: 1;
  font-size: 14px;
  font-family: "SF-Pro-Display-Medium";
  font-weight: 500;
  max-width: 60%;
}
#pointer.drag .main-circle {
  width: 0;
  height: 0;
}
#pointer.drag .draggable svg {
  width: 100%;
  height: 100%;
}
#pointer.display-text .text {
  opacity: 1;
  bottom: 20px;
}
#pointer.display-text.on-hover .text {
  bottom: 0;
}
#pointer.hide:not(.on-hover) .text, #pointer.drag .text {
  opacity: 0;
  bottom: 10px;
  transition-delay: 0s;
}

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

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

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

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.slider-webGL-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: left;
  align-items: left;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.slider-webGL-container .all-list {
  width: 100%;
  height: 100%;
  z-index: 9 !important;
  position: relative;
}
.slider-webGL-container .all-list .text-list {
  text-align: left;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-webGL-container .all-list .text-list .text-list-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .container-info {
  padding: 0 30px;
  position: relative;
}
@media (min-width: 768px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .container-info {
    padding: 0 11.7%;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section:first-of-type {
  opacity: 1;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .sold-out {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eebf37;
  padding: 4px 10px;
  font-size: 11px;
  font-family: "SF-Pro-Display-Bold", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #000;
  margin-bottom: 2vh;
  display: block;
}
@media (min-width: 992px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .sold-out {
    padding: 7px 20px;
    font-size: 18px;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .title-animation {
  -webkit-clip-path: polygon(0% 0%, 130% 0%, 130% 130%, 0% 130%);
          clip-path: polygon(0% 0%, 130% 0%, 130% 130%, 0% 130%);
  margin-left: 0 !important;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .item {
  font-size: 45px;
  display: inline-block;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 2px;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding-top: 2vh;
  width: 100%;
  max-width: 80%;
}
@media (min-width: 768px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .item {
    font-size: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .item {
    font-size: calc(
      45px + (130 - 45) * ((
              100vw - 768px
            ) / (1920 - 768))
    );
  }
}
@media (min-width: 1600px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .item {
    white-space: nowrap;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .subtitle {
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #cccccc;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .subtitle {
    font-size: 16px;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container {
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 15px;
  position: relative;
  width: 100%;
  max-width: 80%;
  pointer-events: none;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .left-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  margin-left: 0;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .date {
  font-size: 18px;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  margin-left: 0;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .date {
    font-size: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .date {
    font-size: calc(
      18px + (26 - 18) * ((
              100vw - 768px
            ) / (1920 - 768))
    );
  }
}
@media (min-width: 768px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .date {
    margin-bottom: 10px;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .date .line,
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .date .word,
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .date .char {
  margin-left: 0 !important;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .location {
  font-size: 15px;
  font-size: 15px;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #cccccc;
  margin-left: 0;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .location {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .location {
    font-size: calc(
      15px + (18 - 15) * ((
              100vw - 768px
            ) / (1920 - 768))
    );
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .location .line,
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .location .word,
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .data-container .location .char {
  margin-left: 0 !important;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .sponsors-container {
  position: absolute;
  padding: 0 30px 8vh 30px;
  left: 0;
  bottom: 0%;
  height: 100%;
  width: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .sponsors-container .marquee {
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 16%, black 86%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 16%, black 86%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 768px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .sponsors-container {
    left: 11.7%;
    padding: 0;
    padding-bottom: 8vh;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .link {
  padding-bottom: 8px;
  border-bottom: 2px solid #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 10%;
  pointer-events: all;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .link span {
  color: #fff;
  font-size: 12px;
  font-family: "SF-Pro-Display-Regular", Arial, Helvetica, sans-serif;
  font-weight: 400;
  white-space: nowrap;
  padding-right: 8px;
  margin: 0;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .link svg {
  margin: 0;
}
@media (min-width: 992px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .link {
    display: none;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .button-secondary {
  position: relative;
  display: flex;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  padding: 12px 30px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  border-color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-style: normal;
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
  cursor: pointer;
  border-radius: 100px;
  overflow: hidden;
  pointer-events: all;
  white-space: nowrap;
  font-family: "SF-Pro-Display-Medium";
  font-weight: 500;
  margin-top: 6vh;
}
@media (min-width: 768px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .button-secondary {
    font-size: 15px;
    padding: 18px 35px;
  }
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .button-secondary:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #eebf37;
  transform: scale(0, 1);
  transform-origin: right center;
  border-radius: 100px;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .button-secondary:hover {
  outline: 0;
  color: #000;
  background-color: transparent;
  border-color: #eebf37;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .button-secondary:hover .fill {
  fill: #eebf37;
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .button-secondary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.slider-webGL-container .all-list .text-list .text-list-container .text-list-section .link-hidden {
  position: absolute;
  left: 0;
  bottom: 0%;
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: all;
  cursor: pointer;
  display: none;
}
@media (min-width: 992px) {
  .slider-webGL-container .all-list .text-list .text-list-container .text-list-section .link-hidden {
    display: block;
  }
}

.g-video-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  background-color: #000;
}
.g-video-scene.active {
  pointer-events: all;
}
.g-video-scene .controls {
  left: 6.25vw;
  right: 6.25vw;
  bottom: 6.25vw;
  height: 1.042vw;
  z-index: 10;
  color: white;
  position: absolute;
  line-height: 1.042vw;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.g-video-scene .controls .play {
  left: 0;
  height: 100%;
  cursor: pointer;
  font-weight: 600;
  font-family: "SF-Pro-Display-Regular";
  letter-spacing: 1px;
}
.g-video-scene .controls .timeline {
  top: 0;
  left: 7.5vw;
  right: 7.5vw;
  height: 100%;
  position: absolute;
}
.g-video-scene .controls .timeline::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  position: absolute;
  z-index: 11;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}
.g-video-scene .controls .timeline label {
  color: transparent;
  font-size: 0px;
}
.g-video-scene .controls .timeline label .range {
  left: 0;
  right: 0;
  top: 50%;
  z-index: 3;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transform: translateY(-50%);
  margin: 0;
  position: absolute;
  background: none;
}
.g-video-scene .controls .timeline label .range::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.g-video-scene .controls .timeline label .range:focus {
  outline: none;
}
.g-video-scene .controls .timeline label .range::-webkit-slider-thumb {
  width: 0.347vw;
  height: 0.347vw;
  cursor: pointer;
  background: #fcf6f4;
  border-radius: 1vw;
  -webkit-appearance: none;
}
.g-video-scene .controls .timeline label .range::-moz-range-thumb {
  width: 0.347vw;
  height: 0.347vw;
  cursor: pointer;
  background: #fcf6f4;
  border-radius: 1vw;
}
.g-video-scene .controls .timeline label .range::-ms-thumb {
  width: 0.347vw;
  height: 0.347vw;
  cursor: pointer;
  background: #fcf6f4;
  border-radius: 1vw;
}
.g-video-scene .controls .timeline .progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  position: absolute;
  pointer-events: none;
  transform: translateY(-50%);
  height: 2px;
}
.g-video-scene .controls .timeline .progress::-webkit-progress-bar {
  background: transparent;
}
.g-video-scene .controls .timeline .progress::-webkit-progress-value {
  background: #fcf6f4;
}
.g-video-scene .controls .timeline .timer {
  width: 0;
  left: -1.5%;
  top: 1.5vw;
  text-align: center;
  font-size: 0.833vw;
  position: absolute;
}
.g-video-scene .controls .close {
  right: 0;
  text-align: right;
  height: 100%;
  cursor: pointer;
  font-weight: 600;
  font-family: "SF-Pro-Display-Regular";
  letter-spacing: 1px;
}
.g-video-scene .cc-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  z-index: 10;
}
.g-video-scene .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 9;
}
@media (min-width: 992px) {
  .g-video-scene .video {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.wrapper-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: all;
}
.wrapper-loading .wrapper-preloader {
  position: absolute;
  z-index: 998;
  height: 100%;
  width: 100%;
  background-color: #050505;
  *background-color: red;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  *border: 2px solid red;
}
.wrapper-loading .wrapper-preloader .box-preloader {
  display: inline-block;
  padding-top: 0;
  text-align: center;
}
.wrapper-loading .wrapper-preloader .box-preloader .logo {
  position: relative;
  width: 160px;
  margin: 0 auto;
}
.wrapper-loading .wrapper-preloader .box-preloader .logo svg {
  height: auto;
  width: 100%;
  z-index: 0;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container {
  width: 260px;
  margin: 3vh auto;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .bar {
  width: 0%;
  height: 100%;
  background-color: #eebf37;
  margin: 0 auto;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress__siteby {
  font-size: 13px;
  font-weight: 400;
  color: #a1a1a1;
  font-family: "SF-Pro-Display-Regular", Arial, Helvetica, sans-serif;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress__siteby span {
  opacity: 0;
}

.prev-and-next {
  position: relative;
  padding: 20vh 0 0 0;
}
@media (min-width: 992px) {
  .prev-and-next {
    padding: 20vh 0;
  }
}
.prev-and-next .bg-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
}
.prev-and-next .wrapper-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.prev-and-next .wrapper-container video {
  pointer-events: none;
  width: 100%;
}
@media (min-width: 992px) {
  .prev-and-next .wrapper-container video {
    width: 25vw;
    height: 32vw;
  }
}
.prev-and-next .wrapper-container .project-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.prev-and-next .wrapper-container .project-title .tagname {
  color: #fff;
  font-size: 16px;
  font-family: "SF-Pro-Display-Regular";
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .prev-and-next .wrapper-container .project-title .tagname {
    font-size: 20px;
  }
}
.prev-and-next .wrapper-container .project-title .title {
  color: #fff;
  font-size: 25px;
  font-family: "SF-Pro-Display-Medium";
  font-weight: 400;
  font-size: 72px;
  white-space: nowrap;
  margin: 40px 0 70px 0;
}
@media (min-width: 768px) {
  .prev-and-next .wrapper-container .project-title .title {
    font-size: 146px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .prev-and-next .wrapper-container .project-title .title {
    font-size: calc(
      72px + (146 - 72) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}
.prev-and-next .wrapper-container .project-title .title.allp {
  font-size: 60px;
}
@media (min-width: 768px) {
  .prev-and-next .wrapper-container .project-title .title.allp {
    font-size: 146px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .prev-and-next .wrapper-container .project-title .title.allp {
    font-size: calc(
      60px + (146 - 60) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}
.prev-and-next .wrapper-container .project-title .button-simple {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 1600px) {
  .c-scrollbar {
    display: none;
  }
}

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

.scroll-hint {
  position: absolute;
  top: 0;
  left: 5%;
  height: 100vh;
  width: 50%;
  z-index: 10;
  pointer-events: none;
  display: none;
}
@media (min-width: 1600px) {
  .scroll-hint {
    display: block;
  }
}
.scroll-hint .scroll-hint-wrapper {
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 6vw;
  height: 6vw;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.scroll-hint .scroll-hint-wrapper.clickable {
  pointer-events: all;
}
.scroll-hint .scroll-hint-wrapper .circle-text {
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  width: 100%;
  height: 100%;
}
.scroll-hint .scroll-hint-wrapper .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background-color: #fff;
  border-radius: 100%;
}
.scroll-hint .scroll-hint-wrapper .arrow .progress-mask {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
          clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.scroll-hint .scroll-hint-wrapper .arrow .progress-mask .progress {
  width: 100%;
  height: 100%;
  background-color: #454545;
}
.scroll-hint .scroll-hint-wrapper .arrow .progress-mask .progress svg {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: invert(100%);
}
.scroll-hint .scroll-hint-wrapper .arrow svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mask-img-wrapper {
  overflow: hidden;
}

.title-word-wrapper {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow: hidden;
}

.webGL-container {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.webGL-container canvas {
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.6;
}
.webGL-container canvas img,
.webGL-container canvas video {
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateY(101%);
  z-index: 99999;
  pointer-events: all;
  display: flex;
  padding-top: 20vh;
}
@media (min-width: 992px) {
  .modal {
    align-items: flex-end;
    padding-top: 0;
  }
}
.modal .close-button {
  position: fixed;
  top: 35px;
  right: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media (min-width: 992px) {
  .modal .close-button {
    top: 7.3%;
    right: 5%;
  }
}
.modal .close-button svg {
  height: 25px;
  width: 25px;
}
.modal .modal-container {
  width: 100%;
  padding-left: 11.7%;
  padding-right: 11.7%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .modal .modal-container {
    max-width: 80%;
    padding-right: 0;
  }
}
.modal .modal-container .subtitle {
  font-size: 12px;
  color: #000;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .modal .modal-container .subtitle {
    font-size: 20px;
  }
}
.modal .modal-container .title {
  font-size: 38px;
  color: #000;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin: 20px 0 60px 0;
}
@media (min-width: 768px) {
  .modal .modal-container .title {
    font-size: 131px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .modal .modal-container .title {
    font-size: calc(
      38px + (131 - 38) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}
.modal .modal-container .dates-container {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: auto;
  padding-bottom: 6vh;
  cursor: s-resize;
  /* width */
  /* Track */
  /* Handle */
}
@media (min-width: 992px) {
  .modal .modal-container .dates-container {
    height: 50vh;
    max-width: 80%;
    padding-right: 50px;
  }
}
.modal .modal-container .dates-container::-webkit-scrollbar {
  width: 3px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.modal .modal-container .dates-container::-webkit-scrollbar-track {
  background-color: #cccccc;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.modal .modal-container .dates-container::-webkit-scrollbar-thumb {
  background-color: #000;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.modal .modal-container .dates-container .date-content {
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.modal .modal-container .dates-container .date-content:first-child {
  border-top: 1px solid #ccc;
}
.modal .modal-container .dates-container .date-content.template {
  display: none;
}
.modal .modal-container .dates-container .date-content p {
  color: #000;
  font-size: 25px;
  font-family: "SF-Pro-Display-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media (min-width: 992px) {
  .modal .modal-container .dates-container .date-content p {
    font-size: 28px;
  }
}
.modal .modal-container .dates-container .date-content p span {
  font-size: 16px;
  color: #888888;
  margin-top: 10px;
  display: block;
}
.modal .modal-container .dates-container .date-content .button-secondary {
  position: relative;
  display: flex;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 100%;
  text-transform: uppercase;
  font-size: 12px;
  color: #000;
  border-color: #000;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-style: normal;
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
  cursor: pointer;
  overflow: hidden;
  pointer-events: all;
  white-space: nowrap;
  font-family: "SF-Pro-Display-Medium";
  font-weight: 500;
}
@media (min-width: 992px) {
  .modal .modal-container .dates-container .date-content .button-secondary {
    min-width: 200px;
    font-size: 15px;
    padding: 18px 35px;
    border-radius: 100px;
  }
}
.modal .modal-container .dates-container .date-content .button-secondary:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scale(0, 1);
  transform-origin: right center;
  border-radius: 100px;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.modal .modal-container .dates-container .date-content .button-secondary span {
  display: none;
}
@media (min-width: 992px) {
  .modal .modal-container .dates-container .date-content .button-secondary span {
    display: block;
  }
}
.modal .modal-container .dates-container .date-content .button-secondary svg {
  height: 15px;
  width: 15px;
}
@media (min-width: 992px) {
  .modal .modal-container .dates-container .date-content .button-secondary svg {
    display: none;
  }
}
.modal .modal-container .dates-container .date-content .button-secondary svg path {
  transition: all 0.4s ease-in-out;
}
.modal .modal-container .dates-container .date-content .button-secondary:hover {
  outline: 0;
  color: #fff;
  background-color: transparent;
}
.modal .modal-container .dates-container .date-content .button-secondary:hover svg path {
  stroke: #fff;
}
.modal .modal-container .dates-container .date-content .button-secondary:hover .fill {
  fill: #000;
}
.modal .modal-container .dates-container .date-content .button-secondary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.modal .modal-container .dates-container .date-content .sold-out-tag {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e0274a;
  padding: 7px 10px;
  font-size: 12px;
  font-family: "SF-Pro-Display-Medium";
  font-weight: 500;
  color: #fff;
  display: block;
  width: 100%;
  max-width: 120px;
  text-align: center;
}
@media (min-width: 992px) {
  .modal .modal-container .dates-container .date-content .sold-out-tag {
    padding: 7px 20px;
    font-size: 18px;
    max-width: 180px;
  }
}
.modal .modal-container .dates-container .date-content .nueva-funcion-tag {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eebf37;
  padding: 7px 10px;
  font-size: 12px;
  font-family: "SF-Pro-Display-Medium";
  font-weight: 500;
  color: #000;
  display: block;
  width: 100%;
  max-width: 120px;
  text-align: center;
}
@media (min-width: 992px) {
  .modal .modal-container .dates-container .date-content .nueva-funcion-tag {
    padding: 7px 20px;
    font-size: 18px;
    max-width: 180px;
  }
}

.marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
  position: relative;
  overflow: hidden;
  margin-left: 0 !important;
  width: 100%;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .marquee {
    max-width: 400px;
  }
}
.marquee span {
  display: block;
  margin-left: 0 !important;
  opacity: 1 !important;
}
.marquee span img {
  margin: 0 15px !important;
  height: 50px;
  width: auto;
}
@media (min-width: 992px) {
  .marquee span img {
    height: 75px;
  }
}
.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;
}

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

.home-main {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.hidden-link {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  opacity: 0;
  display: none;
}
@media (min-width: 992px) {
  .hidden-link {
    display: block;
  }
}

.progress-bar {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}
.progress-bar .arrow-progress {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 100%;
  transform: translateY(-100%);
}
.progress-bar .arrow-progress.down {
  top: 100%;
  bottom: 0;
  transform: translateY(0%);
}
.progress-bar .arrow-progress.down img {
  top: 0;
  bottom: 100%;
}
.progress-bar .arrow-progress img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.progress-bar .bar-container {
  height: 150px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.progress-bar .bar-container.up {
  -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 0px, 0% 0px);
          clip-path: polygon(0px 0px, 100% 0px, 100% 0px, 0% 0px);
}
.progress-bar .bar-container.down {
  -webkit-clip-path: polygon(0px 44px, 100% 44px, 100% 100%, 0% 100%);
          clip-path: polygon(0px 44px, 100% 44px, 100% 100%, 0% 100%);
}
.progress-bar .bar-container .bar-wrapper {
  width: 100%;
  height: 0;
  background-color: #ccc;
}
.progress-bar .invisible-bar {
  width: 2px;
  height: 150px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.progress-bar .counter-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.progress-bar .counter-container .counter {
  color: #fff;
  font-weight: 700;
  font-family: "SF-Pro-Display-Regular";
  font-size: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 100;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
}
.progress-bar .counter-container .counter .current {
  width: 13px;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
  margin-bottom: 4px;
}

footer {
  background-color: #050505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
@media (min-width: 992px) {
  footer {
    height: 100vh;
  }
}
footer .container-full .container {
  position: relative;
}
footer .container-full .container span {
  display: block;
  text-align: center;
}
footer .container-full .container .footer-phrase {
  font-family: "SF-Pro-Display-Regular";
  font-weight: 400;
  font-size: 20px;
  color: #717171;
}
@media (min-width: 768px) {
  footer .container-full .container .footer-phrase {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  footer .container-full .container .footer-phrase {
    font-size: calc(
      20px + (24 - 20) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}
footer .container-full .container h1 {
  font-family: "SF-Pro-Display-Medium";
  font-weight: 400;
  font-size: 80px;
  color: #fff;
  text-align: center;
  padding-bottom: 4%;
  padding-top: 4%;
}
@media (min-width: 768px) {
  footer .container-full .container h1 {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  footer .container-full .container h1 {
    font-size: calc(
      80px + (160 - 80) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}
footer .container-full .container .address {
  padding-bottom: 1em;
  color: #717171;
}
footer .container-full .container .phone {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  padding-bottom: 10px;
  transition: opacity 0.25s ease-out;
  color: #fff;
}
@media (min-width: 992px) {
  footer .container-full .container .phone {
    opacity: 0.5;
  }
}
footer .container-full .container .phone:hover {
  opacity: 1;
}
footer .container-full .container .phone:hover .phone-bar-mask .phone-bar {
  width: 100%;
}
footer .container-full .container .phone .phone-bar-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
footer .container-full .container .phone .phone-bar-mask .phone-bar {
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: width 0.25s ease-out;
}
footer .container-full .container .address,
footer .container-full .container .phone {
  font-family: "SF-Pro-Display-Regular";
  font-weight: 500;
  font-size: 20px;
}
@media (min-width: 768px) {
  footer .container-full .container .address,
footer .container-full .container .phone {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  footer .container-full .container .address,
footer .container-full .container .phone {
    font-size: calc(
      20px + (24 - 20) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}
footer .container-full .container .email {
  font-family: "SF-Pro-Display-Medium";
  font-weight: 400;
  font-size: 45px;
  color: #fff;
  margin-top: 6%;
  margin-bottom: 8.5%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: opacity 0.25s ease-out;
}
@media (min-width: 768px) {
  footer .container-full .container .email {
    font-size: 91px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  footer .container-full .container .email {
    font-size: calc(
      45px + (91 - 45) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}
@media (min-width: 992px) {
  footer .container-full .container .email {
    opacity: 0.5;
  }
}
footer .container-full .container .email:hover {
  opacity: 1;
}
footer .container-full .container .email:hover .email-bar-mask .email-bar {
  width: 100%;
}
footer .container-full .container .email .email-bar-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
footer .container-full .container .email .email-bar-mask .email-bar {
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: width 0.25s ease-out;
}
footer .container-full .container .footer-legal {
  font-family: "SF-Pro-Display-Regular";
  font-weight: 400;
  font-size: 13px;
  color: #717171;
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  footer .container-full .container .footer-legal {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  footer .container-full .container .footer-legal {
    font-size: calc(
      13px + (18 - 13) * ((
              100vw - 768px
            ) / (1400 - 768))
    );
  }
}

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: 1733px;
  margin: 0 auto;
  padding: 0 5vw;
}
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: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}

.o-scroll {
  min-height: 100%;
  min-width: 100vw;
}

main {
  position: relative;
}

body {
  max-height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #050505;
}
