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

/* Padding Section */
/* Fonts */
@font-face {
  font-family: "SF Pro Display Light";
  src: url(../fonts/SF-Pro-Display-light.3fa7d3.woff) format("woff"), url(../fonts/SF-Pro-Display-light.5a49f4.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url(../fonts/SF-Pro-Display-Regular.2a8f72.woff) format("woff"), url(../fonts/SF-Pro-Display-Regular.f7dd48.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.61d365.woff) format("woff"), url(../fonts/SF-Pro-Display-Medium.76cea2.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.0aedfa.woff) format("woff"), url(../fonts/SF-Pro-Display-Semibold.c03532.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.2ea4de.woff) format("woff"), url(../fonts/SF-Pro-Display-Bold.840b5e.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 {
  min-height: 350px;
  height: 100%;
  font-family: "SF Pro Display", Arial, Helvetica, sans-serif;
  font-weight: 400;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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: 100vh;
  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: #eebf37;
  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 */
/** HOME PORTRAIT **/
.portrait {
  height: calc(100vh + 1px);
  position: relative;
  background-color: #070707;
  overflow: hidden;
}
.portrait .box-title {
  z-index: 2;
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portrait .box-title .title {
  margin-top: 20px;
  margin-bottom: 6vh;
  font-size: 35px;
  color: #fff;
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  font-weight: 500;
}
@media (min-width: 420px) {
  .portrait .box-title .title {
    font-size: 108px;
  }
}
@media (min-width: 420px) and (max-width: 1920px) {
  .portrait .box-title .title {
    font-size: calc( 35px + (108 - 35) * (( 100vw - 420px ) / (1920 - 420)) );
  }
}
@media (min-width: 768px) {
  .portrait .box-title .title {
    line-height: 0.9;
  }
}
.portrait .box-title .tagname {
  font-family: "SF Pro Display", Arial, Helvetica, sans-serif;
  font-weight: 400;
  vertical-align: baseline;
}
.portrait .box-title .tagname span {
  vertical-align: baseline;
}
.portrait .box-title .tagname span.color {
  color: var(--primary-color);
}
.portrait .box-title .mouse {
  width: 25px;
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.portrait .box-title .mouse .mouse-icon {
  width: 25px;
  height: 45px;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.portrait .box-title .mouse .mouse-icon .mouse-wheel {
  height: 12px;
  margin: 2px auto 0;
  display: block;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-animation: 3s cubic-bezier(0.37, 0.01, 0, 0.98) infinite wheel-up-down;
  animation: 2s cubic-bezier(0.37, 0.01, 0, 0.98) infinite wheel-up-down;
}
.portrait .box-title .scroll-down {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 35px;
}
@media (max-width: 767px) {
  .portrait .box-title .scroll-down {
    display: none;
  }
}
.portrait .box-title .scroll-down .text {
  color: #fff;
  margin: 15px;
}
.portrait .box-title .scroll-down .arrow-down {
  -webkit-animation-name: scrollDown;
          animation-name: scrollDown;
  -webkit-animation-duration: 2500ms;
          animation-duration: 2500ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.47, -0.01, 0.49, 0.99);
          animation-timing-function: cubic-bezier(0.47, -0.01, 0.49, 0.99);
}
@-webkit-keyframes scrollDown {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(128%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(128%);
  }
  100% {
    transform: translateY(0%);
  }
}
.portrait .bg {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  *border: 2px solid red;
}
.portrait .bg::before {
  content: "";
  height: calc(100% + 5px);
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000;
  opacity: 0.65;
  z-index: 1;
}
.portrait .bg.landing::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000;
  opacity: 0.75;
  z-index: 1;
}
.portrait .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.portrait .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}

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

@keyframes wheel-up-down {
  0% {
    margin-top: -70px;
    opacity: 0;
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    margin-top: 35px;
    opacity: 0;
  }
}
.linkeable > * {
  pointer-events: none;
}

.about {
  padding-top: 8vh;
  padding-bottom: 8vh;
}
@media (min-width: 768px) {
  .about {
    padding-top: 12vh;
  }
}
.about::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.about .box-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .about .box-title {
    margin-bottom: 10vh;
    margin-top: 10vh;
  }
}
@media (min-width: 992px) {
  .about .box-title {
    margin-bottom: 16vh;
  }
}
.about .box-title .tagname {
  margin-bottom: 2vh;
}
@media (min-width: 992px) {
  .about .box-title .tagname {
    margin-bottom: 3vh;
  }
}
.about .box-title .tagname span {
  vertical-align: baseline;
}
.about .box-title .tagname .bullet {
  height: 11px;
  width: 11px;
  background-color: #fff;
  margin-right: 20px;
  border-radius: 50%;
  display: none;
  margin-bottom: 5vh;
}
@media (min-width: 992px) {
  .about .box-title .tagname .bullet {
    display: block;
    margin-bottom: 0;
  }
}
.about .box-title .title {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-size: 38px;
  color: #000;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8vh;
}
@media (min-width: 768px) {
  .about .box-title .title {
    font-size: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about .box-title .title {
    font-size: calc( 38px + (120 - 38) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .about .box-title .title {
    margin-bottom: 10vh;
    line-height: 1;
  }
}
.about .box-title .title span {
  color: #eebf37;
  vertical-align: baseline;
}
.about .box-title .video-container {
  overflow: hidden;
  height: min(650px, 50vh);
  width: 100%;
}
@media (min-width: 768px) {
  .about .box-title .video-container {
    height: 630px;
  }
}
.about .box-title .video-container video {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .box-title .copy {
  margin: 7vh 0;
  color: #555;
  font-size: 19px;
  line-height: 1.5;
  font-family: "SF Pro Display Light", Arial, Helvetica, sans-serif;
}
@media (min-width: 768px) {
  .about .box-title .copy {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about .box-title .copy {
    font-size: calc( 19px + (32 - 19) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .about .box-title .copy {
    max-width: 70%;
  }
}
.about .box-title .copy .bold {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  vertical-align: baseline;
}
.about .box-title .button-primary:before {
  border: 2px solid #000;
}
.about .box-title .button-primary .arrow {
  color: #000;
}
.about .box-title .button-primary:hover .text {
  color: #FFF;
}

/* @import "app/section/home.introduction"; */
.shows {
  padding-top: 10vh;
  position: relative;
}
.shows::before {
  content: "";
  height: 100%;
  width: 100%;
  top: -2px;
  left: 0;
  position: absolute;
  background-color: #000;
  z-index: 1;
}
.shows .marquee {
  margin-bottom: 8vh;
}
.shows .container-frame {
  position: relative;
  padding-bottom: 8vh;
}
@media (min-width: 768px) {
  .shows .container-frame {
    padding-bottom: 16vh;
  }
}
.shows .container-frame .gradient {
  position: absolute;
  pointer-events: none;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: black;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0.7) 100%);
}
@media (min-width: 768px) {
  .shows .container-frame .gradient {
    background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, black 100%);
  }
}
.shows .swiper-container {
  overflow: visible;
  margin-bottom: 3vh;
}
@media (min-width: 768px) {
  .shows .swiper-container {
    margin-bottom: 6vh;
  }
}
.shows .swiper-container .swiper-wrapper {
  overflow: visible;
}
.shows .box-show {
  width: 80%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .shows .box-show {
    display: flex;
    flex-direction: column;
    width: 90%;
  }
}
@media (min-width: 992px) {
  .shows .box-show {
    width: 100%;
  }
}
.shows .box-show .wrapper__badge {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 3vh;
}
.shows .box-show .wrapper__badge .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;
  display: block;
}
@media (min-width: 992px) {
  .shows .box-show .wrapper__badge .sold-out {
    padding: 6px 18px;
    font-size: 15px;
  }
}
.shows .box-show .tagname {
  color: #999;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
}
@media (max-width: 767px) {
  .shows .box-show .tagname {
    order: 2;
    margin-top: 46px;
  }
}
@media (min-width: 768px) {
  .shows .box-show .tagname {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .shows .box-show .tagname {
    font-size: 18px;
  }
}
.shows .box-show .title {
  font-family: "SF Pro Display Semibold", Arial, Helvetica, sans-serif;
  font-family: 500;
  color: #fff;
  font-size: 38px;
  margin: 15px 0 30px 0;
}
@media (min-width: 768px) {
  .shows .box-show .title {
    font-size: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .shows .box-show .title {
    font-size: calc( 38px + (70 - 38) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (max-width: 767px) {
  .shows .box-show .title {
    order: 3;
    margin: 10px 0 30px 0;
  }
}
.shows .box-show .img-container {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
@media (max-width: 767px) {
  .shows .box-show .img-container {
    order: 1;
  }
}
.shows .box-show .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.7;
  transition: opacity 0.4s ease-in-out;
}
.shows .box-show .img-container:hover img {
  opacity: 1;
}
.shows .box-show .box-data {
  padding-top: 3vh;
}
@media (max-width: 767px) {
  .shows .box-show .box-data {
    padding-bottom: 3vh;
  }
}
.shows .box-show .box-data .date {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .shows .box-show .box-data .date {
    font-size: 24px;
  }
}
.shows .box-show .box-data .place {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .shows .box-show .box-data .place {
    font-size: 18px;
  }
}
.shows .box-controls {
  display: flex;
  justify-content: space-between;
  padding-top: 3vh;
}
@media (min-width: 768px) {
  .shows .box-controls {
    padding-top: 6vh;
  }
}
.shows .box-controls .slider-controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}
.shows .box-controls .slider-controls .arrow-prev,
.shows .box-controls .slider-controls .arrow-next {
  background-color: #fff;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.shows .box-controls .slider-controls .arrow-prev:hover,
.shows .box-controls .slider-controls .arrow-next:hover {
  background-color: var(--primary-color);
}
.shows .box-controls .slider-controls .arrow-prev svg {
  transform: translateX(-2px);
}
.shows .box-controls .slider-controls .arrow-next svg {
  transform: translateX(2px);
}
.shows .button-primary .text {
  color: #000;
}
.shows .button-primary:before {
  border: 2px solid #000;
}
.shows .button-primary .arrow {
  color: #000;
}
@media (min-width: 768px) {
  .shows .button-primary {
    margin-left: 0px;
  }
  .shows .button-primary .text {
    color: #000;
  }
  .shows .button-primary:before {
    border: 2px solid #000;
  }
  .shows .button-primary .arrow {
    color: #000;
  }
}

.fenix-universe {
  background-color: #fff;
}
.fenix-universe .box-title {
  padding-block: 80px 60px;
}
@media (min-width: 768px) {
  .fenix-universe .box-title {
    padding-block: 20vh;
  }
}
.fenix-universe .box-title .tagname {
  display: block;
}
.fenix-universe .box-title .title {
  color: #000;
  margin-block: 20px;
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  vertical-align: baseline;
  font-size: 38px;
}
@media (min-width: 768px) {
  .fenix-universe .box-title .title {
    font-size: 108px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe .box-title .title {
    font-size: calc( 38px + (108 - 38) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .fenix-universe .box-title .title {
    margin-block: 20px 40px;
  }
}
.fenix-universe .box-title .title span {
  color: var(--primary-color);
}
.fenix-universe .box-title .copy {
  font-family: "SF Pro Display Light", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.3;
  color: #555;
  width: 100%;
}
@media (min-width: 768px) {
  .fenix-universe .box-title .copy {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe .box-title .copy {
    font-size: calc( 19px + (28 - 19) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (max-width: 767px) {
  .fenix-universe .box-title .copy {
    max-width: 350px;
  }
}
.fenix-universe .box-title .copy br {
  display: none;
}
@media (min-width: 992px) {
  .fenix-universe .box-title .copy br {
    display: block;
  }
}
.fenix-universe .box-title .copy span {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  vertical-align: baseline;
}
.fenix-universe .content {
  width: 100%;
  margin-left: 0;
}
@media (min-width: 1200px) {
  .fenix-universe .content {
    width: calc(100% - $navigation-bar-width);
    margin-left: 96px;
  }
}
.fenix-universe .content .content-box.mobile {
  position: relative;
  height: 471px;
  width: 100%;
  padding-inline: 15px;
  margin-bottom: 15px;
}
.fenix-universe .content .content-box.mobile:last-child {
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box.mobile {
    display: none;
  }
}
.fenix-universe .content .content-box.mobile .inner-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fenix-universe .content .content-box.mobile .img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fenix-universe .content .content-box.mobile .box-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px;
}
.fenix-universe .content .content-box.mobile .box-text .main-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fenix-universe .content .content-box.mobile .box-text .main-text .tagname {
  color: #999;
}
.fenix-universe .content .content-box.mobile .box-text .main-text .title {
  font-size: 33px;
  color: #fff !important;
  margin-top: auto;
  font-family: "SF Pro Display Semibold", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .fenix-universe .content .content-box.mobile .box-text .main-text .title {
    font-size: 72px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe .content .content-box.mobile .box-text .main-text .title {
    font-size: calc( 33px + (72 - 33) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.fenix-universe .content .content-box.mobile .box-text .secondary-text {
  height: 100%;
  width: 100%;
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fenix-universe .content .content-box.mobile .box-text .secondary-text .copy {
  color: #fff !important;
  line-height: 1.4;
}
.fenix-universe .content .content-box.mobile .box-text .secondary-text .button-primary {
  bottom: 40%;
}
.fenix-universe .content .content-box:not(.mobile) {
  display: none;
  position: relative;
  overflow: hidden;
  height: 475px;
  padding: 30px;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) {
    display: block;
    height: auto;
    padding: 0px;
  }
}
.fenix-universe .content .content-box:not(.mobile) a {
  background: none;
}
.fenix-universe .content .content-box:not(.mobile) .divider {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}
html[data-device=mobile] .fenix-universe .content .content-box:not(.mobile) .divider, html[data-device=tablet] .fenix-universe .content .content-box:not(.mobile) .divider {
  display: none;
}
.fenix-universe .content .content-box:not(.mobile) .img-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
html[data-device=mobile] .fenix-universe .content .content-box:not(.mobile) .img-container, html[data-device=tablet] .fenix-universe .content .content-box:not(.mobile) .img-container {
  transform: scale(1.02);
}
.fenix-universe .content .content-box:not(.mobile) .img-container.landings {
  height: 450px;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .img-container {
    height: 50vh;
  }
}
.fenix-universe .content .content-box:not(.mobile) .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767px) {
  .fenix-universe .content .content-box:not(.mobile) .img-container img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fenix-universe .content .content-box:not(.mobile) .img-mask {
  z-index: 1;
  background-color: #fff;
  height: 100%;
  width: 200%;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .img-mask {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .inner-container {
  margin-left: 30px;
  width: calc(100% - 60px);
  padding: 30px;
  height: 100%;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .inner-container {
    height: auto;
  }
}
@media (min-width: 768px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .inner-container {
    margin-left: calc(2vw + 30px);
    width: calc(100% - 2vw - 60px);
  }
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .inner-container {
    padding: 0px;
  }
}
@media (min-width: 1200px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .inner-container {
    margin-left: calc(5vw + 30px);
    width: calc(100% - 10vw - 30px);
  }
}
@media (max-width: 767px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .inner-container .secondary-text.landings {
    height: 0;
  }
  .fenix-universe .content .content-box:not(.mobile) .container-frame .inner-container .secondary-text.landings .btn-universe {
    bottom: 0;
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 767px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text {
    justify-content: center;
    max-width: 585px;
  }
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text {
    min-height: 335px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text {
    margin-bottom: 0;
    height: 100%;
    padding-right: 5vw;
    max-width: 40vw;
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .tagname {
  color: #888888;
}
html[data-device=mobile] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .tagname, html[data-device=tablet] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .tagname {
  color: #888888;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .tagname {
    font-size: 20px;
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .title {
  font-size: 33px;
  color: #000;
  margin-top: auto;
  font-family: "SF Pro Display Semibold", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .title {
    font-size: 72px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .title {
    font-size: calc( 33px + (72 - 33) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
html[data-device=mobile] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .title, html[data-device=tablet] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .title {
  color: #FFF;
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .main-text .title {
    margin-top: 20px;
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text {
  height: 100%;
  margin-top: 3vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text {
    width: 100%;
    margin-top: 3vh;
  }
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text {
    height: auto;
    margin-top: 50px;
    width: 35%;
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .button-primary.variant {
  color: #fff;
  background-color: #050505;
  width: 160px;
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .button-primary.variant:before {
  background: none;
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe {
    position: relative;
  }
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .text {
  color: #888888;
  font-size: 16px;
}
@media (min-width: 768px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .text {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .text {
    font-size: calc( 16px + (20 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
html[data-device=mobile] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .text, html[data-device=tablet] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .text {
  color: #FFF;
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .arrow {
  display: inline-flex;
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .arrow svg .icon {
  fill: #888888;
  stroke: #888888;
}
html[data-device=mobile] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .arrow svg .icon, html[data-device=tablet] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .btn-universe .arrow svg .icon {
  fill: #FFF;
  stroke: #FFF;
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .copy {
  color: #888;
  display: block;
  width: 100%;
  max-width: 345px;
  line-height: 1.4;
  font-size: 18px;
  margin-bottom: 3vh;
}
@media (min-width: 768px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .copy {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .copy {
    font-size: calc( 18px + (32 - 18) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .copy {
    font-family: "SF Pro Display", Arial, Helvetica, sans-serif;
    font-weight: 400;
    max-width: unset;
    width: 26vw;
    margin-bottom: 0;
  }
}
html[data-device=mobile] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .copy, html[data-device=tablet] .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text .copy {
  color: #BBB;
}
.fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text a {
  margin-top: 50px;
  color: #cccccc;
  font-size: 15px;
  opacity: 0;
  transform: translateY(10px);
  display: block;
}
@media (min-width: 768px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text a {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe .content .content-box:not(.mobile) .container-frame .box-text .secondary-text a {
    font-size: calc( 15px + (20 - 15) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.fenix-universe.landing {
  border-top: 1px solid #a2a2a2;
  padding-top: 10vh;
}
@media (max-width: 767px) {
  .fenix-universe.landing {
    padding-top: 5vh;
  }
}
.fenix-universe.landing .box-next {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  padding-bottom: 10vh;
}
@media (max-width: 767px) {
  .fenix-universe.landing .box-next {
    padding-bottom: 5vh;
  }
}
.fenix-universe.landing .box-next .title {
  font-family: "SF Pro Display Medium";
}
.fenix-universe.landing .box-next .text {
  font-size: 30px;
  margin-right: 30px;
  font-family: "SF Pro Display Semibold", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .fenix-universe.landing .box-next .text {
    font-size: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .fenix-universe.landing .box-next .text {
    font-size: calc( 30px + (80 - 30) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.fenix-universe.landing .box-next .text span {
  color: var(--primary-color);
  vertical-align: var(--primary-color);
}
.fenix-universe.landing .box-next .button {
  height: 90px;
  width: 90px;
}
.fenix-universe.landing .box-next .button svg {
  height: 100%;
  width: 100%;
}

.about-introduction {
  background-color: #fff;
  padding: 15vh 0;
  position: relative;
}
.about-introduction::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  z-index: 1;
}
.about-introduction .content {
  position: relative;
  height: 220px;
}
@media (min-width: 768px) {
  .about-introduction .content {
    height: clamp(220px, 21vw,50vh);
  }
}
.about-introduction .content .box-content {
  position: absolute;
  left: 0;
  top: 30px;
  color: #000;
  font-size: 25px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .about-introduction .content .box-content {
    font-size: 72px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-introduction .content .box-content {
    font-size: calc( 25px + (72 - 25) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.about-introduction .content .box-content .enfasis {
  color: #eebf37;
  vertical-align: baseline;
}
.about-introduction .content .box-content .lineChild {
  opacity: 0;
}
.about-introduction .content .box-content:first-child .lineChild {
  opacity: 1;
}
.about-introduction .button-about {
  position: relative;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
}
@media (max-width: 767px) {
  .about-introduction .button-about {
    width: clamp(60px,20vw,90px);
    height: clamp(60px,20vw,90px);
  }
}
.about-introduction .button-about .circle {
  width: 90px;
  height: 90px;
  position: absolute;
}
@media (max-width: 767px) {
  .about-introduction .button-about .circle {
    width: clamp(40px,15vw,90px);
    height: clamp(40px,15vw,90px);
  }
}
.about-introduction .button-about .circle .anim {
  stroke-dasharray: 220px;
  stroke-dashoffset: 220px;
}
.about-introduction .button-about .arrow {
  width: 48px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  left: calc(50% + 3px);
}
@media (max-width: 767px) {
  .about-introduction .button-about .arrow {
    width: clamp(25px, 7vw, 48px);
  }
}
.about-introduction .button-about:after {
  content: "Gimme another!";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  left: 120%;
  width: 140px;
}

.about-stats {
  position: relative;
  background-image: url(../images/design/stats-bg.39b686.jpg);
  background-position: center;
  padding-block: 15vh;
}
.about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.75;
}
.about-stats .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .about-stats {
    padding-block: 20vh;
  }
}
.about-stats .box-title {
  margin-bottom: 8vh;
}
@media (min-width: 992px) {
  .about-stats .box-title {
    margin-bottom: 16vh;
  }
}
.about-stats .box-title .title {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about-stats .box-title .title {
    font-size: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-stats .box-title .title {
    font-size: calc( 38px + (120 - 38) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .about-stats .box-title .title {
    margin-top: 40px;
  }
}
.about-stats .stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 992px) {
  .about-stats .stats-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
.about-stats .stats-container .box-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.16);
  height: 170px;
  border-radius: 7.5px;
  padding: 20px;
  transition: scale 200ms ease, background-color 200ms ease;
}
@media (min-width: 992px) {
  .about-stats .stats-container .box-stat {
    height: 185px;
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .about-stats .stats-container .box-stat {
    height: 230px;
  }
}
html[data-device=desktop] .about-stats .stats-container .box-stat:hover {
  scale: 0.98;
  background-color: rgba(255, 255, 255, 0.36);
}
.about-stats .stats-container .box-stat .number-container {
  font-family: "SF Pro Display Semibold", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-stats .stats-container .box-stat .number-container {
    font-size: 65px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-stats .stats-container .box-stat .number-container {
    font-size: calc( 34px + (65 - 34) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.about-stats .stats-container .box-stat .number-container .number {
  color: var(--primary-color);
  margin-bottom: 25px;
  vertical-align: initial;
}
.about-stats .stats-container .box-stat .text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  width: auto;
  margin-top: auto;
}
@media (min-width: 768px) {
  .about-stats .stats-container .box-stat .text {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-stats .stats-container .box-stat .text {
    font-size: calc( 16px + (28 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .about-stats .stats-container .box-stat .text {
    width: calc(100% - 50px);
  }
}
.about-stats .stats-container .box-stat .arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  transform-origin: center;
  color: #fff;
  /* IE 9 */
  /* Safari */
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .about-stats .stats-container .box-stat .arrow img {
    width: 12px;
  }
}
@media (min-width: 992px) {
  .about-stats .stats-container .box-stat .arrow {
    right: 30px;
    top: unset;
    bottom: 30px;
    /* IE 9 */
    /* Safari */
    transform: rotate(0deg);
  }
}

.about-vision {
  background-color: #fff;
  padding: 12vh 0;
}
@media (min-width: 768px) {
  .about-vision {
    padding: 20vh 0;
  }
}
.about-vision .box-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10vh;
}
@media (min-width: 768px) {
  .about-vision .box-vision {
    flex-wrap: nowrap;
    margin-bottom: 16vh;
  }
}
@media (min-width: 768px) {
  .about-vision .box-vision.inverted .box-title {
    order: 2;
  }
  .about-vision .box-vision.inverted .box-images {
    order: 1;
  }
}
.about-vision .box-vision .box-title {
  width: 100%;
  margin-bottom: 8vh;
}
@media (min-width: 768px) {
  .about-vision .box-vision .box-title {
    width: 50%;
    margin-bottom: 0;
  }
}
.about-vision .box-vision .box-title .title {
  font-family: "SF Pro Dsiplay Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 38px;
  color: #000;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about-vision .box-vision .box-title .title {
    font-size: 85px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-vision .box-vision .box-title .title {
    font-size: calc( 38px + (85 - 38) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.about-vision .box-vision .box-title .title br {
  display: none;
}
@media (min-width: 768px) {
  .about-vision .box-vision .box-title .title br {
    display: block;
  }
}
.about-vision .box-vision .box-title .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.about-vision .box-vision .box-title .copy {
  font-family: "SF Pro Display Light", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 19px;
  color: #555;
  line-height: 1.4;
  max-width: 560px;
}
@media (min-width: 768px) {
  .about-vision .box-vision .box-title .copy {
    font-size: 23px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-vision .box-vision .box-title .copy {
    font-size: calc( 19px + (23 - 19) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.about-vision .box-vision .box-title .copy span {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.about-vision .box-vision .box-images {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .about-vision .box-vision .box-images {
    width: 36%;
  }
}
.about-vision .box-vision .box-images .big-img {
  width: 100%;
}
.about-vision .box-vision .box-images .small-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40%;
  transform: translate(-25%, 50%);
}

.landing-container {
  display: block;
  padding: 10vh 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  .landing-container {
    padding: 20vh 0;
  }
}
.landing-container .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.landing-container .container .box-title {
  width: 100%;
  margin-bottom: 8vh;
}
@media (min-width: 768px) {
  .landing-container .container .box-title {
    margin-bottom: 10vh;
  }
}
@media (min-width: 768px) {
  .landing-container .container .box-title.secondary-position {
    *width: 66%;
  }
}
.landing-container .container .box-title.secondary-position .title {
  margin-bottom: 4vh;
}
.landing-container .container .box-title.secondary-position .text-container {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .landing-container .container .box-title.secondary-position .text-container .copy {
    max-width: 100%;
  }
}
.landing-container .container .box-title.main-box .tagname span {
  vertical-align: baseline;
  color: var(--primary-color);
}
.landing-container .container .box-title.main-box .title {
  font-size: 42px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .landing-container .container .box-title.main-box .title {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .box-title.main-box .title {
    font-size: calc( 42px + (100 - 42) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (max-width: 767px) {
  .landing-container .container .box-title.main-box .title.br-xs-hide br {
    display: none;
  }
}
.landing-container .container .box-title .title {
  font-size: 42px;
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-block: 20px 30px;
}
@media (min-width: 768px) {
  .landing-container .container .box-title .title {
    font-size: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .box-title .title {
    font-size: calc( 42px + (120 - 42) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .landing-container .container .box-title .title {
    margin-block: 30px 65px;
  }
}
.landing-container .container .box-title .title span {
  vertical-align: baseline;
  color: var(--primary-color);
}
.landing-container .container .box-title .text-container {
  width: 100%;
}
.landing-container .container .box-title .text-container .copy {
  font-size: 18px;
  display: inline-block;
  color: #555;
  line-height: 1.3;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .landing-container .container .box-title .text-container .copy {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .box-title .text-container .copy {
    font-size: calc( 18px + (30 - 18) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .landing-container .container .box-title .text-container .copy {
    line-height: 1.5;
    width: 66%;
    max-width: 1000px;
  }
}
.landing-container .container .box-title .text-container .copy.left {
  max-width: 700px;
}
.landing-container .container .box-title .text-container .copy .enfasis {
  display: inline-block;
  color: #555555;
}
.landing-container .container .text-block {
  width: 100%;
}
.landing-container .container .text-block .copy {
  font-size: 18px;
  display: inline-block;
  color: #555;
  line-height: 1.3;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .landing-container .container .text-block .copy {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .text-block .copy {
    font-size: calc( 18px + (30 - 18) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .landing-container .container .text-block .copy {
    line-height: 1.5;
    width: 66%;
    max-width: 1000px;
  }
}
.landing-container .container .text-block .copy.left {
  max-width: 700px;
}
@media (min-width: 768px) {
  .landing-container .container .text-block .copy.right {
    margin-left: 30%;
  }
}
.landing-container .container .text-block .copy .enfasis {
  display: inline-block;
  color: #555555;
}
.landing-container .container .main-image {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 10vh;
  background-color: var(--primary-color);
  overflow: hidden;
}
@media (min-width: 768px) {
  .landing-container .container .main-image {
    margin-bottom: 20vh;
  }
}
.landing-container .container .main-image.short-m-bottom {
  margin-bottom: 5vh;
}
@media (min-width: 768px) {
  .landing-container .container .main-image.short-m-bottom {
    margin-bottom: 10vh;
  }
}
.landing-container .container .main-image img, .landing-container .container .main-image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.landing-container .container .box-stats {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 768px) {
  .landing-container .container .box-stats {
    flex-direction: row;
    justify-content: flex-start;
    margin: 4% 0 0 auto;
    gap: 35px;
  }
}
@media (min-width: 1200px) {
  .landing-container .container .box-stats {
    gap: 50px;
  }
}
.landing-container .container .box-stats .stat {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 170px;
  width: 100%;
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 5px;
}
.landing-container .container .box-stats .stat:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .landing-container .container .box-stats .stat {
    display: flex;
    width: 100%;
    height: clamp(220px, 15vw, 320px);
    padding: 30px;
  }
}
.landing-container .container .box-stats .stat .tagname {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  margin-top: auto;
  text-transform: none;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .landing-container .container .box-stats .stat .tagname {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .box-stats .stat .tagname {
    font-size: calc( 14px + (22 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.landing-container .container .box-stats .stat .data {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  color: #000;
  font-size: 32px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .landing-container .container .box-stats .stat .data {
    font-size: 58px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .box-stats .stat .data {
    font-size: calc( 32px + (58 - 32) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.landing-container .container .box-stats .stat .arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  transform-origin: center;
  color: #222222;
}
@media (min-width: 992px) {
  .landing-container .container .box-stats .stat .arrow {
    right: 30px;
    bottom: 30px;
  }
}
.landing-container .container .box-container {
  width: 100%;
  margin-top: 10vh;
}
@media (min-width: 768px) {
  .landing-container .container .box-container {
    width: 50%;
  }
}
.landing-container .container .box-container .title {
  color: #000;
  font-size: 28px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .landing-container .container .box-container .title {
    font-size: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .box-container .title {
    font-size: calc( 28px + (120 - 28) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .landing-container .container .box-container .title {
    margin-bottom: 40px;
  }
}
.landing-container .container .box-container .copy {
  color: #555555;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .landing-container .container .box-container .copy {
    font-size: 45px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-container .container .box-container .copy {
    font-size: calc( 18px + (45 - 18) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .landing-container .container .box-container .copy {
    line-height: 1.3;
  }
}
.landing-container .container .landing-images-top {
  display: flex;
  flex-direction: column;
  gap: 5vh;
  width: 100%;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.landing-container .container .landing-images-top .img-one {
  width: 66%;
  max-width: 200px;
  height: auto;
  margin-left: auto;
  background-color: var(--primary-color);
  overflow: hidden;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-top .img-one {
    grid-column-start: 2;
    grid-row-start: 1;
    height: auto;
    width: 100%;
    max-width: 485px;
    align-self: end;
  }
}
.landing-container .container .landing-images-top .img-one img {
  width: 100%;
}
.landing-container .container .landing-images-top .img-two {
  width: 62%;
  max-width: 240px;
  height: auto;
  margin-left: 0;
  margin-bottom: 10vh;
  background-color: var(--primary-color);
  overflow: hidden;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-top .img-two {
    width: 100%;
    max-width: 471px;
    grid-column-start: 1;
    grid-row-start: 1;
    margin-left: auto;
  }
}
.landing-container .container .landing-images-top .img-two img {
  width: 100%;
}
.landing-container .container .landing-middle-section {
  width: 100%;
}
@media (min-width: 768px) {
  .landing-container .container .landing-middle-section {
    margin-top: 10vh;
  }
}
.landing-container .container .landing-images-bottom {
  width: 100%;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-bottom {
    display: grid;
    grid-template-columns: 66% 33%;
    margin-top: 10vh;
    height: clamp(900px, 100vw,1660px);
  }
}
.landing-container .container .landing-images-bottom .images-container {
  overflow: hidden;
  background-color: var(--primary-color);
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-bottom .images-container {
    grid-row-start: 1;
  }
}
.landing-container .container .landing-images-bottom .images-container.img-three {
  width: 90%;
  max-width: 807px;
  height: auto;
  margin-block: 10vh;
  margin-left: auto;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-bottom .images-container.img-three {
    width: 90%;
    margin-left: 0;
    margin-block: 20vh 0;
    grid-column-start: 1;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.landing-container .container .landing-images-bottom .images-container.img-four {
  width: 50%;
  max-width: 372px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-bottom .images-container.img-four {
    grid-column-start: 2;
    width: 85%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
  }
}
.landing-container .container .landing-images-bottom .images-container.img-five {
  width: 100%;
  max-width: 496px;
  height: auto;
  margin-block: 10vh;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-bottom .images-container.img-five {
    align-self: end;
    justify-self: end;
    grid-column-start: 2;
    margin-block: 0 30%;
  }
}
.landing-container .container .landing-images-bottom .images-container.img-six {
  width: 80%;
  max-width: 372px;
  height: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .landing-container .container .landing-images-bottom .images-container.img-six {
    grid-column-start: 1;
    align-self: end;
    width: 50%;
    margin-right: 20%;
  }
}
.landing-container .container .landing-images-bottom .images-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.landing-container.productora .container .flex-image-container {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16vh;
  width: 100%;
  height: auto;
}
.landing-container.productora .container .flex-image-container .right {
  background-color: var(--primary-color);
  min-width: 245px;
  width: 70%;
  justify-self: right;
  overflow: hidden;
  margin-bottom: 6vh;
  margin-right: auto;
  order: 1;
}
@media (min-width: 768px) {
  .landing-container.productora .container .flex-image-container .right {
    width: 48%;
    max-width: 623px;
    margin-bottom: 20vh;
    margin-right: unset;
    margin-left: 0;
    order: 2;
  }
}
.landing-container.productora .container .flex-image-container .left {
  background-color: var(--primary-color);
  min-width: 200px;
  width: 45%;
  justify-self: left;
  overflow: hidden;
  align-self: flex-end;
  order: 2;
}
@media (min-width: 768px) {
  .landing-container.productora .container .flex-image-container .left {
    width: 35%;
    max-width: 485px;
    margin-right: clamp(5px, 3vw,100px);
    order: 1;
  }
}
.landing-container.productora .container .flex-image-container .right img,
.landing-container.productora .container .flex-image-container .left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hall-fame {
  padding-top: 8vh;
  background-color: #000;
  position: relative;
}
@media (min-width: 768px) {
  .hall-fame {
    padding-top: 12vh;
  }
}
.hall-fame .gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  background: transparent;
}
@media (min-width: 768px) {
  .hall-fame .gradient {
    background: black;
    background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, black 100%);
  }
}
@media (min-width: 992px) {
  .hall-fame .gradient {
    background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, black 100%);
  }
}
.hall-fame .marquee {
  margin-top: 0;
}
.hall-fame .marquee .text {
  font-size: 36px;
  font-weight: 600;
}
@media (min-width: 767px) {
  .hall-fame .marquee .text {
    font-size: 100px;
  }
}
@media (min-width: 767px) and (max-width: 1920px) {
  .hall-fame .marquee .text {
    font-size: calc( 36px + (100 - 36) * (( 100vw - 767px ) / (1920 - 767)) );
  }
}
.hall-fame .box-title {
  padding-top: 50px;
  padding-bottom: 6vh;
}
.hall-fame .box-title .copy {
  font-family: "SF Pro Display Light", Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #b8b8b8;
  line-height: 1.4;
  width: 100%;
  text-align: left;
}
@media (min-width: 767px) {
  .hall-fame .box-title .copy {
    font-size: 30px;
  }
}
@media (min-width: 767px) and (max-width: 1920px) {
  .hall-fame .box-title .copy {
    font-size: calc( 17px + (30 - 17) * (( 100vw - 767px ) / (1920 - 767)) );
  }
}
@media (min-width: 768px) {
  .hall-fame .box-title .copy {
    width: 85%;
  }
}
.hall-fame .box-title .copy span {
  display: inline-block;
}
.hall-fame .box-title .enfasis {
  color: #b8b8b8;
}
.hall-fame .artist.artist-top {
  padding-top: 6vh;
}
.hall-fame .artist.artist-bottom {
  padding-bottom: 10vh;
}
@media (min-width: 768px) {
  .hall-fame .artist.artist-bottom {
    padding-bottom: 14vh;
  }
}
@media (min-width: 992px) {
  .hall-fame .artist.artist-bottom {
    padding-bottom: 20vh;
  }
}
.hall-fame .artist .box-artist {
  height: 100%;
}
.hall-fame .artist .box-artist .artist-card {
  height: 100%;
}
.hall-fame .artist .swiper-container {
  overflow: visible;
  margin-bottom: 2vh;
}
.hall-fame .artist .swiper-container .swiper-wrapper {
  overflow: visible;
  transition-timing-function: linear;
}
.hall-fame .artist .swiper-container .swiper-wrapper .swiper-slide {
  aspect-ratio: 10/12;
  overflow: hidden;
}
.hall-fame .artist .artist-card {
  position: relative;
}
.hall-fame .artist .artist-card img {
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 100%;
}
.hall-fame .artist .artist-card .text {
  opacity: 0;
  transform: translateY(20%);
  position: absolute;
  bottom: 15px;
  left: 15px;
  transition: opacity 300ms ease, transform 300ms ease;
}
@media (min-width: 992px) {
  .hall-fame .artist .artist-card .text {
    bottom: 30px;
    left: 20px;
  }
}
.hall-fame .artist .artist-card .text h5 {
  color: #f2f2f2;
  font-size: 16px;
}
@media (min-width: 767px) {
  .hall-fame .artist .artist-card .text h5 {
    font-size: 37px;
  }
}
@media (min-width: 767px) and (max-width: 1920px) {
  .hall-fame .artist .artist-card .text h5 {
    font-size: calc( 16px + (37 - 16) * (( 100vw - 767px ) / (1920 - 767)) );
  }
}
.hall-fame .artist .artist-card .text span {
  color: #666;
  font-size: 13px;
}
@media (min-width: 676px) {
  .hall-fame .artist .artist-card .text span {
    font-size: 29px;
  }
}
@media (min-width: 676px) and (max-width: 1920px) {
  .hall-fame .artist .artist-card .text span {
    font-size: calc( 13px + (29 - 13) * (( 100vw - 676px ) / (1920 - 676)) );
  }
}
.hall-fame .artist .artist-card:hover .text {
  opacity: 1;
  transform: translateY(0%);
}
.hall-fame .artist .artist-card:hover img {
  opacity: 0.6;
}

.landing-links {
  padding-top: 0;
  padding-bottom: 8vh;
}
@media (min-width: 768px) {
  .landing-links {
    padding-bottom: 14vh;
  }
}
.landing-links .box-title .tagname {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  margin-top: auto;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 2vh;
}
@media (min-width: 768px) {
  .landing-links .box-title .tagname {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-links .box-title .tagname {
    font-size: calc( 13px + (22 - 13) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.landing-links .box-title .title {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #000;
  text-align: center;
  padding-bottom: 6vh;
}
@media (min-width: 768px) {
  .landing-links .box-title .title {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-links .box-title .title {
    font-size: calc( 42px + (100 - 42) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.landing-links .box-title .title span {
  vertical-align: baseline;
  color: var(--primary-color);
}
.landing-links .box-title ul.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5vw;
}
.landing-links .box-title ul.links li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.landing-links .box-title ul.links li a .ic {
  width: 45px;
  height: 45px;
  border: 2px solid #888;
  border-radius: 75px;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease;
}
@media (min-width: 768px) {
  .landing-links .box-title ul.links li a .ic {
    width: 55px;
    height: 55px;
  }
}
@media (min-width: 992px) {
  .landing-links .box-title ul.links li a .ic {
    width: 75px;
    height: 75px;
  }
}
.landing-links .box-title ul.links li a .ic svg {
  height: 20px;
}
@media (min-width: 768px) {
  .landing-links .box-title ul.links li a .ic svg {
    height: 24px;
  }
}
@media (min-width: 992px) {
  .landing-links .box-title ul.links li a .ic svg {
    height: auto;
  }
}
.landing-links .box-title ul.links li a .ic svg path, .landing-links .box-title ul.links li a .ic svg rect, .landing-links .box-title ul.links li a .ic svg polygon {
  transition: all 0.35s ease;
}
.landing-links .box-title ul.links li a .name {
  font-size: 13px;
  color: #888;
  transition: all 0.35s ease;
  display: none;
}
@media (min-width: 768px) {
  .landing-links .box-title ul.links li a .name {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .landing-links .box-title ul.links li a .name {
    font-size: calc( 13px + (22 - 13) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .landing-links .box-title ul.links li a .name {
    display: block;
  }
}
.landing-links .box-title ul.links li:hover a .ic {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.landing-links .box-title ul.links li:hover a .ic svg path, .landing-links .box-title ul.links li:hover a .ic svg rect, .landing-links .box-title ul.links li:hover a .ic svg polygon {
  fill: #fff;
}
.landing-links .box-title ul.links li:hover a .name {
  color: #000;
}

.next-page {
  height: 90vh;
  min-height: 690px;
  width: 100%;
  position: relative;
  background-color: #000;
}
.next-page .container {
  height: 100%;
}
.next-page .box-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  padding: 0 5vw;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .next-page .box-centered {
    padding: 0 2vw;
  }
}
.next-page .box-centered .tagname {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-align: center;
}
@media (min-width: 768px) {
  .next-page .box-centered .tagname {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .next-page .box-centered .tagname {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.next-page .box-centered .title {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin-top: 2vh;
}
@media (min-width: 768px) {
  .next-page .box-centered .title {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .next-page .box-centered .title {
    font-size: calc( 40px + (100 - 40) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.next-page .box-centered .wrapper-arrow {
  text-align: center;
  margin-top: 4vh;
}
.next-page .box-centered .wrapper-arrow svg {
  width: 65px;
  margin: 0 auto;
  transition: all 0.4s ease;
}
@media (min-width: 992px) {
  .next-page .box-centered .wrapper-arrow svg {
    width: 100px;
  }
}
.next-page .box-centered .wrapper-arrow svg circle,
.next-page .box-centered .wrapper-arrow svg path {
  transition: all 0.4s ease;
}
.next-page .box-centered .wrapper-arrow svg:hover {
  transform: scale(1.1);
}
.next-page .box-centered .wrapper-arrow svg:hover circle {
  fill: #fff;
}
.next-page .box-centered .wrapper-arrow svg:hover path {
  stroke: #000;
}
.next-page .bg-img-container {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* &::before {
      content: "";
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      position: absolute;
      background-color: #000;
      opacity: 0.5;
      z-index: 1;
  } */
}
.next-page .bg-img-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  filter: brightness(50%);
}
.next-page .bg-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  filter: brightness(50%);
}

#instagram {
  padding: 16vh 0;
  padding-bottom: 12vh;
  overflow: hidden;
  background-color: #161619;
}
#instagram .container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 1600px) {
  #instagram .container {
    padding: 0;
  }
}
#instagram .container .box-title {
  margin-bottom: 12vh;
  text-align: center;
}
@media (min-width: 768px) {
  #instagram .container .box-title {
    display: flex;
    justify-content: space-between;
  }
}
#instagram .container .box-title .w-flex {
  margin-bottom: 2vh;
}
@media (min-width: 768px) {
  #instagram .container .box-title .w-flex {
    text-align: left;
  }
}
#instagram .container .box-title .w-flex .copy {
  font-size: 20px;
  font-weight: 500;
  color: #848485;
  line-height: 1.8;
  margin-bottom: 2vh;
}
#instagram .container .box-title .w-flex h1 {
  font-size: 5.5vh;
  color: #f2f2f2;
  font-weight: 500;
}
@media (min-width: 992px) {
  #instagram .container .box-title .w-flex h1 {
    font-size: 75px;
  }
}
#instagram .container .box-title .button-simple {
  margin-top: 5vh;
}
@media (min-width: 768px) {
  #instagram .container .box-title .button-simple {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
#instagram .container .box-title .button-simple:before, #instagram .container .box-title .button-simple:after {
  background-color: #f2f2f2;
}
#instagram .container .box-title .button-simple span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #f2f2f2;
  line-height: 1.3;
  text-transform: uppercase;
}
#instagram .instagram__dragger {
  display: flex;
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 10vh;
}
#instagram .instagram__dragger .instagram_group {
  display: flex;
  flex-shrink: 0;
  will-change: transform;
  white-space: nowrap;
}
#instagram .instagram__dragger .instagram__image {
  display: flex;
  flex-shrink: 0;
  position: relative;
  margin-right: 5.556vw;
}
#instagram .instagram__dragger .instagram__image .image__src {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  border: none;
  display: block;
  pointer-events: none;
}
#instagram .instagram__dragger .instagram__image:nth-child(4n+1) {
  width: 66.666vw;
  height: 66.666vw;
}
#instagram .instagram__dragger .instagram__image:nth-child(4n+2) {
  width: 44.444vw;
  height: 44.444vw;
  margin-top: 38.75vw;
}
#instagram .instagram__dragger .instagram__image:nth-child(4n+3) {
  width: 33.334vw;
  height: 33.334vw;
  margin-top: 11.112vw;
}
#instagram .instagram__dragger .instagram__image:nth-child(4n+4) {
  width: 55.556vw;
  height: 55.556vw;
  margin-top: 27.5vw;
}
@media (min-width: 992px) {
  #instagram .instagram__dragger .instagram__image:nth-child(4n+1) {
    width: 33.333vw;
    height: 33.333vw;
  }
  #instagram .instagram__dragger .instagram__image:nth-child(4n+2) {
    width: 22.222vw;
    height: 22.222vw;
    margin-top: 19.375vw;
  }
  #instagram .instagram__dragger .instagram__image:nth-child(4n+3) {
    width: 16.667vw;
    height: 16.667vw;
    margin-top: 5.556vw;
  }
  #instagram .instagram__dragger .instagram__image:nth-child(4n+4) {
    width: 27.778vw;
    height: 27.778vw;
    margin-top: 13.75vw;
  }
}

.footer {
  background-color: #000;
  position: relative;
  padding-bottom: 5vh;
}
.footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
}
.footer .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .container.container-trail {
  padding-top: 15vh;
  padding-bottom: 3vh;
  isolation: isolate;
}
.footer .container.container-trail > * {
  z-index: 10;
}
.footer .container .images-container {
  width: 100%;
  position: absolute;
  top: -30%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
@media (max-width: 767px) {
  .footer .container .images-container {
    display: none;
  }
}
.footer .container .images-container .images-container-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: transform;
}
.footer .container .tagname {
  margin-bottom: 2vh;
}
@media (min-width: 992px) {
  .footer .container .tagname {
    margin-bottom: 5vh;
  }
}
.footer .container .title-container {
  position: relative;
}
.footer .container .title-container .title {
  display: block;
  position: relative;
  margin-bottom: 4vh;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.8;
  color: #fff;
  z-index: 10;
}
@media (min-width: 768px) {
  .footer .container .title-container .title {
    font-size: 125px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container .title-container .title {
    font-size: calc( 40px + (125 - 40) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .footer .container .title-container .title {
    margin-bottom: 8vh;
  }
}
.footer .container .title-container .title span {
  color: var(--primary-color);
  vertical-align: baseline;
}
.footer .container .social-media {
  display: flex;
  align-items: center;
  margin-block: 4vh;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer .container .social-media {
    margin-block: 10vh;
    align-items: baseline;
    gap: 30px;
  }
}
.footer .container .social-media .follow-us {
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .container .social-media .follow-us .text {
  color: #fff;
  font-size: 23px;
}
@media (min-width: 768px) {
  .footer .container .social-media .follow-us .text {
    font-size: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container .social-media .follow-us .text {
    font-size: calc( 23px + (36 - 23) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container .social-media .follow-us .arrow {
  vertical-align: baseline;
}
.footer .container .social-media .follow-us .arrow path {
  stroke: #000;
}
.footer .container .social-media .instagram svg,
.footer .container .social-media .youtube svg,
.footer .container .social-media .twitter svg {
  height: 20px;
  width: auto;
}
.footer .container .social-media .instagram svg path,
.footer .container .social-media .youtube svg path,
.footer .container .social-media .twitter svg path {
  stroke: #888888;
  fill: #888888;
  transition: all 0.4s ease-out;
}
@media (min-width: 992px) {
  .footer .container .social-media .instagram svg,
.footer .container .social-media .youtube svg,
.footer .container .social-media .twitter svg {
    width: auto;
    height: 28px;
    transition: opacity 0.45s ease-out;
  }
  .footer .container .social-media .instagram svg:hover path,
.footer .container .social-media .youtube svg:hover path,
.footer .container .social-media .twitter svg:hover path {
    stroke: var(--primary-color);
    fill: var(--primary-color);
  }
}
.footer .container .social-media button {
  color: #ccc;
  margin-left: auto;
  width: 30px;
  height: 30px;
  transition: color 200ms ease;
}
.footer .container .social-media button:hover {
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .footer .container .social-media button {
    width: 45px;
    height: 45px;
  }
}
.footer .container .social-media button svg {
  width: 100%;
  height: 100%;
}
.footer .container .bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 4vh;
  flex-direction: column;
  border-top: 1px solid #a2a2a3;
}
@media (min-width: 768px) {
  .footer .container .bottom {
    padding-top: 5vh;
  }
}
@media (min-width: 992px) {
  .footer .container .bottom {
    flex-direction: row;
  }
}
.footer .container .bottom .left {
  font-size: 14px;
  color: #fff;
  margin-bottom: 2vh;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .footer .container .bottom .left {
    margin-bottom: 0;
    text-align: left;
  }
}
.footer .container .bottom .left span {
  color: #888;
  vertical-align: baseline;
}
.footer .container .bottom .right {
  margin-top: 6vh;
  font-size: 16px;
  color: #888;
}
@media (min-width: 992px) {
  .footer .container .bottom .right {
    font-size: 14px;
    margin: 0;
  }
}
.footer .container .bottom .right .kid {
  color: #fff;
  vertical-align: baseline;
}

.accordion {
  border-top: 1px solid #b8b8b8;
  width: 100%;
}

.accordion-container {
  border-bottom: 1px solid #b8b8b8;
}

.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 15px 0;
  color: var(--nav-fill-color);
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .accordion-toggle {
    padding: 35px 0;
  }
}
.accordion-toggle .accordion-title {
  display: inline-block;
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #161619;
  line-height: 1.4;
  max-width: calc(100% - 60px);
  transition: opacity 0.3s ease;
}
@media (min-width: 767px) {
  .accordion-toggle .accordion-title {
    font-size: 80px;
  }
}
@media (min-width: 767px) and (max-width: 1920px) {
  .accordion-toggle .accordion-title {
    font-size: calc( 25px + (80 - 25) * (( 100vw - 767px ) / (1920 - 767)) );
  }
}
.accordion-toggle .accordion-title:hover {
  opacity: 1;
}
.accordion-toggle .accordion-title span {
  vertical-align: baseline;
  color: var(--primary-color);
}
.accordion-toggle .circle {
  display: grid;
  place-items: center;
  width: clamp(32px, 5vw ,70px);
  height: clamp(32px, 5vw ,70px);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.5;
  rotate: 180deg;
  transition: rotate 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.accordion-toggle .circle svg {
  width: 35%;
  height: 35%;
}
.accordion-toggle .circle .line {
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-toggle .circle .line.horizontal {
  width: 13px;
  height: 2px;
}
.accordion-toggle .circle .line.vertical {
  height: 13px;
  width: 2px;
  transition: transform 0.2s ease-in;
}
.accordion-toggle.open .circle {
  rotate: 0deg;
  border-color: #000;
}

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

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

.accordion-content {
  display: none;
  padding-bottom: 30px;
  overflow: auto;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .accordion-content {
    padding-bottom: 70px;
  }
}
.accordion-content .wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
}
.accordion-content .wrapper p {
  font-size: 14px;
  flex: 1 0 100%;
  font-family: "SF Pro Display Light", Arial, Helvetica, sans-serif;
  color: #666;
}
@media (min-width: 767px) {
  .accordion-content .wrapper p {
    font-size: 32px;
  }
}
@media (min-width: 767px) and (max-width: 1920px) {
  .accordion-content .wrapper p {
    font-size: calc( 14px + (32 - 14) * (( 100vw - 767px ) / (1920 - 767)) );
  }
}
@media (min-width: 768px) {
  .accordion-content .wrapper p {
    flex: 1 0 50%;
  }
}
.accordion-content .wrapper p span {
  vertical-align: baseline;
  color: var(--primary-color);
  padding-right: 6px;
}

#pointer {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 99999;
  top: 50%;
  left: 50%;
  opacity: 0;
}
#pointer .main-circle {
  position: absolute;
  top: 50%;
  transform: scale(1) translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  background: #eebf37;
  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: #eebf37;
  transition: all 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
  display: flex;
  opacity: 0;
  justify-content: space-between;
}
#pointer .arrows i {
  font-size: 25px;
}
#pointer .draggable {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translatey(-50%);
}
#pointer .draggable .drag-circle {
  fill: transparent;
  stroke: #eebf37;
  stroke-width: 2px;
  stroke-dasharray: 60;
  transition: all 1s cubic-bezier(0.37, 0.01, 0, 0.98), stroke-dasharray 1.5s 0.1s cubic-bezier(0.37, 0.01, 0, 0.98);
  stroke-dashoffset: 0;
  opacity: 0;
  transform: scale(0) rotate(0);
  transform-origin: center;
}
#pointer .wrapper-play {
  position: relative;
  width: 100%;
  height: 100%;
}
#pointer .wrapper-play .circle-dashed {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.5);
  transform-origin: center;
  transition: all 0.3s ease;
}
#pointer .wrapper-play .circle-dashed circle {
  transform-origin: center;
  -webkit-animation: rotating 6s linear infinite;
  animation: rotating 6s linear infinite;
}
#pointer .wrapper-play .ic-play {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  color: #eebf37;
  transition: all 0.3s ease;
  transform: translate3d(-38%, -50%, 0) scale(0);
}
#pointer .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  color: #fff;
  font-family: "Gotham-Medium", Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0;
  transition: all 0.3s;
  transform: translateX(-50%);
  opacity: 0;
}
#pointer .text span {
  position: relative;
  background: #111;
  padding: 5px 8px;
  white-space: nowrap;
}
#pointer.on-play-video {
  /*.circle-dashed {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  } */
}
#pointer.on-play-video .main-circle {
  transition: all 0.3s;
  opacity: 0.4;
  width: 60px;
  height: 60px;
  background: rgba(238, 191, 55, 0.4);
  *border: 2px solid #eebf37;
}
#pointer.on-play-video .wrapper-play .ic-play {
  opacity: 1;
  transform: translate3d(-42%, -50%, 0) scale(0.5);
}
#pointer.on-play-video .text {
  bottom: -10px !important;
}
#pointer.active .main-circle {
  transition: all 0.3s;
  opacity: 0.4;
  width: 60px;
  height: 60px;
}
#pointer.active-with-text .main-circle {
  transition: all 0.3s;
  opacity: 0.9;
  width: 120px;
  height: 120px;
}
#pointer.active-with-text .main-circle .inner-text span {
  opacity: 1;
  font-size: 16px;
}
#pointer.drag .main-circle {
  width: 0;
  height: 0;
}
#pointer.drag .arrows {
  width: 80px;
  opacity: 1;
  transition-delay: 0.2s;
}
#pointer.drag .draggable .drag-circle {
  stroke-dasharray: 200;
  opacity: 1;
  transform: scale(1) rotate(280deg);
}
#pointer.discover .main-circle {
  width: 110px;
  height: 110px;
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 1;
  transition: all 0 ease-in-out;
}
#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;
}

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

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-secondary {
  position: relative;
  display: inline-block;
  min-width: 180px;
  padding: 15px 25px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #fff;
  border-color: #fff;
  text-align: center;
  letter-spacing: 1px;
  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;
}
@media (min-width: 992px) {
  .btn-secondary {
    padding: 20px 35px;
  }
}
.btn-secondary:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: right center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-secondary:hover {
  color: #000;
  background-color: transparent;
}
.btn-secondary:hover .fill {
  fill: #fff;
}
.btn-secondary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
@media (max-width: 767px) {
  .btn-secondary {
    font-size: 11px;
  }
}

.button-simple {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 5px 0;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.button-simple span {
  color: #fff;
  vertical-align: baseline;
}
.button-simple::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  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: 2px;
  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;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.6;
}
.button-simple.white::before, .button-simple.white::after {
  background-color: #fff;
}

.button-primary {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  position: relative;
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  border-radius: 50px;
  transition: padding 400ms cubic-bezier(0.37, 0.01, 0, 0.98);
  z-index: 1;
  isolation: isolate;
}
@media (min-width: 992px) {
  .button-primary {
    height: 60px;
  }
}
.button-primary .btn-copy {
  position: relative;
  font-size: 18px;
  color: #0a0a0a;
  padding-inline: 30px;
  transition: color 400ms cubic-bezier(0.37, 0.01, 0, 0.98), transform 400ms cubic-bezier(0.37, 0.01, 0, 0.98);
}
@media (min-width: 992px) {
  .button-primary .btn-copy {
    font-size: 22px;
  }
}
.button-primary .btn-copy .desktop {
  display: none;
}
@media (min-width: 992px) {
  .button-primary .btn-copy .mobile {
    display: none;
  }
  .button-primary .btn-copy .desktop {
    display: flex;
  }
}
.button-primary .background {
  position: absolute;
  right: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 40px;
  transition: width 400ms cubic-bezier(0.37, 0.01, 0, 0.98), height 400ms cubic-bezier(0.37, 0.01, 0, 0.98), background-color 400ms cubic-bezier(0.37, 0.01, 0, 0.98);
  z-index: -1;
}
@media (min-width: 992px) {
  .button-primary .background {
    height: 60px;
  }
}
.button-primary .background .svg-container {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  overflow: hidden;
  transform: translateX(-2px);
  opacity: 0;
}
.button-primary .background .svg-container svg {
  opacity: 0;
  color: #0a0a0a;
}
.button-primary .background .svg-container.down {
  rotate: -90deg;
}
.button-primary .background .svg-container.right {
  rotate: -180deg;
}
.button-primary .background .svg-container.right svg {
  transform: translateX(60px);
}
.button-primary.dark .btn-copy {
  color: #fff;
}
.button-primary.dark .background {
  background-color: #0a0a0a;
}
.button-primary.dark .background svg {
  color: #fff;
}
.button-primary .arrow {
  display: none;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .button-primary .arrow {
    display: flex;
    width: 25px;
    height: 25px;
  }
}
.button-primary .arrow svg {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}
.button-primary .arrow svg:last-child {
  transform: translateX(-120%);
}
@media (min-width: 992px) {
  .button-primary .arrow svg {
    width: 18px;
    height: 25px;
  }
}
.button-primary .arrow svg path {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .button-primary.mouseover .btn-copy {
    color: #fff;
    transform: translateX(-35px);
  }
  .button-primary.mouseover .background {
    width: 45px;
    height: 45px;
  }
  .button-primary.mouseover .background .svg-container {
    opacity: 1;
  }
  @-webkit-keyframes topToBottom {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    60% {
      opacity: 1;
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-20px);
      opacity: 0;
    }
  }
  @keyframes topToBottom {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    60% {
      opacity: 1;
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-20px);
      opacity: 0;
    }
  }
  .button-primary.mouseover .background .svg-container.down svg {
    -webkit-animation-name: topToBottom;
            animation-name: topToBottom;
    -webkit-animation-duration: 1600ms;
            animation-duration: 1600ms;
    -webkit-animation-delay: 160ms;
            animation-delay: 160ms;
    -webkit-animation-timing-function: cubic-bezier(0.37, 0.01, 0, 0.98);
            animation-timing-function: cubic-bezier(0.37, 0.01, 0, 0.98);
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  @-webkit-keyframes leftToRight {
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  @keyframes leftToRight {
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  .button-primary.mouseover .background .svg-container.right svg {
    -webkit-animation-name: leftToRight;
            animation-name: leftToRight;
    -webkit-animation-duration: 400ms;
            animation-duration: 400ms;
    -webkit-animation-delay: 160ms;
            animation-delay: 160ms;
    -webkit-animation-timing-function: slideIn;
            animation-timing-function: slideIn;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .button-primary.mouseover.dark .btn-copy {
    color: #0a0a0a;
  }
}

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: 1400px;
  margin: 0 auto;
}
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%;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 768px) {
  section .container-frame .container,
footer .container-frame .container,
figure .container-frame .container,
article .container-frame .container {
    padding: 0 calc(2vw + 30px);
  }
}
@media (min-width: 1200px) {
  section .container-frame .container,
footer .container-frame .container,
figure .container-frame .container,
article .container-frame .container {
    padding: 0 calc(5vw + 30px);
    width: calc(100% - 96px);
    margin-left: 96px;
  }
}

.navigation-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  height: 70px;
  width: 100vw;
  transition: all 0.3s ease-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 1200px) {
  .navigation-bar {
    background: transparent;
    height: 100%;
    width: 96px;
    background-color: transparent;
  }
}
.navigation-bar.hide:not(.opened) {
  transform: translateY(-80px);
}
@media (min-width: 1200px) {
  .navigation-bar.hide:not(.opened) {
    transform: translateY(0);
  }
}
.navigation-bar.solid, .navigation-bar.solid-default {
  background-color: #000;
  border-bottom: 1px solid rgba(20, 20, 20, 0);
}
.navigation-bar.solid .wrapper-logo svg path:not(.bar),
.navigation-bar.solid .wrapper-logo svg rect, .navigation-bar.solid-default .wrapper-logo svg path:not(.bar),
.navigation-bar.solid-default .wrapper-logo svg rect {
  fill: #fff !important;
}
.navigation-bar.solid .burger-button .fill, .navigation-bar.solid-default .burger-button .fill {
  background-color: #fff !important;
}
.navigation-bar.opened .wrapper-logo svg path:not(.bar),
.navigation-bar.opened .wrapper-logo svg rect {
  fill: #fff !important;
}
.navigation-bar.opened .burger-button .fill {
  background-color: #fff !important;
}
.navigation-bar.opened .wrapper-copyright span {
  color: #fff !important;
}
.navigation-bar .nav-modules {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 100;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules {
    flex-direction: column;
  }
}
.navigation-bar .nav-modules.desktop {
  display: none;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules.desktop {
    display: flex;
  }
}
.navigation-bar .nav-modules.mobile {
  display: flex;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules.mobile {
    display: none;
  }
}
.navigation-bar .nav-modules .border-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  background-color: #727272;
  opacity: 0.3;
}
.navigation-bar .nav-modules .wrapper-logo {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .navigation-bar .nav-modules .wrapper-logo {
    margin-left: calc(2vw + 30px);
  }
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .wrapper-logo {
    margin-left: 0;
    margin-top: 30px;
  }
}
.navigation-bar .nav-modules .wrapper-logo img {
  width: 40px;
}
.navigation-bar .nav-modules .wrapper-logo svg {
  height: 100px;
}
.navigation-bar .nav-modules .wrapper-logo svg path:not(.bar),
.navigation-bar .nav-modules .wrapper-logo svg rect {
  fill: var(--nav-logo-color);
  transition: fill 0.3s ease-out;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .wrapper-logo svg path:not(.bar),
.navigation-bar .nav-modules .wrapper-logo svg rect {
    fill: var(--nav-logo-color);
  }
}
.navigation-bar .nav-modules .burger-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  z-index: auto;
  display: flex;
  align-items: center;
  width: 35px;
  height: 34px;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .navigation-bar .nav-modules .burger-button {
    right: calc(2vw + 30px);
  }
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .burger-button {
    right: auto;
  }
}
.navigation-bar .nav-modules .burger-button .content {
  position: relative;
  height: 13px;
  width: 100%;
}
.navigation-bar .nav-modules .burger-button .content .bar {
  position: absolute;
  left: 0;
  width: 100%;
  transform-origin: right center;
  transition: background-color 0.3s ease-out;
}
.navigation-bar .nav-modules .burger-button .content .bar .fill {
  width: 100%;
  height: 1px;
  background-color: var(--nav-burguer-color);
  transition: background-color 0.3s ease-out;
  will-change: transform;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .burger-button .content .bar .fill {
    background-color: var(--nav-burguer-color);
  }
}
.navigation-bar .nav-modules .burger-button .content .bar.top {
  top: 0;
}
.navigation-bar .nav-modules .burger-button .content .bar.middle {
  top: 50%;
  margin-top: -0.5px;
}
.navigation-bar .nav-modules .burger-button .content .bar.bottom {
  bottom: 0;
}
.navigation-bar .nav-modules .wrapper-copyright {
  margin-bottom: 30px;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: none;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-modules .wrapper-copyright {
    display: flex;
    align-items: center;
  }
}
.navigation-bar .nav-modules .wrapper-copyright:hover .back-home .text {
  color: #f2f2f2;
}
.navigation-bar .nav-modules .wrapper-copyright .text {
  vertical-align: baseline;
  transition: color 0.4s ease-out;
  display: contents;
  position: relative;
  transform: translateY(-100%);
  font-weight: 400;
  font-size: 13px;
  font-family: "SF Pro Display", Arial, Helvetica, sans-serif;
  color: var(--nav-copyright-color);
}
.navigation-bar .nav-modules .wrapper-copyright .arrow {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin: 20px;
  rotate: 180deg;
  color: var(--nav-copyright-color);
}
.navigation-bar .nav-modules .wrapper-copyright .back-home {
  display: contents;
  -webkit-animation-name: fadeIn 500ms ease;
          animation-name: fadeIn 500ms ease;
}
.navigation-bar .nav-modules .wrapper-copyright .back-home.hide {
  display: none;
}
.navigation-bar .nav-menu-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.navigation-bar .nav-menu-fullscreen .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #050505;
  z-index: 1;
  pointer-events: none;
}
.navigation-bar .nav-menu-fullscreen .container {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 99;
  transform: translateX(-120vw);
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: calc(100% - 60px);
  pointer-events: all;
  gap: 20px;
}
@media (min-width: 768px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu {
    width: calc(100% - 2vw - 60px);
  }
}
@media (min-width: 1200px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu {
    width: auto;
  }
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item {
  display: inline-block;
  width: auto;
  position: relative;
  text-align: left;
  overflow: hidden;
  z-index: 8;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item {
    text-align: center;
  }
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item a {
  display: inline-block;
  color: #888888;
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #fff;
  opacity: 1;
  pointer-events: all;
  text-align: center;
  transform-origin: left center;
  transition: opacity 0.4s ease-out;
  font-size: clamp(35px, 9vw,70px);
}
@media (min-width: 768px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item a {
    font-size: 45px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item a {
    font-size: 94px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1400px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item a {
    font-size: calc( 45px + (94 - 45) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 1200px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item a {
    opacity: 0.15;
  }
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item.active a {
  opacity: 1 !important;
  color: #fff;
}
html[data-device=desktop] .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item:hover {
  z-index: 10;
}
html[data-device=desktop] .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.item:hover a {
  opacity: 1 !important;
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 3vh;
  gap: 10px;
  position: absolute;
  bottom: 5vh;
}
@media (min-width: 1200px) {
  .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media {
    position: relative;
    bottom: 0;
  }
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .follow-us {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #fff;
  margin-right: 20px;
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-instagram svg,
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-twitter svg,
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-youtube svg {
  height: 22px;
  width: 38px;
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-instagram svg path,
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-twitter svg path,
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-youtube svg path {
  fill: #666;
  transition: fill 0.4s ease-out;
}
html[data-device=desktop] .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-instagram:hover svg path,
html[data-device=desktop] .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-twitter:hover svg path,
html[data-device=desktop] .navigation-bar .nav-menu-fullscreen .container ul.nav-menu li.social-media .ic-youtube:hover svg path {
  fill: #fff;
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu .wrapper-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  pointer-events: none;
}
.navigation-bar .nav-menu-fullscreen .container ul.nav-menu .wrapper-bg .media {
  height: 80vh;
  aspect-ratio: 1/1;
  /* 100 / 98 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(28.63% 0%, 127.76% 98.08%, 127.76% 125.04%, 0% 0.01%, 28.63% 0.01%, 28.63% 0%);
          clip-path: polygon(28.63% 0%, 127.76% 98.08%, 127.76% 125.04%, 0% 0.01%, 28.63% 0.01%, 28.63% 0%);
  opacity: 0;
}

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

@-webkit-keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
img.three {
  width: 100%;
  display: block;
  opacity: 0;
}

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

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

.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", Arial, Helvetica, sans-serif;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress__siteby span {
  opacity: 0;
}

.line {
  -webkit-clip-path: polygon(0% 0%, 120% 0%, 120% 120%, 0% 120%) !important;
          clip-path: polygon(0% 0%, 120% 0%, 120% 120%, 0% 120%) !important;
}

.marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
  position: relative;
  overflow: hidden;
}
.marquee .gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  background: black;
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, black 100%);
}
@media (min-width: 992px) {
  .marquee .gradient {
    background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, black 100%);
  }
}
.marquee .text {
  display: flex;
  white-space: nowrap;
  font-size: 53px;
  color: #fff;
  z-index: 2;
  padding: 0;
  align-items: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .marquee .text {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .marquee .text {
    font-size: calc( 53px + (100 - 53) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .marquee .text {
    z-index: 1;
    padding: 50px 0;
  }
}
.marquee .text span {
  color: var(--primary-color);
}
.marquee .text .bullet {
  color: #fff;
  vertical-align: middle;
  font-size: 26px;
}
@media (min-width: 768px) {
  .marquee .text .bullet {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .marquee .text .bullet {
    font-size: calc( 26px + (100 - 26) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}

.transition .opacity-container {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
}
.transition .transition-container {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  overflow: hidden;
}
.transition .transition-container .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 120px;
  z-index: 1;
}
@media (min-width: 992px) {
  .transition .transition-container .logo-container {
    max-width: 250px;
  }
}
.transition .transition-container .logo-container svg {
  width: 100%;
  height: auto;
}
.transition .transition-container .image-container {
  height: auto;
  max-height: 80vh;
  max-width: 80vw;
  aspect-ratio: 100/98;
  overflow: hidden;
  z-index: 2;
  -webkit-clip-path: polygon(28.63% 0%, 127.76% 98.08%, 127.76% 125.04%, 0% 0.01%, 28.63% 0.01%, 28.63% 0%);
          clip-path: polygon(28.63% 0%, 127.76% 98.08%, 127.76% 125.04%, 0% 0.01%, 28.63% 0.01%, 28.63% 0%);
}
.transition .transition-container .image-container .content {
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  transform: translateY(100%);
}
.transition .transition-container .image-container .content img {
  width: 102%;
  height: 102%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.transition .transition-container .text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 3;
}
.transition .transition-container .text-container .text {
  overflow: hidden;
}
@media (min-width: 768px) {
  .transition .transition-container .text-container .text {
    padding-bottom: 15px;
  }
}
.transition .transition-container .text-container .text h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 400;
  transform: translateY(200px);
}
@media (min-width: 768px) {
  .transition .transition-container .text-container .text h1 {
    font-size: 70px;
  }
}
@media (min-width: 992px) {
  .transition .transition-container .text-container .text h1 {
    font-size: 138px;
  }
}
.transition .transition-container .text-container .text h1:nth-child(2) {
  transform: translateY(200px);
}

.tagname {
  font-family: "SF Pro Display Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #888888;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .tagname {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .tagname {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

body.lock {
  overflow: hidden;
}
