@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);
/* App styles */
/* Root vars */
:root {
  --primary-color: #000;
  /* Orange */
  --white: #fff;
  --dark: #000;
  --gray: #666;
  --light-gray: #ccc;
  --menu-mobile-color: #000;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: var(--dark) !important;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

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

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

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

html {
  *overflow: hidden;
}

html,
body {
  height: 100%;
  -webkit-tap-highlight-color: transparent !important;
}

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

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

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

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

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

@-webkit-keyframes zoominInfinite {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.5);
    opacity: 1;
  }
  90% {
    transform: scale(4);
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
  100% {
    transform: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full-height {
  height: 100%;
}

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

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

body.lock {
  overflow: hidden;
}

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

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

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

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

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

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

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

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  opacity: 0;
  width: 10px;
  border-radius: 0;
  margin: 0;
  cursor: -webkit-grab;
  cursor: grab;
}
@media (min-width: 992px) {
  .c-scrollbar_thumb {
    opacity: 2;
  }
}

.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-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* App Pages, Sections & Components styles */
section .container,
footer .container,
figure .container,
nav .container,
div .container,
article .container {
  width: 100%;
}
section .container-boxed,
footer .container-boxed,
figure .container-boxed,
nav .container-boxed,
div .container-boxed,
article .container-boxed {
  width: 100%;
  max-width: 1456px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 768px) {
  section .container-boxed,
footer .container-boxed,
figure .container-boxed,
nav .container-boxed,
div .container-boxed,
article .container-boxed {
    padding: 0 7vw;
  }
}
@media (min-width: 1600px) {
  section .container-boxed,
footer .container-boxed,
figure .container-boxed,
nav .container-boxed,
div .container-boxed,
article .container-boxed {
    padding: 0;
  }
}

.footer {
  height: 100%;
  padding: 14vh 0;
}
.footer .container-boxed {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .container-boxed .left-column {
  width: 100%;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .footer .container-boxed .left-column {
    width: 70%;
    margin-bottom: 0;
  }
}
.footer .container-boxed .left-column .main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.footer .container-boxed .left-column .main span {
  color: #fff;
  font-size: 70px;
  display: flex;
  align-items: center;
  letter-spacing: -0.2vw;
  font-weight: 500;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .footer .container-boxed .left-column .main span {
    font-size: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container-boxed .left-column .main span {
    font-size: calc( 70px + (200 - 70) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container-boxed .left-column .main span .img-container {
  width: 32%;
  overflow: hidden;
  margin-right: 15px;
}
.footer .container-boxed .left-column .main span .img-container img {
  width: 100%;
}
.footer .container-boxed .left-column .btn-secondary {
  margin-top: 45px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .footer .container-boxed .left-column .btn-secondary {
    font-size: 46px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container-boxed .left-column .btn-secondary {
    font-size: calc( 20px + (46 - 20) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .footer .container-boxed .left-column .btn-secondary {
    margin-top: 50px;
  }
}
.footer .container-boxed .right-column {
  width: 100%;
}
@media (min-width: 992px) {
  .footer .container-boxed .right-column {
    width: 20%;
  }
}
.footer .container-boxed .right-column .box {
  font-size: 18px;
}
@media (min-width: 768px) {
  .footer .container-boxed .right-column .box {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container-boxed .right-column .box {
    font-size: calc( 18px + (20 - 18) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container-boxed .right-column .box:first-child .title {
  margin-top: 0;
}
.footer .container-boxed .right-column .box .title {
  color: var(--white);
  margin: 50px 0 10px 0;
}
@media (min-width: 992px) {
  .footer .container-boxed .right-column .box .title {
    margin-bottom: 20px;
    margin-top: 60px;
  }
}
.footer .container-boxed .right-column .box li {
  margin-bottom: 20px;
  color: var(--light-gray);
}
.footer .container-boxed .right-column .box li a {
  color: var(--light-gray);
}
.footer .container-boxed .sign {
  width: 100%;
  text-align: center;
  color: var(--light-gray);
  font-size: 12px;
  vertical-align: bottom;
  margin-top: 8vh;
}
@media (min-width: 768px) {
  .footer .container-boxed .sign {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .container-boxed .sign {
    font-size: calc( 12px + (18 - 12) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .container-boxed .sign .color {
  color: var(--white);
  vertical-align: bottom;
  font-weight: 600;
}

/** HOME PORTRAIT **/
.portrait {
  width: 100%;
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}
.portrait .phrase {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 30px;
  position: absolute;
  left: 50%;
  top: 150vh;
  text-align: left;
  align-items: flex-start;
  z-index: 9999999999999;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .portrait .phrase {
    top: 220vh;
  }
}
.portrait .phrase .line {
  overflow: hidden;
  padding-bottom: 8px;
}
.portrait .phrase .line .char {
  transform: translateY(200px);
}
.portrait .phrase span {
  font-weight: 500;
  color: #fff;
  font-size: 38px;
}
@media (min-width: 768px) {
  .portrait .phrase span {
    font-size: 90px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .portrait .phrase span {
    font-size: calc( 38px + (90 - 38) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.portrait .container-boxed {
  margin-top: 0;
  position: absolute;
  top: 6vh;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 30%);
  padding: 0;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 2000px) {
  .portrait .container-boxed {
    top: 12vh;
  }
}
.portrait .container-boxed .box-title {
  margin: 0 auto;
  padding: 0;
}
.portrait .container-boxed .box-title h1 {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: -0.2vw;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 55px;
  position: relative;
  z-index: 9999;
}
@media (min-width: 768px) {
  .portrait .container-boxed .box-title h1 {
    font-size: 230px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .portrait .container-boxed .box-title h1 {
    font-size: calc( 55px + (230 - 55) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .portrait .container-boxed .box-title h1 {
    font-size: 117px;
  }
}
@media (min-width: 992px) {
  .portrait .container-boxed .box-title h1 {
    font-size: 150px;
  }
}
@media (min-width: 1200px) {
  .portrait .container-boxed .box-title h1 {
    font-size: 200px;
  }
}
@media (min-width: 1600px) {
  .portrait .container-boxed .box-title h1 {
    font-size: 230px;
  }
}
.portrait .container-boxed .box-title h1 span {
  font-size: 22px;
  vertical-align: text-bottom;
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
}
@media (min-width: 768px) {
  .portrait .container-boxed .box-title h1 span {
    font-size: 95px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .portrait .container-boxed .box-title h1 span {
    font-size: calc( 22px + (95 - 22) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.portrait .video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.portrait .video:before {
  content: "";
  display: block;
}
.portrait .video.video--lightbox {
  display: none;
}
.portrait .video .video__inner {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
}
.portrait .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.portrait .background .background__bg {
  position: absolute;
  width: 102%;
  height: 102%;
  left: -1%;
  top: -1%;
  right: -1%;
  bottom: -1%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.portrait .gallery {
  position: relative;
  width: 100vw;
  height: 200vh;
}
.portrait .gallery::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 4px;
  width: 100vw;
  background-color: #000;
}
@media (min-width: 768px) {
  .portrait .gallery {
    height: 300vh;
  }
}
.portrait .gallery .gallery__inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  z-index: 0;
}
@media (min-width: 768px) {
  .portrait .gallery .gallery__inner {
    height: 180vh;
    min-height: 180vh;
  }
}
.portrait .gallery .gallery__inner .gallery__inner__column {
  display: block;
  z-index: 0;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 {
  position: absolute;
  width: 30vw;
  height: auto;
  top: 0;
  left: 35vw;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item {
  position: relative;
  width: 30vw;
  height: 40vw;
  margin-top: 0;
  z-index: 0;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item.item__0 {
  z-index: 4;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item .video {
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item .video .video__inner {
  -webkit-clip-path: polygon(10vw 28vw, 90vw 28vw, 90vw 85vh, 10vw 85vh);
  clip-path: polygon(10vw 28vw, 90vw 28vw, 90vw 85vh, 10vw 85vh);
}
@media (min-width: 768px) {
  .portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item .video .video__inner {
    -webkit-clip-path: polygon(25vw 20vw, 75vw 20vw, 75vw 100vh, 25vw 100vh);
    clip-path: polygon(25vw 20vw, 75vw 20vw, 75vw 100vh, 25vw 100vh);
  }
}
@media (min-width: 1600px) {
  .portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item .video .video__inner {
    -webkit-clip-path: polygon(30vw 16vw, 70vw 16vw, 70vw 100vh, 30vw 100vh);
    clip-path: polygon(30vw 16vw, 70vw 16vw, 70vw 100vh, 30vw 100vh);
  }
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item .video .video__inner img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 10vw;
  left: 50%;
  transform: translateX(-50%);
}

.home-introduction {
  padding: 12vh 0;
}
@media (min-width: 992px) {
  .home-introduction {
    padding: 30vh 0;
  }
}
.home-introduction .introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-introduction .introduction .img-container {
  position: relative;
  width: 55vw;
  height: 60vw;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 992px) {
  .home-introduction .introduction .img-container {
    width: 20vw;
    height: 25vw;
  }
}
.home-introduction .introduction .img-container .rotate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}
.home-introduction .introduction .img-container .rotate img {
  width: 100%;
}
.home-introduction .introduction .img-container .img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home-introduction .introduction .img-container .img img {
  width: 100%;
}
.home-introduction .introduction .text-container {
  font-size: 22px;
  color: #fff;
  text-align: center;
  margin-bottom: 8vh;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: -1px;
  z-index: 1;
  transform: translateY(-10px);
}
@media (min-width: 768px) {
  .home-introduction .introduction .text-container {
    font-size: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .home-introduction .introduction .text-container {
    font-size: calc( 22px + (70 - 22) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .home-introduction .introduction .text-container {
    transform: translateY(-20px);
    line-height: 1.3;
  }
}
@media (min-width: 1600px) {
  .home-introduction .introduction .text-container {
    transform: translateY(-60px);
  }
}
.home-introduction .introduction .text-container h1 {
  font-weight: 400;
}
.home-introduction .introduction .text-container .sm {
  display: block;
}
@media (min-width: 992px) {
  .home-introduction .introduction .text-container .sm {
    display: none;
  }
}
.home-introduction .introduction .text-container .md {
  display: none;
}
@media (min-width: 992px) {
  .home-introduction .introduction .text-container .md {
    display: block;
  }
}
.home-introduction .introduction .text-container span {
  position: relative;
  vertical-align: baseline;
  overflow: hidden;
}
.home-introduction .introduction .text-container span .line {
  overflow: hidden;
}
.home-introduction .introduction .text-container span .bottom-line {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
}
@media (min-width: 992px) {
  .home-introduction .introduction .text-container span .bottom-line {
    height: 2px;
    bottom: -3px;
  }
}
.home-introduction .introduction .sign {
  width: 55vw;
}
@media (min-width: 992px) {
  .home-introduction .introduction .sign {
    width: 20vw;
  }
}
.home-introduction .introduction .sign svg {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.home-introduction .introduction-secondary {
  padding-top: 12vh;
}
.home-introduction .introduction-secondary .title {
  color: #fff;
  margin-bottom: 6vh;
}
.home-introduction .introduction-secondary .wrapper__flex {
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.8;
  font-size: 14px;
  color: #999999;
}
@media (min-width: 768px) {
  .home-introduction .introduction-secondary .wrapper__flex {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .home-introduction .introduction-secondary .wrapper__flex {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.home-introduction .introduction-secondary .wrapper__flex .left {
  width: 100%;
}
@media (min-width: 992px) {
  .home-introduction .introduction-secondary .wrapper__flex .left {
    width: 46%;
  }
}
.home-introduction .introduction-secondary .wrapper__flex .right {
  width: 100%;
}
@media (min-width: 992px) {
  .home-introduction .introduction-secondary .wrapper__flex .right {
    width: 46%;
  }
}

.services {
  position: relative;
  padding-top: 16vh;
}
.services .container-boxed {
  position: relative;
}
.services .introduction-secondary .title {
  color: #fff;
  margin-bottom: 6vh;
  font-size: 14px;
}
@media (min-width: 768px) {
  .services .introduction-secondary .title {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .services .introduction-secondary .title {
    font-size: calc( 14px + (24 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.services .introduction-secondary .wrapper__flex {
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.8;
  font-size: 14px;
  color: #999999;
}
@media (min-width: 768px) {
  .services .introduction-secondary .wrapper__flex {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .services .introduction-secondary .wrapper__flex {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.services .introduction-secondary .wrapper__flex ul li {
  list-style-type: disc;
  list-style-position: inside;
}
.services .introduction-secondary .wrapper__flex .left {
  width: 100%;
}
@media (min-width: 992px) {
  .services .introduction-secondary .wrapper__flex .left {
    width: 46%;
  }
}
.services .introduction-secondary .wrapper__flex .right {
  width: 100%;
}
@media (min-width: 992px) {
  .services .introduction-secondary .wrapper__flex .right {
    width: 46%;
  }
}

.about-introduction {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 12vh 0;
}
@media (min-width: 992px) {
  .about-introduction {
    padding: 0;
  }
}
.about-introduction .bg {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .about-introduction .bg {
    position: relative;
  }
}
.about-introduction .bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-introduction .container-boxed {
  height: 100%;
  width: 100%;
  top: 0;
  position: relative;
}
@media (min-width: 992px) {
  .about-introduction .container-boxed {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-introduction .container-boxed .row-top {
  left: 0;
  top: 12%;
  z-index: 1;
  position: relative;
  margin-bottom: 45vh;
}
@media (min-width: 992px) {
  .about-introduction .container-boxed .row-top {
    margin-bottom: 0;
  }
}
.about-introduction .container-boxed .row-top .tagname {
  font-size: 16px;
  color: #999999;
}
@media (min-width: 768px) {
  .about-introduction .container-boxed .row-top .tagname {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-introduction .container-boxed .row-top .tagname {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.about-introduction .container-boxed .row-top .title {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  margin-top: 30px;
  line-height: 0.9;
  font-size: 58px;
}
@media (min-width: 992px) {
  .about-introduction .container-boxed .row-top .title {
    font-size: 145px;
  }
}
@media (min-width: 1600px) {
  .about-introduction .container-boxed .row-top .title {
    font-size: 170px;
  }
}
.about-introduction .container-boxed .row-bottom {
  left: 0;
  top: 40%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.about-introduction .container-boxed .row-bottom .top {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .about-introduction .container-boxed .row-bottom .top {
    flex-direction: row;
  }
}
.about-introduction .container-boxed .row-bottom .top .tagname {
  font-size: 30px;
  font-size: 16px;
  line-height: 1.3;
  color: #999999;
}
@media (min-width: 768px) {
  .about-introduction .container-boxed .row-bottom .top .tagname {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-introduction .container-boxed .row-bottom .top .tagname {
    font-size: calc( 16px + (30 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .about-introduction .container-boxed .row-bottom .top .tagname {
    color: #fff;
  }
}
.about-introduction .container-boxed .row-bottom .top .title {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  margin-top: 30px;
  line-height: 0.9;
  font-size: 58px;
}
@media (min-width: 992px) {
  .about-introduction .container-boxed .row-bottom .top .title {
    font-size: 145px;
  }
}
@media (min-width: 1600px) {
  .about-introduction .container-boxed .row-bottom .top .title {
    font-size: 170px;
    margin-top: 0;
  }
}
.about-introduction .container-boxed .row-bottom .copy {
  line-height: 1.8;
  font-size: 14px;
  font-size: 14px;
  width: 100%;
  margin-left: auto;
  color: #999999;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .about-introduction .container-boxed .row-bottom .copy {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-introduction .container-boxed .row-bottom .copy {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .about-introduction .container-boxed .row-bottom .copy {
    width: 50%;
    margin-top: 80px;
  }
}

.about-firm {
  position: relative;
}
.about-firm .container-boxed {
  position: relative;
  padding-top: 33vw;
}
.about-firm .container-boxed.first {
  padding-top: 33vw;
}
@media (min-width: 992px) {
  .about-firm .container-boxed.first {
    padding-top: 0;
  }
}
.about-firm .container-boxed .img-container {
  width: 46vw;
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .about-firm .container-boxed .img-container {
    width: 38vw;
    left: 0;
    right: auto;
  }
}
.about-firm .container-boxed .img-container img {
  width: 100%;
}
.about-firm .container-boxed .text-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-firm .container-boxed .text-container .top {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .about-firm .container-boxed .text-container .top {
    flex-direction: row;
  }
}
.about-firm .container-boxed .text-container .top .tagname {
  font-size: 16px;
  line-height: 1.3;
  color: #999999;
}
@media (min-width: 768px) {
  .about-firm .container-boxed .text-container .top .tagname {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-firm .container-boxed .text-container .top .tagname {
    font-size: calc( 16px + (30 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .about-firm .container-boxed .text-container .top .tagname {
    color: #fff;
  }
}
.about-firm .container-boxed .text-container .top .title {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  width: 100%;
  line-height: 0.9;
  margin-top: 30px;
  font-size: 50px;
}
@media (min-width: 992px) {
  .about-firm .container-boxed .text-container .top .title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    font-size: 145px;
  }
}
@media (min-width: 1600px) {
  .about-firm .container-boxed .text-container .top .title {
    font-size: 170px;
  }
}
.about-firm .container-boxed .text-container .copy {
  line-height: 1.8;
  font-size: 14px;
  width: 100%;
  margin-left: auto;
  color: #999999;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .about-firm .container-boxed .text-container .copy {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .about-firm .container-boxed .text-container .copy {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .about-firm .container-boxed .text-container .copy {
    width: 50%;
    margin-top: 80px;
  }
}
.about-firm .container-boxed .text-container .copy span {
  font-style: italic;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 3px;
}

.services-intro {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 12vh;
}
@media (min-width: 992px) {
  .services-intro {
    padding-top: 0;
  }
}
.services-intro .img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-intro .img-container .desktop {
  display: none;
}
@media (min-width: 992px) {
  .services-intro .img-container .desktop {
    display: block;
  }
}
.services-intro .img-container .mobile {
  display: block;
}
@media (min-width: 992px) {
  .services-intro .img-container .mobile {
    display: none;
  }
}
.services-intro .img-container img {
  width: 100%;
  transform: scale(1.2);
}
@media (min-width: 992px) {
  .services-intro .img-container img {
    transform: scale(1);
  }
}
.services-intro .container-boxed {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 22%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 992px) {
  .services-intro .container-boxed {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.services-intro .container-boxed .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services-intro .container-boxed .text-container .tagname {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  color: #999999;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .services-intro .container-boxed .text-container .tagname {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .services-intro .container-boxed .text-container .tagname {
    font-size: calc( 16px + (30 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .services-intro .container-boxed .text-container .tagname {
    margin-left: 25px;
  }
}
.services-intro .container-boxed .text-container .title {
  font-size: 65px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  text-align: center;
  margin: 12vh 0 4vh 0;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .services-intro .container-boxed .text-container .title {
    font-size: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .services-intro .container-boxed .text-container .title {
    font-size: calc( 65px + (300 - 65) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.services-intro .container-boxed .text-container .title span {
  font-size: 35px;
}
@media (min-width: 768px) {
  .services-intro .container-boxed .text-container .title span {
    font-size: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .services-intro .container-boxed .text-container .title span {
    font-size: calc( 35px + (130 - 35) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .services-intro .container-boxed .text-container .title {
    margin: 5vh 0 12vh 0;
  }
}
.services-intro .container-boxed .text-container .button {
  width: 55px;
  align-items: center;
}
@media (min-width: 992px) {
  .services-intro .container-boxed .text-container .button {
    width: 150px;
  }
}
.services-intro .container-boxed .text-container .button svg {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.services .service-container {
  padding-bottom: 12vh;
}
@media (min-width: 992px) {
  .services .service-container {
    padding-bottom: 25vh;
  }
}
.services .service-container .img-container {
  width: 100%;
  overflow: hidden;
  height: 235px;
}
@media (min-width: 992px) {
  .services .service-container .img-container {
    max-width: 1456px;
    margin: 0 auto;
    height: auto;
  }
}
.services .service-container .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services .service-container .wrapper-column {
  display: flex;
  flex-direction: column;
  transform: translateY(-7vh);
}
@media (min-width: 992px) {
  .services .service-container .wrapper-column {
    justify-content: space-between;
    transform: translateY(-10vh);
    flex-direction: row;
  }
}
.services .service-container .wrapper-column .column-left {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .services .service-container .wrapper-column .column-left {
    width: 30%;
    display: block;
    padding-top: 132px;
  }
}
@media (min-width: 1600px) {
  .services .service-container .wrapper-column .column-left {
    padding-top: 200px;
  }
}
.services .service-container .wrapper-column .column-left .tagname {
  font-size: 16px;
  color: #ccc;
}
@media (min-width: 992px) {
  .services .service-container .wrapper-column .column-left .tagname {
    font-size: 30px;
    color: #fff;
  }
}
.services .service-container .wrapper-column .column-right {
  width: 100%;
}
.services .service-container .wrapper-column .column-right .title {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  line-height: 0.9;
  font-size: 40px;
}
@media (min-width: 992px) {
  .services .service-container .wrapper-column .column-right .title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    font-size: 120px;
  }
}
@media (min-width: 1600px) {
  .services .service-container .wrapper-column .column-right .title {
    font-size: 180px;
  }
}
.services .service-container .wrapper-column .column-right .subtitle {
  color: #fff;
  font-weight: 500;
  text-align: left;
  line-height: 1.2;
  margin-top: 5vh;
  font-size: 14px;
}
@media (min-width: 768px) {
  .services .service-container .wrapper-column .column-right .subtitle {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .services .service-container .wrapper-column .column-right .subtitle {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.services .service-container .wrapper-column .column-right .description {
  line-height: 1.9;
  font-size: 14px;
  color: #999999;
  margin: 2vh 0 7vh 0;
  width: 100%;
}
@media (min-width: 768px) {
  .services .service-container .wrapper-column .column-right .description {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .services .service-container .wrapper-column .column-right .description {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .services .service-container .wrapper-column .column-right .description {
    width: 80%;
    margin: 2vh 0 12vh 0;
  }
}

.blackbox-intro {
  padding-top: 15vh;
  position: relative;
}
@media (min-width: 992px) {
  .blackbox-intro {
    padding-top: 35vh;
  }
}
.blackbox-intro .swiper-container {
  width: 100%;
}
.blackbox-intro .swiper-container .swiper-slide {
  width: 100%;
  height: 415px;
}
@media (min-width: 992px) {
  .blackbox-intro .swiper-container .swiper-slide {
    height: auto;
  }
}
.blackbox-intro .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blackbox-intro .swiper-container .swiper-button-prev {
  left: 12%;
  transform: rotate(180deg);
}
.blackbox-intro .swiper-container .swiper-button-next {
  right: 12%;
}
.blackbox-intro .text-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  pointer-events: none;
  width: 100%;
}
.blackbox-intro .text-container .tagname {
  color: #999999;
  font-size: 16px;
}
@media (min-width: 768px) {
  .blackbox-intro .text-container .tagname {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .blackbox-intro .text-container .tagname {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.blackbox-intro .text-container .title {
  font-size: 50px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  margin: 20px 0;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .blackbox-intro .text-container .title {
    font-size: 170px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .blackbox-intro .text-container .title {
    font-size: calc( 50px + (170 - 50) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .blackbox-intro .text-container .title {
    margin: 40px 0;
  }
}
.blackbox-intro .text-container .copy {
  color: #cccccc;
  font-size: 14px;
}
@media (min-width: 768px) {
  .blackbox-intro .text-container .copy {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .blackbox-intro .text-container .copy {
    font-size: calc( 14px + (30 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}

.blackbox-description {
  transform: translateY(-6vh);
  z-index: 9;
  position: relative;
}
@media (min-width: 992px) {
  .blackbox-description {
    transform: translateY(-12vh);
  }
}
.blackbox-description .container-boxed {
  padding-top: 12vh;
  padding-bottom: 12vh;
}
@media (min-width: 992px) {
  .blackbox-description .container-boxed {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }
}
.blackbox-description .container-boxed:first-child {
  padding-top: 0;
}
@media (min-width: 992px) {
  .blackbox-description .container-boxed:first-child .text-container {
    padding-top: 20vh;
  }
}
.blackbox-description .container-boxed .description-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .blackbox-description .container-boxed .description-container.inverted {
    text-align: right;
    flex-direction: row-reverse;
  }
}
.blackbox-description .container-boxed .description-container .img-container {
  width: 80%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .blackbox-description .container-boxed .description-container .img-container {
    width: 50%;
  }
}
.blackbox-description .container-boxed .description-container .img-container img {
  width: 100%;
}
.blackbox-description .container-boxed .description-container .text-container {
  width: 100%;
  padding-top: 60px;
}
@media (min-width: 992px) {
  .blackbox-description .container-boxed .description-container .text-container {
    width: 40%;
    padding-top: 0;
  }
}
.blackbox-description .container-boxed .description-container .text-container .tagname {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 768px) {
  .blackbox-description .container-boxed .description-container .text-container .tagname {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .blackbox-description .container-boxed .description-container .text-container .tagname {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.blackbox-description .container-boxed .description-container .text-container .description {
  margin-top: 60px;
  font-size: 14px;
  color: #999999;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .blackbox-description .container-boxed .description-container .text-container .description {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .blackbox-description .container-boxed .description-container .text-container .description {
    font-size: calc( 14px + (24 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}

.leading-cases {
  padding: 12vh 0;
}
@media (min-width: 992px) {
  .leading-cases {
    padding: 30vh 0;
    padding-top: 0;
  }
}
.leading-cases .box-title {
  padding-bottom: 12vh;
}
.leading-cases .box-title .tagname {
  font-size: 16px;
  color: #999999;
}
@media (min-width: 768px) {
  .leading-cases .box-title .tagname {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .leading-cases .box-title .tagname {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.leading-cases .box-title .title {
  font-size: 60px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  margin: 40px 0 20px 0;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .leading-cases .box-title .title {
    font-size: 170px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .leading-cases .box-title .title {
    font-size: calc( 60px + (170 - 60) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.leading-cases .box-title .copy {
  font-size: 20px;
  color: #999999;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .leading-cases .box-title .copy {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .leading-cases .box-title .copy {
    font-size: calc( 20px + (40 - 20) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.leading-cases .leading-case {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 0;
  border-top: 1px solid #333;
  flex-wrap: wrap;
}
.leading-cases .leading-case:last-child {
  border-bottom: 0px solid #fff;
}
.leading-cases .leading-case .img-container {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .leading-cases .leading-case .img-container {
    width: 45%;
    margin-bottom: 0;
  }
}
.leading-cases .leading-case .img-container img {
  width: 100%;
}
.leading-cases .leading-case .text-container {
  width: 100%;
}
@media (min-width: 992px) {
  .leading-cases .leading-case .text-container {
    width: 50%;
  }
}
.leading-cases .leading-case .text-container .tagname {
  font-size: 14px;
  color: #999999;
}
@media (min-width: 768px) {
  .leading-cases .leading-case .text-container .tagname {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .leading-cases .leading-case .text-container .tagname {
    font-size: calc( 14px + (22 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.leading-cases .leading-case .text-container .title {
  color: #fff;
  font-size: 27px;
  margin: 30px 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .leading-cases .leading-case .text-container .title {
    font-size: 57px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .leading-cases .leading-case .text-container .title {
    font-size: calc( 27px + (57 - 27) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.leading-cases .leading-case .text-container .copy {
  font-size: 14px;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .leading-cases .leading-case .text-container .copy {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .leading-cases .leading-case .text-container .copy {
    font-size: calc( 14px + (22 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}

.news-container {
  padding-bottom: 20vh;
}
@media (min-width: 992px) {
  .news-container {
    padding-bottom: 30vh;
  }
}
.news-container .box-title {
  padding-bottom: 12vh;
}
.news-container .box-title .tagname {
  font-size: 16px;
  color: #999999;
}
@media (min-width: 768px) {
  .news-container .box-title .tagname {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .news-container .box-title .tagname {
    font-size: calc( 16px + (24 - 16) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.news-container .box-title .title {
  font-size: 43px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2vw;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .news-container .box-title .title {
    font-size: 170px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .news-container .box-title .title {
    font-size: calc( 43px + (170 - 43) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.news-container .swiper-container {
  overflow: visible;
  width: 100%;
  max-width: 75vw;
  margin-left: 0;
}
@media (min-width: 992px) {
  .news-container .swiper-container {
    max-width: 45vw;
  }
}
.news-container .swiper-container .swiper-slide .img-container {
  margin-bottom: 45px;
  width: 100%;
  overflow: hidden;
}
.news-container .swiper-container .swiper-slide .img-container img {
  width: 100%;
}
.news-container .swiper-container .swiper-slide .text-container {
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-container .swiper-container .swiper-slide .text-container .box-text .tagname {
  font-size: 14px;
  color: #999999;
}
@media (min-width: 768px) {
  .news-container .swiper-container .swiper-slide .text-container .box-text .tagname {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .news-container .swiper-container .swiper-slide .text-container .box-text .tagname {
    font-size: calc( 14px + (22 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.news-container .swiper-container .swiper-slide .text-container .box-text .title {
  color: #fff;
  font-size: 22px;
  margin: 30px 0 60px 0;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 768px) {
  .news-container .swiper-container .swiper-slide .text-container .box-text .title {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .news-container .swiper-container .swiper-slide .text-container .box-text .title {
    font-size: calc( 22px + (40 - 22) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.news-container .swiper-container .swiper-slide .text-container .box-text .copy {
  font-weight: 300;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .news-container .swiper-container .swiper-slide .text-container .box-text .copy {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .news-container .swiper-container .swiper-slide .text-container .box-text .copy {
    font-size: calc( 14px + (22 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.news-container .swiper-container .swiper-slide .text-container .box-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  border-top: 1px solid #fff;
  height: 60px;
}
.news-container .swiper-container .swiper-slide .text-container .box-down .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 50%;
  height: 60px;
}
@media (min-width: 992px) {
  .news-container .swiper-container .swiper-slide .text-container .box-down .logo {
    max-width: 25%;
  }
}
.news-container .swiper-container .swiper-slide .text-container .box-down .logo svg {
  width: 100%;
  height: 60px;
}

.navigation-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.navigation-menu .container-boxed {
  padding: 0;
  margin: 0 auto;
  max-width: 1700px;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed {
    padding: 0 30px;
  }
}
@media (min-width: 2000px) {
  .navigation-menu .container-boxed {
    padding: 0;
  }
}
.navigation-menu .container-boxed .nav-header {
  width: 100%;
  height: 65px;
  position: relative;
  pointer-events: none;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease-out 0s;
  overflow: hidden;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header {
    margin-top: 70px;
    padding: 0;
  }
}
.navigation-menu .container-boxed .nav-header .line-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--gray);
  display: none;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .line-top {
    display: block;
  }
}
.navigation-menu .container-boxed .nav-header .line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--gray);
}
.navigation-menu .container-boxed .nav-header.solid {
  height: 70px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.navigation-menu .container-boxed .nav-header.solid .c-center .logo svg path {
  fill: #4e4e4e !important;
}
.navigation-menu .container-boxed .nav-header .c-left {
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0 30px;
  z-index: 11;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-left {
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    padding: 0;
  }
}
.navigation-menu .container-boxed .nav-header .c-left .lang-selector {
  display: inline-flex;
  z-index: 0;
  align-items: center;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-left .lang-selector {
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .navigation-menu .container-boxed .nav-header .c-left .lang-selector {
    margin-right: 60px;
  }
}
.navigation-menu .container-boxed .nav-header .c-left .lang-selector a {
  font-size: 14px;
  margin-right: 6px;
  color: var(--gray);
  pointer-events: all;
  transition: all 0.3s ease-out;
  display: flex;
  cursor: pointer;
}
.navigation-menu .container-boxed .nav-header .c-left .lang-selector a.active {
  color: var(--dark);
}
.navigation-menu .container-boxed .nav-header .c-left .lang-selector a.active-dark {
  color: var(--dark);
}
.navigation-menu .container-boxed .nav-header .c-left .lang-selector a.active-light {
  color: var(--white) !important;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-left .lang-selector a {
    font-size: 16px;
  }
}
.navigation-menu .container-boxed .nav-header .c-left .lang-selector a:last-child {
  margin-right: 0;
}
.navigation-menu .container-boxed .nav-header .c-left span,
.navigation-menu .container-boxed .nav-header .c-left a {
  font-size: 18px;
  color: var(--gray);
  pointer-events: all;
  transition: all 0.3s ease-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "inter-regular", Arial, Helvetica, sans-serif;
  font-weight: 600;
  justify-content: center;
  display: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-left span,
.navigation-menu .container-boxed .nav-header .c-left a {
    margin-right: 30px;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .navigation-menu .container-boxed .nav-header .c-left span,
.navigation-menu .container-boxed .nav-header .c-left a {
    margin-right: 60px;
  }
}
.navigation-menu .container-boxed .nav-header .c-left span.active,
.navigation-menu .container-boxed .nav-header .c-left a.active {
  color: var(--dark);
}
.navigation-menu .container-boxed .nav-header .c-left span.active-dark,
.navigation-menu .container-boxed .nav-header .c-left a.active-dark {
  color: var(--dark);
}
.navigation-menu .container-boxed .nav-header .c-left span.active-light,
.navigation-menu .container-boxed .nav-header .c-left a.active-light {
  color: var(--gray);
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-left span,
.navigation-menu .container-boxed .nav-header .c-left a {
    font-size: 16px;
  }
}
.navigation-menu .container-boxed .nav-header .c-left span:last-child,
.navigation-menu .container-boxed .nav-header .c-left a:last-child {
  margin-right: 0;
}
.navigation-menu .container-boxed .nav-header .c-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  width: 125px;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-center {
    width: 210px;
  }
}
.navigation-menu .container-boxed .nav-header .c-center .logo {
  width: 100%;
  pointer-events: all;
}
.navigation-menu .container-boxed .nav-header .c-center .logo svg {
  width: 100%;
}
.navigation-menu .container-boxed .nav-header .c-center .logo svg path {
  fill: #333333;
  transition: all 0.3s ease-out;
}
.navigation-menu .container-boxed .nav-header .c-center .logo.white svg path {
  fill: #fff !important;
}
.navigation-menu .container-boxed .nav-header .c-right {
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0 30px;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-right {
    width: 100%;
    justify-content: flex-end;
    flex-direction: row;
    padding: 0;
  }
}
.navigation-menu .container-boxed .nav-header .c-right .burger {
  cursor: pointer;
  *position: absolute;
  *top: 50%;
  *left: 30px;
  *transform: translateY(-50%);
  z-index: 11;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease 0s;
  pointer-events: all;
}
.navigation-menu .container-boxed .nav-header .c-right .burger.open > div > div {
  background-color: #fff !important;
}
.navigation-menu .container-boxed .nav-header .c-right .burger.open-dark > div > div {
  background-color: #fff !important;
}
.navigation-menu .container-boxed .nav-header .c-right .burger > div {
  display: inline-block;
  height: auto;
  width: 30px;
}
.navigation-menu .container-boxed .nav-header .c-right .burger > div > div {
  width: 100%;
  height: 2px;
  margin: 0 0 8px 0;
  background-color: #000;
  transition-duration: 0.3s;
  transition-delay: 0s, 0s, 0s, 0s;
  clear: both;
}
.navigation-menu .container-boxed .nav-header .c-right .burger > div > div:last-child {
  margin: 0;
}
.navigation-menu .container-boxed .nav-header .c-right .burger:hover > div > div {
  background-color: #9a8a68;
}
.navigation-menu .container-boxed .nav-header .c-right .burger:hover > div > div:nth-child(2) {
  width: 100%;
}
.navigation-menu .container-boxed .nav-header .c-right .burger.open > div > div:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.navigation-menu .container-boxed .nav-header .c-right .burger.open > div > div:nth-child(2) {
  opacity: 0;
}
.navigation-menu .container-boxed .nav-header .c-right .burger.open > div > div:nth-child(3) {
  width: 100%;
  transform: translateY(-9px) rotate(-45deg);
}
.navigation-menu .container-boxed .nav-header .c-right .item {
  font-size: 18px;
  color: var(--gray);
  pointer-events: all;
  transition: all 0.3s ease-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  display: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-right .item {
    margin-right: 30px;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .navigation-menu .container-boxed .nav-header .c-right .item {
    margin-right: 60px;
  }
}
.navigation-menu .container-boxed .nav-header .c-right .item.active {
  color: var(--dark);
}
.navigation-menu .container-boxed .nav-header .c-right .item.active-dark {
  color: var(--dark);
}
.navigation-menu .container-boxed .nav-header .c-right .item.active-light {
  color: var(--gray);
}
@media (min-width: 992px) {
  .navigation-menu .container-boxed .nav-header .c-right .item {
    font-size: 16px;
  }
}
.navigation-menu .container-boxed .nav-header .c-right .item:nth-child(4) {
  margin-right: 0;
}
.navigation-menu .mega-menu {
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  pointer-events: all;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100vh);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.navigation-menu .mega-menu .menu-items {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 15vh 0;
  width: 100%;
}
@media (min-width: 992px) {
  .navigation-menu .mega-menu .menu-items {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
    max-width: 1564px;
    margin: 0 auto;
    height: 100%;
    align-items: center;
  }
}
@media (min-width: 1600px) {
  .navigation-menu .mega-menu .menu-items {
    padding: 0;
  }
}
.navigation-menu .mega-menu .menu-items .item {
  margin-left: 30px;
  margin-bottom: 25px;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
@media (min-width: 992px) {
  .navigation-menu .mega-menu .menu-items .item {
    margin-bottom: 0;
    margin-left: 0;
    height: 100%;
    align-items: center;
  }
}
html[data-device=desktop] .navigation-menu .mega-menu .menu-items .item.dark:hover .tagname {
  color: var(--primary-color);
}
html[data-device=desktop] .navigation-menu .mega-menu .menu-items .item.dark:hover a {
  color: var(--primary-color);
}
html[data-device=desktop] .navigation-menu .mega-menu .menu-items .item.light:hover .tagname {
  color: var(--dark);
}
html[data-device=desktop] .navigation-menu .mega-menu .menu-items .item.light:hover a {
  color: var(--dark);
}
.navigation-menu .mega-menu .menu-items .item .number {
  font-size: 11px;
  color: #666666;
  font-weight: 500;
  margin-top: 4px;
  margin-right: 25px;
  letter-spacing: 1px;
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .navigation-menu .mega-menu .menu-items .item .number {
    font-size: 16px;
    margin-top: -32px;
  }
}
.navigation-menu .mega-menu .menu-items .item .number.active {
  color: #fff;
}
.navigation-menu .mega-menu .menu-items .item .number.hover {
  color: #666;
}
.navigation-menu .mega-menu .menu-items .item .item-text {
  font-weight: 500;
  font-size: 36px;
  color: #666666;
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .navigation-menu .mega-menu .menu-items .item .item-text {
    font-size: 30px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .navigation-menu .mega-menu .menu-items .item .item-text {
    font-size: 64px;
  }
}
@media (min-width: 992px) and (min-width: 992px) and (max-width: 1920px) {
  .navigation-menu .mega-menu .menu-items .item .item-text {
    font-size: calc( 30px + (64 - 30) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.navigation-menu .mega-menu .menu-items .item .item-text.active {
  color: #fff;
}
.navigation-menu .mega-menu .menu-items .item .item-text.hover {
  color: #666;
}
.navigation-menu .mega-menu .menu-items .item .img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 14vw;
  height: 20vw;
  overflow: hidden;
  display: none;
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  pointer-events: none;
}
@media (min-width: 992px) {
  .navigation-menu .mega-menu .menu-items .item .img-container {
    display: block;
  }
}
.navigation-menu .mega-menu .menu-items .item .img-container img {
  height: 100%;
  width: 100%;
  opacity: 0;
}
.navigation-menu .mega-menu .menu-items .item .img-container img.active {
  opacity: 1;
}
.navigation-menu .mega-menu .menu-items .item:hover .number {
  color: #fff;
}
.navigation-menu .mega-menu .menu-items .item:hover .item-text {
  color: #fff;
}
.navigation-menu .mega-menu .menu-items .btn-secondary {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 30px;
  position: relative;
  left: 0;
  bottom: 0;
  transform: translateX(0);
  z-index: 9;
}
.navigation-menu .mega-menu .menu-items .btn-secondary.mobile {
  display: block;
}
@media (min-width: 992px) {
  .navigation-menu .mega-menu .menu-items .btn-secondary.mobile {
    display: none;
  }
}
.navigation-menu .mega-menu .btn-secondary {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 9;
}
@media (min-width: 992px) {
  .navigation-menu .mega-menu .btn-secondary {
    display: block;
  }
}

.wrapper-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.wrapper-loading .wrapper-preloader {
  position: absolute;
  z-index: 998;
  height: 100%;
  width: 100%;
  background-color: #000;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in;
}
.wrapper-loading .wrapper-preloader .box-preloader {
  display: inline-block;
  padding-top: 0;
  text-align: center;
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos {
  width: 100%;
  height: 8vh;
  z-index: 9 !important;
  max-width: 80vw;
  margin: 0 auto;
  position: relative;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo {
  text-align: left;
  color: #ddd;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo .logo .loading__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 8vh;
  display: inline-block;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: #fff;
  opacity: 0.15;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  text-align: left;
  color: #fff;
  pointer-events: none;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo2 .logo {
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  will-change: transform;
  z-index: 1006;
  top: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
  height: 100%;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo2 .logo .loading__logo {
  height: 8vh;
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 8vh;
  display: inline-block;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: #fff;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.wrapper-loading .wrapper-preloader .box-preloader .img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: 230px;
  height: 310px;
  z-index: 999;
  overflow: hidden;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-preloader .box-preloader .img-container {
    width: 21vw;
    height: 28vw;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.5);
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container {
  width: 75vw;
  margin: 3vh 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar__container .bar {
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0;
  transform-origin: left center;
}
.wrapper-loading .wrapper-preloader .box-preloader .copy-container {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  overflow: hidden;
}
.wrapper-loading .wrapper-preloader .box-preloader .copy-container .copy {
  overflow: hidden;
}
.wrapper-loading .wrapper-preloader .box-preloader .copy-container .copy span {
  display: inline-block;
  transform: translateY(115%);
  line-height: 1.5;
  font-size: 10px;
}
@media (min-width: 992px) {
  .wrapper-loading .wrapper-preloader .box-preloader .copy-container .copy span {
    font-size: 14px;
  }
}

.prevent-landscape {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999999;
  height: 100%;
  width: 100%;
  background-color: #000;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820px) and (max-height: 600px) and (orientation: landscape) {
  .prevent-landscape {
    display: flex;
    pointer-events: all;
  }
}
@media (min-width: 992px) and (orientation: portrait) {
  .prevent-landscape {
    display: flex;
    pointer-events: all;
  }
}
.prevent-landscape .icon img {
  height: 80px;
}

.heading-01 {
  font-weight: 400;
  letter-spacing: -1px;
  font-size: 36px;
}
@media (min-width: 768px) {
  .heading-01 {
    font-size: 90px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .heading-01 {
    font-size: calc( 36px + (90 - 36) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

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

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

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

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

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

#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: rgba(255, 255, 255, 0.7);
  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: #000;
  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: rgba(255, 255, 255, 0.7);
  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: rgba(255, 255, 255, 0.7);
  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: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  transform: translate3d(-38%, -50%, 0) scale(0);
}
#pointer .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  color: #000;
  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.hide .main-circle {
  opacity: 0;
}
#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.3;
  width: 60px;
  height: 60px;
}
#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: 1;
  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.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);
  }
}
.g-mouse-hint {
  width: 25px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: all 0.3s ease 0s;
}
.g-mouse-hint.no-visible {
  opacity: 0;
  bottom: 0;
}
.g-mouse-hint .mouse-icon {
  width: 25px;
  height: 45px;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.g-mouse-hint .mouse-icon .mouse-wheel {
  height: 10px;
  margin: 2px auto 0;
  display: block;
  width: 10px;
  background-color: #ff003d;
  border-radius: 50%;
  -webkit-animation: 3s cubic-bezier(0.37, 0.01, 0, 0.98) infinite wheel-up-down;
  animation: 2s cubic-bezier(0.37, 0.01, 0, 0.98) infinite wheel-up-down;
}

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

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

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

#container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
}

.button-primary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 80px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .button-primary {
    height: 100px;
  }
}
.button-primary a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}
.button-primary a span {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 0;
}
@media (min-width: 992px) {
  .button-primary a span {
    font-size: 20px;
  }
}
.button-primary a .container-magnetic {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.button-primary a svg {
  width: 60px;
  height: 60px;
}
.button-primary a svg .circle {
  fill: transparent;
  transition: all 0.4s ease-out;
}
.button-primary a svg .arrow {
  transition: all 0.4s ease-out;
}
.button-primary a svg .whatsapp-logo {
  transition: all 0.4s ease-out;
}
@media (min-width: 768px) {
  .button-primary a svg {
    width: 80px;
    height: 80px;
  }
}
.button-primary a:hover svg .circle {
  fill: var(--primary-color);
}
.button-primary a:hover svg .arrow {
  stroke: #fff;
}
.button-primary a:hover svg .whatsapp-logo {
  fill: #fff;
}

.btn-secondary {
  position: relative;
  display: inline-block;
  padding: 3px 0;
  line-height: normal;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  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 {
    font-size: 15px;
  }
}
.btn-secondary:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -0.2vw;
  width: 100%;
  height: 2px;
  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) 0.2s;
}
.btn-secondary:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: -0.2vw;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scale(1, 1);
  transform-origin: left center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-secondary:hover {
  outline: 0;
  color: #fff;
  background-color: transparent;
}
.btn-secondary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.btn-secondary:hover:after {
  transform-origin: right center;
  transform: scale(0, 1);
}
.btn-secondary.gold {
  color: #9a8a68;
}
.btn-secondary.gold:after, .btn-secondary.gold:before {
  background-color: #9a8a68;
}
.btn-secondary.gold:hover {
  color: #9a8a68;
}
.btn-secondary.dark-gold {
  color: #9a8a68;
}
.btn-secondary.dark-gold:after, .btn-secondary.dark-gold:before {
  background-color: #9a8a68;
}
.btn-secondary.dark-gold:hover {
  color: #9a8a68;
}
.btn-secondary.dark-gray {
  color: #5d5d5d;
}
.btn-secondary.dark-gray:after, .btn-secondary.dark-gray:before {
  background-color: #5d5d5d;
}
.btn-secondary.dark-gray:hover {
  color: #5d5d5d;
}

.button-simple {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-bottom: 10px;
  overflow: hidden;
}
.button-simple span {
  color: #141414;
  vertical-align: baseline;
}
.button-simple::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.75s ease-out;
  transform: translateX(-250%);
}
.button-simple::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: all 0.75s ease-out;
  transform: translateX(0);
}
.button-simple:hover::before {
  transform: translateX(0);
}
.button-simple:hover::after {
  transform: translateX(250%);
}
.button-simple.primary-color span {
  color: var(--primary-color);
}
.button-simple.primary-color::before, .button-simple.primary-color::after {
  background-color: var(--primary-color);
}

.button-secondary {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.button-secondary a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.button-secondary:hover span {
  color: #fff;
  margin-right: 20px;
}
@media (min-width: 992px) {
  .button-secondary:hover span {
    margin-right: 35px;
  }
}
.button-secondary:hover svg .circle path {
  fill: #fff;
}
.button-secondary:hover svg .arrow path {
  stroke: #000;
}
.button-secondary.xs-hidden span {
  display: none;
}
@media (min-width: 992px) {
  .button-secondary.xs-hidden span {
    display: flex;
  }
}
.button-secondary span {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .button-secondary span {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .button-secondary span {
    font-size: calc( 14px + (24 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .button-secondary span {
    margin-right: 25px;
  }
}
.button-secondary svg {
  width: 20px;
}
@media (min-width: 992px) {
  .button-secondary svg {
    width: 44px;
  }
}
.button-secondary svg g path {
  fill: transparent;
  stroke: #999;
  transition: all 0.3s ease-in-out;
}

.accordion {
  width: 100%;
}

.accordion-container {
  border-bottom: 1px solid var(--light-gray);
}
.accordion-container:first-child {
  border-top: 1px solid var(--light-gray);
}

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

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

.accordion-toggle.open h5,
.accordion-toggle:hover h5 {
  opacity: 1;
}
.accordion-toggle.open .circle,
.accordion-toggle:hover .circle {
  opacity: 1;
}
.accordion-toggle.open .circle .line,
.accordion-toggle:hover .circle .line {
  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;
  }
}

.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: var(--skin-tone);
  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%);
  max-width: 320px;
  z-index: 1;
}
.transition .transition-container .logo-container svg {
  width: 100%;
  height: auto;
}
.transition .transition-container .image-container {
  width: 60vw;
  max-width: 518px;
  height: 60vh;
  max-height: 724px;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 768px) {
  .transition .transition-container .image-container {
    height: 82vh;
    width: 50vw;
  }
}
.transition .transition-container .image-container .content {
  background-color: #fff;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
}
.transition .transition-container .image-container .content img {
  width: 100%;
  height: 100%;
  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;
  padding-bottom: 15px;
}
.transition .transition-container .text-container .text h1 {
  font-size: 45px;
  color: #000;
  font-family: "IvyMode";
  font-weight: 400;
  transform: translateY(140px);
}
@media (min-width: 768px) {
  .transition .transition-container .text-container .text h1 {
    font-size: 90px;
  }
}
@media (min-width: 992px) {
  .transition .transition-container .text-container .text h1 {
    font-size: 112px;
  }
}
.transition .transition-container .text-container .text h1:nth-child(2) {
  transform: translateY(170px);
}

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

.g-video-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  background-color: #000;
}
.g-video-scene.active {
  pointer-events: all;
}
.g-video-scene .cc-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  z-index: 10;
}
.g-video-scene .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 9;
}
@media (min-width: 992px) {
  .g-video-scene .video {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.g-video-scene .btn-close {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  border: 2px solid #fd7e66;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.4s ease-in-out, border 0.4s ease-in-out;
}
.g-video-scene .btn-close .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  z-index: 2;
  background-color: #fff;
}
.g-video-scene .btn-close .line:nth-child(1) {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.g-video-scene .btn-close .line:nth-child(2) {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.g-video-scene .btn-close .fill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fd7e66;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.g-video-scene .btn-close:hover {
  transform: scale(1.1) translateX(-45%);
  border: 2px solid #fd7e66;
}
.g-video-scene .btn-close:hover .fill {
  opacity: 1;
  transform: scale(1.01);
}

.form-wrapper {
  padding: 10vh 0;
  width: 100%;
  background-color: var(--dark);
  position: relative;
}
@media (min-width: 768px) {
  .form-wrapper {
    padding: 20vh 0 10vh 0;
  }
}
.form-wrapper::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--dark);
  z-index: -1;
}
.form-wrapper .container {
  width: 100%;
  max-width: 832px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .form-wrapper .container {
    padding: 0;
  }
}
.form-wrapper .container .box-title h2 {
  font-family: "IvyMode";
  font-weight: 400;
  color: #fff;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .form-wrapper .container .box-title h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .form-wrapper .container .box-title h2 {
    font-size: calc( 22px + (38 - 22) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.form-wrapper .container .box-title .copy {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.3;
}
.form-wrapper .container .form {
  margin-top: 50px;
}
.form-wrapper .container .form .group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.form-wrapper .container .form .group .tagname {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 15px;
}
.form-wrapper .container .form .group label.error {
  font-size: 13px;
  font-weight: 600;
  color: #f00;
  padding-top: 12px;
}
.form-wrapper .container .form .group input,
.form-wrapper .container .form .group textarea {
  width: 100%;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--medium-gray);
  background-color: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #666;
  font-size: 13px;
  font-style: italic;
  padding: 20px 0;
  -webkit-appearance: none;
}
.form-wrapper .container .form .group input.error,
.form-wrapper .container .form .group textarea.error {
  border-bottom: 1px solid #f00;
}
.form-wrapper .container .form .group select {
  width: 100%;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 500;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #666;
  font-size: 15px;
  padding: 20px 0;
  border-radius: 0;
  -webkit-appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAxMi8wMi8xN2iemr4AAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAASElEQVQImW2LwQnAMBDDlE5U8CIZodmoG1wWMtxI/SRwhOop2U3SC6TtSUHSA9wXkEAsUWMA2Q4x1iaAYXu2nxc7ciKpS+rVfZvoF9FSFL1pAAAAAElFTkSuQmCC);
  background-position: calc(100% - 15px) calc(50% + 1px);
  background-repeat: no-repeat;
}
.form-wrapper .container .form .btn-contact {
  position: relative;
  display: inline-block;
  min-width: 180px;
  padding: 20px 35px;
  line-height: normal;
  border: 1px solid transparent;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-style: normal;
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
  cursor: pointer;
}
.form-wrapper .container .form .btn-contact:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  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);
}
.form-wrapper .container .form .btn-contact:hover {
  outline: 0;
  color: #fff;
  background-color: transparent;
}
.form-wrapper .container .form .btn-contact:hover .fill {
  fill: #fff;
}
.form-wrapper .container .form .btn-contact:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
@media (max-width: 767px) {
  .form-wrapper .container .form .btn-contact {
    font-size: 12px;
  }
}

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

.marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
  position: relative;
}
.marquee .line-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
}
.marquee .line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
}
.marquee .text {
  display: flex;
  white-space: nowrap;
  font-size: 26px;
  color: #fff;
  z-index: 2;
  padding: 40px 0;
  align-items: center;
}
@media (min-width: 768px) {
  .marquee .text {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .marquee .text {
    font-size: calc( 26px + (100 - 26) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .marquee .text {
    z-index: 1;
    padding: 50px 0;
  }
}
.marquee .text .line {
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: translateY(2px);
}
@media (min-width: 992px) {
  .marquee .text .line {
    height: 4px;
    width: 80px;
    transform: translateY(6px);
  }
}

.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/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);
  }
}
