@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap);
/* App styles */
/* Root vars */
:root {
  --primary-color: #fd7e66;
  /* Orange */
  --skin-tone: #f9f0eb;
  --dark: #212121;
  --dark-gray: #333333;
  --medium-gray: #888888;
  --light-gray: #999999;
  --chinese-silver: #cccccc;
  /* Check if they are used or they can be deleted: */
  --text-title: #000;
  --text-soft-title: #141414;
  --text-highlight: #fd7e66;
  --text-copy: #888888;
}

@font-face {
  font-family: "IvyMode";
  src: url(../fonts/IvyMode-Regular.8d4989.woff) format("woff"), url(../fonts/IvyMode-Regular.fde4ae.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

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

body {
  line-height: 1;
  touch-action: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

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

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

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

html {
  *overflow: hidden;
}

html,
body {
  *overflow: hidden;
  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;
}

@-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: 2;
  width: 10px;
  border-radius: 0;
  margin: 0;
  cursor: -webkit-grab;
  cursor: grab;
}

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

/**
 * Swiper 6.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 30, 2020
 */
/*
 @font-face {
    font-family: 'swiper-icons';
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
    font-weight: 400;
    font-style: normal;
  }
  */
:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer {
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 12vh 0;
}
.footer .tagname {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 4vh;
  color: var(--medium-gray);
}
@media (min-width: 768px) {
  .footer .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .title {
  font-size: 36px;
  font-family: "IvyMode";
  font-weight: 400;
  margin-bottom: 7vh;
  vertical-align: bottom;
  color: var(--dark);
  line-height: 1.1;
}
@media (min-width: 768px) {
  .footer .title {
    font-size: 95px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .title {
    font-size: calc( 36px + (95 - 36) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.footer .mail {
  font-size: 18px;
  margin-bottom: 7vh;
  text-transform: none;
  font-weight: 400;
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .footer .mail {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .mail {
    font-size: calc( 18px + (40 - 18) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .ig {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 7vh;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.footer .ig:hover svg path {
  fill: var(--medium-gray);
}
.footer .ig:hover .text {
  color: var(--medium-gray);
}
.footer .ig svg {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
@media (min-width: 992px) {
  .footer .ig svg {
    margin-right: 10px;
    width: 22px;
    height: 22px;
  }
}
.footer .ig svg path {
  transition: all 0.4s ease-out;
}
.footer .ig .text {
  color: var(--dark-gray);
  font-size: 14px;
  vertical-align: baseline;
  transition: all 0.4s ease-out;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer .ig .text {
    font-size: 23px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .ig .text {
    font-size: calc( 14px + (23 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .copyright {
  color: var(--medium-gray);
  font-size: 12px;
  margin-bottom: 7vh;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer .copyright {
    font-size: 17px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .footer .copyright {
    font-size: calc( 12px + (17 - 12) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.footer .sign svg {
  width: 200px;
}
@media (min-width: 768px) {
  .footer .sign svg {
    width: 260px;
  }
}

/** HOME PORTRAIT **/
.portrait {
  width: 100%;
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30vh;
}
@media (min-width: 1330px) {
  .portrait {
    padding: 0;
  }
}
.portrait .container-boxed {
  width: 100%;
  padding: 0;
}
@media (min-width: 1330px) {
  .portrait .container-boxed {
    margin-top: 0;
    position: absolute;
    top: 30vh;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 30%);
    padding: 0 30px;
  }
}
.portrait .container-boxed .box-title {
  width: 90%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 1330px) {
  .portrait .container-boxed .box-title {
    padding: 0;
  }
}
.portrait .container-boxed .box-title .title {
  font-family: "IvyMode", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  text-align: center;
}
.portrait .container-boxed .box-title .title.desktop {
  display: none;
}
.portrait .container-boxed .box-title .title.mobile {
  display: block;
}
@media (min-width: 768px) {
  .portrait .container-boxed .box-title .title.desktop {
    display: block;
  }
  .portrait .container-boxed .box-title .title.mobile {
    display: none;
  }
}
@media (min-width: 1330px) {
  .portrait .container-boxed .box-title .title {
    font-size: 46px;
  }
}
.portrait .container-boxed .box-title .title span {
  color: var(--primary-color);
  vertical-align: baseline;
  display: inline;
}
.portrait .container-boxed .box-title .title .lineParent {
  overflow: hidden;
}
.portrait .container-boxed .box-title .title br {
  display: none;
}
@media (min-width: 1330px) {
  .portrait .container-boxed .box-title .title br {
    display: block;
  }
}
.portrait .container-boxed .box-video-mobile {
  width: 100%;
  margin-top: 20vh;
  position: relative;
}
@media (min-width: 1330px) {
  .portrait .container-boxed .box-video-mobile {
    display: none;
  }
}
.portrait .container-boxed .box-video-mobile video {
  width: 100%;
}
.portrait .container-boxed .box-video-mobile .button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 7;
}
.portrait .container-boxed .box-video-mobile .button img {
  width: 100%;
  min-height: 0;
}
.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: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.portrait .video__player {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.portrait .video__player video {
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.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: auto;
}
@media (min-width: 1330px) {
  .portrait .gallery {
    height: 500vh;
  }
}
.portrait .gallery .gallery__inner {
  position: relative;
  width: 100vw;
  height: auto;
}
@media (min-width: 1330px) {
  .portrait .gallery .gallery__inner {
    height: 100vh;
    min-height: 100vh;
  }
}
.portrait .gallery .gallery__inner .gallery__inner__column {
  display: none;
}
@media (min-width: 1330px) {
  .portrait .gallery .gallery__inner .gallery__inner__column {
    display: block;
  }
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--0 {
  position: absolute;
  width: 15vw;
  height: auto;
  top: 0;
  left: -5vw;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--0 .item {
  position: relative;
  width: 15vw;
  height: 25vw;
  margin-top: 2.5vw;
  overflow: hidden;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--1 {
  position: absolute;
  width: 20vw;
  height: auto;
  top: 0;
  left: 12.5vw;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--1 .item:nth-child(odd) {
  position: relative;
  width: 20vw;
  height: 20vw;
  margin-top: 2.5vw;
  overflow: hidden;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--1 .item:first-child {
  position: relative;
  width: 20vw;
  height: 20vw;
  margin-top: 0;
  overflow: hidden;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--1 .item:nth-child(2n) {
  position: relative;
  width: 20vw;
  height: 12.5vw;
  margin-top: 2.5vw;
  overflow: hidden;
}
.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: 2.5vw;
  z-index: 0;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item.item__0 {
  margin: 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(35vw 5vw, 65vw 5vw, 65vw calc(100vh - 5vw), 35vw calc(100vh - 5vw));
  clip-path: polygon(35vw 5vw, 65vw 5vw, 65vw calc(100vh - 5vw), 35vw calc(100vh - 5vw));
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item .video .button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  cursor: pointer;
  z-index: 7;
  opacity: 0;
  pointer-events: none;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--2 .item .video .button img {
  width: 100%;
  min-height: 0;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--3 {
  position: absolute;
  width: 20vw;
  height: auto;
  top: 0;
  right: 12.5vw;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--3 .item:nth-child(odd) {
  position: relative;
  width: 20vw;
  height: 12.5vw;
  margin-top: 2.5vw;
  overflow: hidden;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--3 .item:first-child {
  position: relative;
  width: 20vw;
  height: 20vw;
  margin-top: 0;
  overflow: hidden;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--3 .item:nth-child(2n) {
  position: relative;
  width: 20vw;
  height: 20vw;
  margin-top: 2.5vw;
  overflow: hidden;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--4 {
  position: absolute;
  width: 15vw;
  height: auto;
  top: 0;
  right: -5vw;
}
.portrait .gallery .gallery__inner .gallery__inner__column.column--4 .item {
  position: relative;
  width: 15vw;
  height: 25vw;
  margin-top: 2.5vw;
  overflow: hidden;
}

.introduction {
  padding: 10vh 0 10vh 0;
  position: relative;
}
@media (min-width: 768px) {
  .introduction {
    padding: 15vh 0 15vh 0;
  }
}
.introduction .marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
  padding-bottom: 10vh;
}
@media (min-width: 768px) {
  .introduction .marquee {
    padding-top: 5vh;
    padding-bottom: 0;
  }
}
.introduction .marquee span {
  display: flex;
  white-space: nowrap;
  font-size: 44px;
  color: var(--primary-color);
  font-family: "IvyMode", Arial, Helvetica, sans-serif;
  font-weight: 400;
  z-index: 2;
}
@media (min-width: 768px) {
  .introduction .marquee span {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .introduction .marquee span {
    font-size: calc( 44px + (160 - 44) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .introduction .marquee span {
    z-index: 1;
  }
}
.introduction .container {
  max-width: 1484px;
  margin: 0 auto;
}
.introduction .container .col-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper {
    flex-wrap: nowrap;
    padding-top: 30vh;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1600px) {
  .introduction .container .col-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.introduction .container .col-wrapper .col-video {
  width: 100%;
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-video {
    width: 50%;
  }
}
.introduction .container .col-wrapper .col-video .video-container {
  overflow: hidden;
}
.introduction .container .col-wrapper .col-video .video-container .content {
  width: 100%;
  height: 100%;
  min-height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction .container .col-wrapper .col-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-text {
    padding: 0;
    padding-left: 5%;
    width: 50%;
  }
}
.introduction .container .col-wrapper .col-text.mobile {
  display: block;
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-text.mobile {
    display: none;
  }
}
.introduction .container .col-wrapper .col-text.mobile .text-container .tagname {
  display: block;
  margin-bottom: 2vh;
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-text.mobile .text-container .tagname {
    display: none;
  }
}
.introduction .container .col-wrapper .col-text.mobile .text-container .title {
  display: block;
  margin-bottom: 4vh;
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-text.mobile .text-container .title {
    display: none;
  }
}
.introduction .container .col-wrapper .col-text .text-container .tagname {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: none;
}
@media (min-width: 992px) {
  .introduction .container .col-wrapper .col-text .text-container .tagname {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .introduction .container .col-wrapper .col-text .text-container .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-text .text-container .tagname {
    display: block;
    margin-bottom: 3vh;
  }
}
.introduction .container .col-wrapper .col-text .text-container .title {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 992px) {
  .introduction .container .col-wrapper .col-text .text-container .title {
    font-size: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .introduction .container .col-wrapper .col-text .text-container .title {
    font-size: calc( 36px + (70 - 36) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-text .text-container .title {
    display: block;
  }
}
.introduction .container .col-wrapper .col-text .text-container .description {
  color: var(--medium-gray);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6vh;
}
@media (min-width: 768px) {
  .introduction .container .col-wrapper .col-text .text-container .description {
    margin: 6vh 0;
  }
}
@media (min-width: 992px) {
  .introduction .container .col-wrapper .col-text .text-container .description {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .introduction .container .col-wrapper .col-text .text-container .description {
    font-size: 24px;
  }
}

.skin-lab {
  background-color: var(--skin-tone);
  padding: 10vh 0;
}
@media (min-width: 992px) {
  .skin-lab {
    padding: 20vh 0;
  }
}
.skin-lab .row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.skin-lab .row-content .row-top {
  text-align: center;
  z-index: 3;
  transform: translateY(20px);
}
@media (min-width: 992px) {
  .skin-lab .row-content .row-top {
    transform: translateY(50px);
  }
}
.skin-lab .row-content .row-top .tagname {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-gray);
}
@media (min-width: 768px) {
  .skin-lab .row-content .row-top .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skin-lab .row-content .row-top .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.skin-lab .row-content .row-top .title {
  margin-top: 30px;
  font-size: 50px;
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .skin-lab .row-content .row-top .title {
    font-size: 140px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skin-lab .row-content .row-top .title {
    font-size: calc( 50px + (140 - 50) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.skin-lab .row-content .row-top .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
  font-size: 55px;
}
@media (min-width: 768px) {
  .skin-lab .row-content .row-top .title .color {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skin-lab .row-content .row-top .title .color {
    font-size: calc( 55px + (160 - 55) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.skin-lab .row-content .row-center {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 2;
}
.skin-lab .row-content .row-center .float-left,
.skin-lab .row-content .row-center .float-right {
  color: var(--medium-gray);
  font-size: 16px;
  font-weight: 500;
  display: none;
}
@media (min-width: 1200px) {
  .skin-lab .row-content .row-center .float-left,
.skin-lab .row-content .row-center .float-right {
    display: block;
  }
}
.skin-lab .row-content .row-center .float-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center center;
  transform: translateY(-50%) rotate(180deg);
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
}
.skin-lab .row-content .row-center .float-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform-origin: center center;
  transform: translateY(-50%) rotate(180deg);
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
}
.skin-lab .row-content .row-center .image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 1128px;
  overflow: hidden;
}
.skin-lab .row-content .row-center .image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.skin-lab .row-content .row-center .image-container .desktop {
  display: none;
}
@media (min-width: 768px) {
  .skin-lab .row-content .row-center .image-container .desktop {
    display: block;
  }
}
.skin-lab .row-content .row-center .image-container .mobile {
  display: block;
}
@media (min-width: 768px) {
  .skin-lab .row-content .row-center .image-container .mobile {
    display: none;
  }
}
.skin-lab .row-content .row-bottom {
  width: 100%;
  max-width: 1128px;
  text-align: center;
  z-index: 1;
}
.skin-lab .row-content .row-bottom .description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 6vh 0;
}
@media (min-width: 768px) {
  .skin-lab .row-content .row-bottom .description {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skin-lab .row-content .row-bottom .description {
    font-size: calc( 14px + (28 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .skin-lab .row-content .row-bottom .description {
    margin: 10vh 0;
  }
}
.skin-lab .row-content .row-bottom .button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.skin-lab .row-content .row-bottom .button svg {
  width: 60px;
  height: 60px;
}
.skin-lab .row-content .row-bottom .button svg .circle {
  fill: transparent;
  transition: all 0.4s ease-out;
}
.skin-lab .row-content .row-bottom .button svg .arrow {
  transition: all 0.4s ease-out;
}
@media (min-width: 768px) {
  .skin-lab .row-content .row-bottom .button svg {
    width: 80px;
    height: 80px;
  }
}
.skin-lab .row-content .row-bottom .button:hover svg .circle {
  fill: var(--primary-color);
}
.skin-lab .row-content .row-bottom .button:hover svg .arrow {
  stroke: #fff;
}

.treatments {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  padding: 16vh 0;
}
@media (min-width: 768px) {
  .treatments {
    padding: 12vh 0;
    max-width: none;
  }
}
.treatments .box-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .treatments .box-title {
    margin-top: 15vh;
    margin-left: auto;
    text-align: right;
  }
}
.treatments .box-title.inverted {
  text-align: left;
  margin-right: auto;
  margin-left: 0;
  justify-content: flex-start;
}
.treatments .box-title .tagname {
  color: var(--medium-gray);
  font-size: 14px;
  letter-spacing: 0.5;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .treatments .box-title .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .treatments .box-title .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .treatments .box-title .tagname {
    margin-bottom: 3vh;
  }
}
.treatments .box-title .title {
  font-size: 40px;
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5vh;
  line-height: 1;
}
@media (min-width: 768px) {
  .treatments .box-title .title {
    font-size: 140px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .treatments .box-title .title {
    font-size: calc( 40px + (140 - 40) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .treatments .box-title .title {
    margin-bottom: 2vh;
  }
}
.treatments .box-title .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.treatments .treatment {
  padding-bottom: 15vh;
  position: relative;
}
@media (min-width: 1200px) {
  .treatments .treatment {
    padding-bottom: 30vh;
  }
}
.treatments .treatment:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .treatments .treatment:last-child {
    padding-bottom: 15vh;
  }
}
.treatments .treatment .container-boxed {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1600px) {
  .treatments .treatment .container-boxed {
    padding: 0;
  }
}
.treatments .treatment .container-boxed.inverted {
  flex-direction: column;
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed.inverted {
    flex-direction: row-reverse;
  }
}
.treatments .treatment .container-boxed.inverted .box-images {
  text-align: right;
}
.treatments .treatment .container-boxed.inverted .box-images .main-container {
  margin-left: auto;
}
.treatments .treatment .container-boxed.inverted .box-images .mini {
  left: -30px;
  right: 100%;
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed.inverted .box-images .mini {
    left: -25px;
  }
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed.inverted .box-images .mini {
    left: 0;
  }
}
.treatments .treatment .container-boxed .box-images {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed .box-images {
    width: 45%;
  }
}
.treatments .treatment .container-boxed .box-images .main-container {
  width: 80%;
  height: auto;
  overflow: hidden;
}
.treatments .treatment .container-boxed .box-images .main-container .main {
  width: 100%;
}
.treatments .treatment .container-boxed .box-images .mini {
  position: absolute;
  bottom: -25%;
  right: -30px;
  z-index: 1;
  width: 50%;
  height: auto;
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed .box-images .mini {
    right: -25px;
  }
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed .box-images .mini {
    right: 0;
    bottom: -37%;
  }
}
@media (min-width: 1200px) {
  .treatments .treatment .container-boxed .box-images .mini {
    bottom: -20%;
  }
}
.treatments .treatment .container-boxed .box-text {
  width: 100%;
  margin: 0 auto;
  z-index: 0;
  padding-top: 15vh;
  text-align: left;
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed .box-text {
    padding-top: 40px;
    margin: 0;
    width: 45%;
  }
}
.treatments .treatment .container-boxed .box-text .copy {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 35px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
}
@media (min-width: 768px) {
  .treatments .treatment .container-boxed .box-text .copy {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .treatments .treatment .container-boxed .box-text .copy {
    font-size: calc( 14px + (24 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 1600px) {
  .treatments .treatment .container-boxed .box-text .copy {
    margin: 40px 0;
  }
}
.treatments .treatment .container-boxed .box-text.inverted {
  text-align: right;
}

.real-cases {
  padding: 12vh 0;
  background-color: var(--skin-tone);
}
@media (min-width: 992px) {
  .real-cases {
    padding: 20vh 0;
  }
}
.real-cases .container .title {
  margin-bottom: 6vh;
  color: var(--dark);
  font-size: 35px;
  font-family: "IvyMode";
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .real-cases .container .title {
    font-size: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .real-cases .container .title {
    font-size: calc( 35px + (120 - 35) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .real-cases .container .title {
    margin-bottom: 10vh;
  }
}
.real-cases .container .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.real-cases .custom-container-boxed {
  width: 100%;
  max-width: 1484px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  .real-cases .custom-container-boxed {
    padding: 0 30px;
  }
}
@media (min-width: 1600px) {
  .real-cases .custom-container-boxed {
    padding: 0;
  }
}
.real-cases .swiper-container {
  overflow: hidden;
  width: 100%;
  padding-bottom: 8vh;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
@media (min-width: 992px) {
  .real-cases .swiper-container {
    width: 80%;
    max-width: 965px;
    height: 100%;
    overflow: visible;
    padding: 0;
    margin-left: 0;
  }
}
.real-cases .swiper-wrapper {
  margin-left: 0;
}
.real-cases .swiper-slide {
  text-align: left;
  font-size: 18px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}
.real-cases .swiper-slide.mobile {
  display: block;
}
@media (min-width: 992px) {
  .real-cases .swiper-slide.mobile {
    display: none;
  }
}
.real-cases .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
}
.real-cases .swiper-slide .img-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 1;
}
.real-cases .swiper-slide .img-container img {
  width: 100%;
}
@media (min-width: 1600px) {
  .real-cases .swiper-slide .img-container img {
    width: 100%;
    height: 100%;
  }
  .real-cases .swiper-slide .img-container img.custom {
    height: 100%;
    width: auto;
  }
}
.real-cases .swiper-slide .text-container {
  padding: 0 30px;
}
@media (min-width: 992px) {
  .real-cases .swiper-slide .text-container {
    padding: 0;
  }
}
.real-cases .swiper-slide .text-container .tagname {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .real-cases .swiper-slide .text-container .tagname {
    font-size: 18px;
  }
}
.real-cases .swiper-slide .text-container .subtitle {
  color: var(--dark);
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 35px;
  font-family: "IvyMode";
  font-weight: 400;
}
@media (min-width: 992px) {
  .real-cases .swiper-slide .text-container .subtitle {
    font-size: 35px;
  }
}
.real-cases .swiper-pagination {
  display: block;
}
@media (min-width: 992px) {
  .real-cases .swiper-pagination {
    display: none;
  }
}
.real-cases .swiper-pagination-bullet {
  transition: 0.5s;
  background-color: transparent;
  border: 1px solid var(--dark);
}
@media (max-width: 767px) {
  .real-cases .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.real-cases .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: var(--dark);
  transition: 0.5s;
}

.our-lab {
  position: relative;
}
.our-lab .row-one {
  padding-top: 15vw;
  padding-bottom: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.our-lab .row-one .text-container {
  position: relative;
  z-index: 2;
}
.our-lab .row-one .text-container .tagname {
  color: var(--medium-gray);
  font-size: 16px;
  font-weight: 500;
}
.our-lab .row-one .text-container .title {
  margin-top: 20px;
  color: var(--text-soft-title);
  font-size: 50px;
  font-family: "IvyMode";
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
}
@media (min-width: 768px) {
  .our-lab .row-one .text-container .title {
    font-size: 80px;
    margin-top: 5vh;
  }
}
@media (min-width: 992px) {
  .our-lab .row-one .text-container .title {
    font-size: 100px;
  }
}
@media (min-width: 1200px) {
  .our-lab .row-one .text-container .title {
    font-size: 125px;
  }
}
@media (min-width: 1600px) {
  .our-lab .row-one .text-container .title {
    font-size: 160px;
  }
}
.our-lab .row-one .text-container .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.our-lab .row-one .media-container {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .our-lab .row-one .media-container {
    width: 70%;
  }
}
.our-lab .row-one .media-container .content {
  width: 100%;
}
.our-lab .row-two {
  background-color: var(--dark);
  position: relative;
  z-index: 0;
  padding-bottom: 15vw;
  padding-top: 40vw;
}
@media (min-width: 992px) {
  .our-lab .row-two {
    padding-top: 25vw;
  }
}
.our-lab .row-two .container-boxed {
  display: flex;
}
.our-lab .row-two .container-boxed .column-one {
  display: none;
  width: 30%;
}
@media (min-width: 992px) {
  .our-lab .row-two .container-boxed .column-one {
    display: block;
  }
}
.our-lab .row-two .container-boxed .column-one .title {
  font-family: "IvyMode";
  font-weight: 400;
  color: #ededed;
  font-size: 36px;
}
.our-lab .row-two .container-boxed .column-two {
  width: 100%;
}
@media (min-width: 992px) {
  .our-lab .row-two .container-boxed .column-two {
    width: 70%;
    max-width: 750px;
  }
}
.our-lab .row-two .container-boxed .column-two .description {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4vh;
}
@media (min-width: 992px) {
  .our-lab .row-two .container-boxed .column-two .description {
    font-size: 24px;
  }
}
.our-lab .row-two .container-boxed .column-two .button-primary span {
  color: #fff;
}

.home-reviews {
  background-color: var(--skin-tone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh 0;
}
@media (min-width: 992px) {
  .home-reviews {
    padding: 0;
    height: 100vh;
  }
}
.home-reviews .container-boxed {
  text-align: center;
}
.home-reviews .container-boxed .title {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.home-reviews .swiper-container {
  width: 100%;
  height: 100%;
  margin-top: 6vh;
  padding-bottom: 12vh;
}
@media (min-width: 768px) {
  .home-reviews .swiper-container {
    padding-bottom: 6vh;
  }
}
.home-reviews .swiper-container .swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.home-reviews .swiper-container .swiper-button-next,
.home-reviews .swiper-container .swiper-button-prev {
  display: none;
  opacity: 0.35;
  transition: opacity 0.4s ease-out;
  top: 25%;
}
@media (min-width: 768px) {
  .home-reviews .swiper-container .swiper-button-next,
.home-reviews .swiper-container .swiper-button-prev {
    display: flex;
  }
}
.home-reviews .swiper-container .swiper-button-next::after, .home-reviews .swiper-container .swiper-button-next::before,
.home-reviews .swiper-container .swiper-button-prev::after,
.home-reviews .swiper-container .swiper-button-prev::before {
  display: none;
}
.home-reviews .swiper-container .swiper-button-next:hover,
.home-reviews .swiper-container .swiper-button-prev:hover {
  opacity: 1;
}
.home-reviews .swiper-container .swiper-pagination {
  transform: translateY(0);
  height: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-reviews .swiper-container .swiper-pagination-bullet {
  transition: 0.5s;
  background-color: transparent;
  border: 1px solid var(--dark);
}
@media (max-width: 767px) {
  .home-reviews .swiper-container .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.home-reviews .swiper-container .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: var(--dark);
  transition: 0.5s;
}
.home-reviews .block-review {
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .home-reviews .block-review {
    width: 80%;
  }
}
.home-reviews .block-review .review-content {
  font-family: "IvyMode";
  font-weight: 200;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 8vh;
}
@media (min-width: 780px) {
  .home-reviews .block-review .review-content {
    font-size: 48px;
  }
}
@media (min-width: 780px) and (max-width: 1600px) {
  .home-reviews .block-review .review-content {
    font-size: calc( 18px + (48 - 18) * (( 100vw - 780px ) / (1600 - 780)) );
  }
}
.home-reviews .block-review .username {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
  color: var(--dark);
  text-transform: uppercase;
}
@media (min-width: 780px) {
  .home-reviews .block-review .username {
    font-size: 18px;
  }
}
@media (min-width: 780px) and (max-width: 1600px) {
  .home-reviews .block-review .username {
    font-size: calc( 14px + (18 - 14) * (( 100vw - 780px ) / (1600 - 780)) );
  }
}

.about-portrait {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.about-portrait::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.44);
  width: 100%;
  z-index: 1;
  height: 100vh;
}
.about-portrait .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.about-portrait .text-container {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(40px);
}
@media (min-width: 768px) {
  .about-portrait .text-container {
    text-align: left;
  }
}
.about-portrait .text-container .tagname {
  font-size: 14px;
  font-weight: 500;
  color: var(--chinese-silver);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .about-portrait .text-container .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .about-portrait .text-container .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.about-portrait .text-container .title {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 44px;
  color: #fff;
  margin: 20px 0 80px 0;
}
@media (min-width: 768px) {
  .about-portrait .text-container .title {
    font-size: 116px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .about-portrait .text-container .title {
    font-size: calc( 44px + (116 - 44) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .about-portrait .text-container .title {
    margin-bottom: 15px;
  }
}
.about-portrait .text-container .button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.about-portrait .text-container .button svg {
  width: 60px;
  height: 60px;
}
.about-portrait .text-container .button svg .circle {
  fill: transparent;
  stroke: #fff;
  transition: all 0.4s ease-out;
}
.about-portrait .text-container .button svg .arrow {
  transition: all 0.4s ease-out;
  stroke: #fff;
}
@media (min-width: 768px) {
  .about-portrait .text-container .button svg {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .about-portrait .text-container .button svg {
    width: 140px;
    height: 140px;
  }
}
.about-portrait .text-container .button:hover svg .circle {
  fill: #fff;
}
.about-portrait .text-container .button:hover svg .arrow {
  stroke: var(--primary-color);
}

.philosophy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20vh 0;
}
@media (min-width: 992px) {
  .philosophy {
    padding: 0;
    height: 100vh;
  }
}
.philosophy .container-boxed {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.philosophy .container-boxed .float-right {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 20%;
  display: none;
}
@media (min-width: 768px) {
  .philosophy .container-boxed .float-right {
    display: block;
  }
}
.philosophy .container-boxed .float-right img {
  width: 100%;
}
.philosophy .container-boxed .float-left {
  position: absolute;
  left: 30px;
  top: 0;
  width: 20%;
  display: none;
}
@media (min-width: 768px) {
  .philosophy .container-boxed .float-left {
    display: block;
  }
}
.philosophy .container-boxed .float-left img {
  width: 100%;
}
.philosophy .container-boxed .text-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1220px;
  margin: 0 auto;
}
.philosophy .container-boxed .text-container .tagname {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .philosophy .container-boxed .text-container .tagname {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .philosophy .container-boxed .text-container .tagname {
    font-size: calc( 12px + (18 - 12) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.philosophy .container-boxed .text-container .title {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 25px;
  color: var(--dark-gray);
  margin-top: 30px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .philosophy .container-boxed .text-container .title {
    font-size: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .philosophy .container-boxed .text-container .title {
    font-size: calc( 25px + (70 - 25) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.description-section .description-portrait {
  height: 100vh;
  position: relative;
}
.description-section .description-portrait .marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
.description-section .description-portrait .marquee span {
  display: flex;
  white-space: nowrap;
  font-size: 64px;
  color: #fff;
  font-family: "IvyMode";
  font-weight: 400;
}
@media (min-width: 768px) {
  .description-section .description-portrait .marquee span {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .description-section .description-portrait .marquee span {
    font-size: calc( 64px + (160 - 64) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.description-section .description-portrait .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.description-section .description-portrait .image-container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
.description-section .description-portrait .image-container .content {
  width: 65%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .description-section .description-portrait .image-container .content {
    width: 28%;
  }
}
.description-section .description-portrait .image-container .content img {
  width: 100%;
}
.description-section .column-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateY(-70px);
}
.description-section .column-wrapper .column-one {
  width: 100%;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-one {
    width: 41.5%;
    padding: 0;
  }
}
.description-section .column-wrapper .column-one .image-container {
  width: 100%;
  margin-bottom: 6vh;
  overflow: hidden;
}
.description-section .column-wrapper .column-one .image-container img {
  width: 100%;
}
.description-section .column-wrapper .column-one .text-container {
  width: 74%;
  text-align: end;
  margin-left: auto;
}
.description-section .column-wrapper .column-one .text-container .copy {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-one .text-container .copy {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .description-section .column-wrapper .column-one .text-container .copy {
    font-size: calc( 20px + (40 - 20) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.description-section .column-wrapper .column-one .text-container .info-container {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.description-section .column-wrapper .column-one .text-container .info-container::before {
  content: "";
  height: 1px;
  width: 40px;
  background-color: var(--medium-gray);
  position: absolute;
  top: 0;
  right: 0;
}
.description-section .column-wrapper .column-one .text-container .info-container span {
  font-size: 21px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-one .text-container .info-container span {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .description-section .column-wrapper .column-one .text-container .info-container span {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.description-section .column-wrapper .column-one .text-container .info-container span:last-child {
  margin-bottom: 0;
}
.description-section .column-wrapper .column-three {
  width: 100%;
  order: 2;
  text-align: center;
  margin-bottom: 6vh;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-three {
    width: 41.5%;
    order: 3;
    margin-bottom: 0;
    padding: 0;
  }
}
.description-section .column-wrapper .column-three .text-container {
  width: 100%;
  margin-left: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-three .text-container {
    text-align: end;
    width: 74%;
  }
}
.description-section .column-wrapper .column-three .text-container .copy {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 23px;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-three .text-container .copy {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .description-section .column-wrapper .column-three .text-container .copy {
    font-size: calc( 23px + (40 - 23) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-three .text-container .copy {
    line-height: 1.3;
  }
}
.description-section .column-wrapper .column-three .text-container .info-container {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.description-section .column-wrapper .column-three .text-container .info-container::before {
  content: "";
  height: 1px;
  width: 40px;
  background-color: var(--medium-gray);
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-three .text-container .info-container::before {
    right: 0;
    transform: translateX(0);
  }
}
.description-section .column-wrapper .column-three .text-container .info-container span {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-three .text-container .info-container span {
    font-size: 21px;
  }
}
.description-section .column-wrapper .column-three .text-container .info-container span:last-child {
  margin-bottom: 0;
}
.description-section .column-wrapper .column-two {
  width: 100%;
  order: 3;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-two {
    width: 50%;
    order: 2;
    padding-top: 7px;
  }
}
.description-section .column-wrapper .column-two .box-title {
  height: 100%;
  max-height: 929px;
  margin-bottom: 6vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.description-section .column-wrapper .column-two .box-title .tagname {
  color: var(--light-gray);
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-two .box-title .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .description-section .column-wrapper .column-two .box-title .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.description-section .column-wrapper .column-two .box-title .title {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 55px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-two .box-title .title {
    font-size: 140px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .description-section .column-wrapper .column-two .box-title .title {
    font-size: calc( 55px + (140 - 55) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-two .box-title .title {
    margin-top: 50px;
    margin-bottom: 12vh;
  }
}
.description-section .column-wrapper .column-two .box-title .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.description-section .column-wrapper .column-four {
  width: 100%;
  order: 4;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-four {
    width: 50%;
  }
}
.description-section .column-wrapper .column-four .description-container {
  width: 100%;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-four .description-container {
    width: 80%;
  }
}
.description-section .column-wrapper .column-four .description-container .description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}
@media (min-width: 768px) {
  .description-section .column-wrapper .column-four .description-container .description {
    font-size: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .description-section .column-wrapper .column-four .description-container .description {
    font-size: calc( 14px + (26 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.history-section {
  padding: 12vh 0;
}
@media (min-width: 992px) {
  .history-section {
    padding: 20vh 0;
  }
}
.history-section .history-container {
  margin-bottom: 20vh;
}
.history-section .history-container:last-child {
  margin-bottom: 0;
}
.history-section .history-container .title {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 25px;
  color: var(--dark);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--chinese-silver);
  width: 100%;
  margin-bottom: 10vh;
  display: inline-block;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .history-section .history-container .title {
    font-size: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .history-section .history-container .title {
    font-size: calc( 25px + (50 - 25) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.history-section .history-container .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.history-section .history-container .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.history-section .history-container .content .image-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .history-section .history-container .content .image-container {
    width: 41.5%;
    margin-bottom: 0;
  }
}
.history-section .history-container .content .image-container .content {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .history-section .history-container .content .image-container .content {
    width: 86.5%;
  }
}
.history-section .history-container .content .image-container .content img {
  width: 100%;
}
.history-section .history-container .content .description-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .history-section .history-container .content .description-container {
    width: 50%;
  }
}
.history-section .history-container .content .description-container .description {
  width: 80%;
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}
@media (min-width: 992px) {
  .history-section .history-container .content .description-container .description {
    font-size: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .history-section .history-container .content .description-container .description {
    font-size: calc( 14px + (28 - 14) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}

.about-cv {
  padding: 20vh 0;
  padding-bottom: 16vh;
  background-color: var(--skin-tone);
}
.about-cv .wrapper-content {
  width: 85%;
  max-width: 885px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-cv .box-title {
  width: 100%;
  margin-bottom: 8vh;
  text-align: left;
}
.about-cv .box-title .tagname {
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 20px;
  letter-spacing: 1px;
  color: var(--medium-gray);
}
@media (min-width: 768px) {
  .about-cv .box-title .tagname {
    padding-bottom: 2vh;
    font-size: 18px;
  }
}
.about-cv .box-title h2 {
  display: inline-block;
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 42px;
  font-size: 48px;
  color: var(--dark);
}
@media (min-width: 768px) {
  .about-cv .box-title h2 {
    font-size: 114px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .about-cv .box-title h2 {
    font-size: calc( 42px + (114 - 42) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.about-cv .box-title h2 .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.about-cv .accordion-content .wrapper-cv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 3vh;
}
.about-cv .accordion-content .wrapper-cv .cv-item {
  width: 100%;
  text-align: left;
  margin-bottom: 4vh;
  line-height: 1.8;
}
@media (min-width: 1200px) {
  .about-cv .accordion-content .wrapper-cv .cv-item {
    width: 47%;
  }
}
.about-cv .accordion-content .wrapper-cv .cv-item .date {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 1vh;
  transition: color 0.45s ease;
}
.about-cv .accordion-content .wrapper-cv .cv-item .data {
  font-weight: 400;
  font-size: 14px;
  color: var(--dark-gray);
  opacity: 0.8;
  transition: opacity 0.45s ease;
}
@media (min-width: 768px) {
  .about-cv .accordion-content .wrapper-cv .cv-item .data {
    font-size: 16px;
  }
}
.about-cv .accordion-content .wrapper-cv .cv-item:hover .data {
  opacity: 1;
}

.about-treatments {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.about-treatments .treatment-container {
  width: 100%;
  position: relative;
  height: 80vh;
}
@media (min-width: 768px) {
  .about-treatments .treatment-container {
    width: 50%;
    height: 100vh;
  }
}
html[data-device=desktop] .about-treatments .treatment-container:hover::after {
  opacity: 0.45;
}
html[data-device=desktop] .about-treatments .treatment-container:hover .box-text {
  opacity: 1;
}
html[data-device=desktop] .about-treatments .treatment-container::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  display: block;
  transition: all 0.4s ease-out;
}
.about-treatments .treatment-container img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.about-treatments .treatment-container .box-text {
  position: absolute;
  bottom: 10vh;
  left: 0;
  z-index: 1;
  transition: all 0.4s ease-out;
  padding: 0 30px;
}
html[data-device=desktop] .about-treatments .treatment-container .box-text {
  opacity: 0;
}
@media (min-width: 768px) {
  .about-treatments .treatment-container .box-text {
    padding: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-treatments .treatment-container .box-text .treatment {
  color: #fff;
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 35px;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .about-treatments .treatment-container .box-text .treatment {
    font-size: 73px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .about-treatments .treatment-container .box-text .treatment {
    font-size: calc( 35px + (73 - 35) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.about-treatments .treatment-container .box-text .button-primary {
  margin-top: 5vh;
}
.about-treatments .treatment-container .box-text .button-primary span {
  color: #fff;
}

.category-portrait {
  height: 110vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .category-portrait {
    height: 120vh;
  }
}
.category-portrait .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .category-portrait .bg {
    display: block;
  }
}
.category-portrait .bg.mobile {
  display: block;
}
@media (min-width: 768px) {
  .category-portrait .bg.mobile {
    display: none;
  }
}
.category-portrait .text-container {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(40px);
}
.category-portrait .text-container .tagname {
  font-size: 14px;
  font-weight: 500;
  color: var(--chinese-silver);
}
@media (min-width: 768px) {
  .category-portrait .text-container .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .category-portrait .text-container .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.category-portrait .text-container .title {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  margin: 20px 0 80px 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .category-portrait .text-container .title {
    font-size: 116px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .category-portrait .text-container .title {
    font-size: calc( 40px + (116 - 40) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.category-portrait .text-container .button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.category-portrait .text-container .button svg {
  width: 60px;
  height: 60px;
}
.category-portrait .text-container .button svg .circle {
  fill: transparent;
  stroke: #fff;
  transition: all 0.4s ease-out;
}
.category-portrait .text-container .button svg .arrow {
  transition: all 0.4s ease-out;
  stroke: #fff;
}
@media (min-width: 768px) {
  .category-portrait .text-container .button svg {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .category-portrait .text-container .button svg {
    width: 140px;
    height: 140px;
  }
}
.category-portrait .text-container .button:hover svg .circle {
  fill: #fff;
}
.category-portrait .text-container .button:hover svg .arrow {
  stroke: var(--primary-color);
}

.category-introduction {
  position: relative;
}
@media (min-width: 768px) {
  .category-introduction {
    padding-bottom: 15vh;
  }
}
.category-introduction .col-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .category-introduction .col-wrapper {
    flex-wrap: nowrap;
  }
}
.category-introduction .col-wrapper .col-video {
  width: 80%;
  transform: translateY(-10vh);
}
@media (min-width: 768px) {
  .category-introduction .col-wrapper .col-video {
    width: 40.5%;
    transform: translateY(-20vh);
  }
}
.category-introduction .col-wrapper .col-video .video-container {
  overflow: hidden;
}
.category-introduction .col-wrapper .col-video .video-container .content {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-introduction .col-wrapper .col-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 5vh;
}
@media (min-width: 768px) {
  .category-introduction .col-wrapper .col-text {
    padding-top: 25vh;
    width: 50%;
  }
}
.category-introduction .col-wrapper .col-text .text-container {
  width: 100%;
}
@media (min-width: 768px) {
  .category-introduction .col-wrapper .col-text .text-container {
    width: 75%;
  }
}
.category-introduction .col-wrapper .col-text .text-container .tagname {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .category-introduction .col-wrapper .col-text .text-container .tagname {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .category-introduction .col-wrapper .col-text .text-container .tagname {
    font-size: calc( 12px + (16 - 12) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
@media (min-width: 1200px) {
  .category-introduction .col-wrapper .col-text .text-container .tagname {
    margin-bottom: 6vh;
  }
}
.category-introduction .col-wrapper .col-text .text-container .description {
  color: var(--medium-gray);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 6vh;
}
@media (min-width: 992px) {
  .category-introduction .col-wrapper .col-text .text-container .description {
    font-size: 18px;
    margin: 6vh 0;
  }
}
@media (min-width: 1600px) {
  .category-introduction .col-wrapper .col-text .text-container .description {
    font-size: 24px;
  }
}

.category-treatments {
  background-color: var(--skin-tone);
  padding: 10vh 0;
}
.category-treatments .box-title {
  width: 100%;
  text-align: center;
  padding: 10vh 0;
}
.category-treatments .box-title .tagname {
  font-weight: 500;
  font-size: 16px;
  color: var(--light-gray);
  text-transform: uppercase;
  font-size: 14px;
}
@media (min-width: 992px) {
  .category-treatments .box-title .tagname {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .category-treatments .box-title .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.category-treatments .box-title .title {
  font-size: 45px;
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  margin-top: 20px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .category-treatments .box-title .title {
    font-size: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .category-treatments .box-title .title {
    font-size: calc( 45px + (160 - 45) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.category-treatments .box-title .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.category-treatments .treatment {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--chinese-silver);
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 768px) {
  .category-treatments .treatment {
    flex-wrap: nowrap;
  }
}
.category-treatments .treatment:last-child {
  border: 0;
}
.category-treatments .treatment .img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .category-treatments .treatment .img-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    transform-origin: center center;
    transform: translateY(150%);
    opacity: 0;
    max-height: 438px;
  }
}
.category-treatments .treatment .img-container img {
  width: 100%;
}
.category-treatments .treatment .column-left {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-left {
    width: 70%;
  }
}
.category-treatments .treatment .column-left .text-container {
  padding: 6vh 0;
  display: flex;
  flex-direction: column;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-left .text-container {
    padding: 10vh 0;
  }
}
.category-treatments .treatment .column-left .text-container .treatment-tagname {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  transition: all 0.4s ease-out;
  display: flex;
  width: 100%;
  cursor: default;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-left .text-container .treatment-tagname {
    width: 90%;
    margin-left: auto;
  }
}
.category-treatments .treatment .column-left .text-container .treatment-tagname .mobile {
  vertical-align: baseline;
  color: var(--primary-color);
  margin-right: 5px;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-left .text-container .treatment-tagname .mobile {
    display: none;
  }
}
.category-treatments .treatment .column-left .text-container .box-text {
  display: flex;
  width: 100%;
}
.category-treatments .treatment .column-left .text-container .box-text .number-container {
  display: none;
  flex-direction: column;
  width: 10%;
  align-items: center;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-left .text-container .box-text .number-container {
    display: flex;
  }
}
.category-treatments .treatment .column-left .text-container .box-text .number-container .number {
  font-size: 22px;
  font-weight: 500;
  color: #666;
  transition: all 0.4s ease-out;
  margin-top: 40px;
  cursor: default;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-left .text-container .box-text .number-container .number {
    margin-top: 47px;
  }
}
@media (min-width: 992px) {
  .category-treatments .treatment .column-left .text-container .box-text .number-container .number {
    margin-top: 53px;
  }
}
@media (min-width: 1200px) {
  .category-treatments .treatment .column-left .text-container .box-text .number-container .number {
    margin-top: 60px;
  }
}
@media (min-width: 1600px) {
  .category-treatments .treatment .column-left .text-container .box-text .number-container .number {
    margin-top: 75px;
  }
}
.category-treatments .treatment .column-left .text-container .box-text a .title {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  margin-top: 30px;
  transition: all 0.4s ease-out;
  line-height: 1.21;
  font-size: 36px;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-left .text-container .box-text a .title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .category-treatments .treatment .column-left .text-container .box-text a .title {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .category-treatments .treatment .column-left .text-container .box-text a .title {
    font-size: 80px;
  }
}
@media (min-width: 1600px) {
  .category-treatments .treatment .column-left .text-container .box-text a .title {
    font-size: 115px;
  }
}
.category-treatments .treatment .column-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-right {
    width: 30%;
    margin: auto 0;
    margin-top: 50px;
  }
}
.category-treatments .treatment .column-right .content {
  padding: 6vh 0;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-right .content {
    padding: 10vh 0;
  }
}
.category-treatments .treatment .column-right .content .box-description {
  width: 100%;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-right .content .box-description {
    width: 80%;
    padding-left: 20px;
  }
}
.category-treatments .treatment .column-right .content .box-description .description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  cursor: default;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-right .content .box-description .description {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.category-treatments .treatment .column-right .content .button-primary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-right .content .button-primary span {
    display: none;
  }
}
.category-treatments .treatment .column-right .content .button-primary svg {
  width: 60px;
  height: 60px;
}
.category-treatments .treatment .column-right .content .button-primary svg .circle {
  fill: transparent;
  transition: all 0.4s ease-out;
}
.category-treatments .treatment .column-right .content .button-primary svg .arrow {
  transition: all 0.4s ease-out;
}
@media (min-width: 768px) {
  .category-treatments .treatment .column-right .content .button-primary svg {
    width: 80px;
    height: 80px;
  }
}
.category-treatments .treatment .column-right .content .button-primary:hover svg .circle {
  fill: var(--primary-color);
}
.category-treatments .treatment .column-right .content .button-primary:hover svg .arrow {
  stroke: #fff;
}
.category-treatments .treatment:hover .column-left .treatment-tagname {
  color: var(--dark);
}
.category-treatments .treatment:hover .column-left .box-text .number-container .number {
  color: var(--primary-color);
}
.category-treatments .treatment:hover .column-left .box-text a .title {
  color: var(--primary-color);
}

.distort {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}
html[data-device=mobile] .distort, html[data-device=tablet] .distort {
  display: none;
}
.distort .distort__img {
  opacity: 0;
}

.fixed-element {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}

.separador {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.separador .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .separador .bg {
    display: block;
  }
}
.separador .bg.mobile {
  display: block;
}
@media (min-width: 768px) {
  .separador .bg.mobile {
    display: none;
  }
}
.separador a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.separador .box-text {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.separador .box-text .tagname {
  font-size: 14px;
  font-weight: 500;
  color: var(--chinese-silver);
}
@media (min-width: 768px) {
  .separador .box-text .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .separador .box-text .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.separador .box-text .title {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  margin: 30px 0 80px 0;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .separador .box-text .title {
    font-size: 116px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .separador .box-text .title {
    font-size: calc( 40px + (116 - 40) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.separador .box-text .button-primary {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
html[data-device=desktop] .separador .box-text .button-primary {
  display: none;
}
.separador .box-text .button-primary svg {
  width: 60px;
  height: 60px;
}
.separador .box-text .button-primary svg .circle {
  fill: transparent;
  stroke: #fff;
  transition: all 0.4s ease-out;
}
.separador .box-text .button-primary svg .arrow {
  transition: all 0.4s ease-out;
  stroke: #fff;
}
@media (min-width: 768px) {
  .separador .box-text .button-primary svg {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .separador .box-text .button-primary svg {
    width: 140px;
    height: 140px;
  }
}
.separador .box-text .button-primary:hover svg .circle {
  fill: #fff;
}
.separador .box-text .button-primary:hover svg .arrow {
  stroke: var(--primary-color);
}

.skinlab-portrait {
  height: 110vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.skinlab-portrait .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.skinlab-portrait::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 0;
}
.skinlab-portrait .text-container {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(40px);
}
@media (min-width: 768px) {
  .skinlab-portrait .text-container {
    text-align: left;
  }
}
.skinlab-portrait .text-container .tagname {
  font-size: 14px;
  font-weight: 500;
  color: var(--chinese-silver);
}
@media (min-width: 768px) {
  .skinlab-portrait .text-container .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .skinlab-portrait .text-container .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.skinlab-portrait .text-container .title {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 44px;
  color: #fff;
  margin: 20px 0 80px 0;
}
@media (min-width: 768px) {
  .skinlab-portrait .text-container .title {
    font-size: 116px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .skinlab-portrait .text-container .title {
    font-size: calc( 44px + (116 - 44) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .skinlab-portrait .text-container .title {
    margin-bottom: 15px;
  }
}
.skinlab-portrait .text-container .button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.skinlab-portrait .text-container .button svg {
  width: 60px;
  height: 60px;
}
.skinlab-portrait .text-container .button svg .circle {
  fill: transparent;
  stroke: #fff;
  transition: all 0.4s ease-out;
}
.skinlab-portrait .text-container .button svg .arrow {
  transition: all 0.4s ease-out;
  stroke: #fff;
}
@media (min-width: 768px) {
  .skinlab-portrait .text-container .button svg {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .skinlab-portrait .text-container .button svg {
    width: 140px;
    height: 140px;
  }
}
.skinlab-portrait .text-container .button:hover svg .circle {
  fill: #fff;
}
.skinlab-portrait .text-container .button:hover svg .arrow {
  stroke: var(--primary-color);
}

.skinlab-introduction {
  background-color: var(--dark);
  position: relative;
  padding-bottom: 15vh;
}
.skinlab-introduction::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: var(--dark);
}
.skinlab-introduction .container-boxed {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateY(-10vh);
}
.skinlab-introduction .container-boxed .image-container {
  width: 80%;
  margin-bottom: 9vh;
}
@media (min-width: 768px) {
  .skinlab-introduction .container-boxed .image-container {
    width: 40%;
  }
}
.skinlab-introduction .container-boxed .image-container img {
  width: 100%;
}
.skinlab-introduction .container-boxed .description-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 9vh;
}
@media (min-width: 768px) {
  .skinlab-introduction .container-boxed .description-container {
    width: 50%;
  }
}
.skinlab-introduction .container-boxed .description-container .title {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .skinlab-introduction .container-boxed .description-container .title {
    font-size: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skinlab-introduction .container-boxed .description-container .title {
    font-size: calc( 12px + (26 - 12) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.skinlab-introduction .container-boxed .description-container .description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--light-gray);
  width: 100%;
}
@media (min-width: 768px) {
  .skinlab-introduction .container-boxed .description-container .description {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skinlab-introduction .container-boxed .description-container .description {
    font-size: calc( 14px + (24 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 768px) {
  .skinlab-introduction .container-boxed .description-container .description {
    width: 85%;
  }
}
.skinlab-introduction .container-boxed .info-container {
  width: 100%;
  border-left: 1px solid #fff;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
}
.skinlab-introduction .container-boxed .info-container .title-data {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .skinlab-introduction .container-boxed .info-container .title-data {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skinlab-introduction .container-boxed .info-container .title-data {
    font-size: calc( 12px + (20 - 12) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.skinlab-introduction .container-boxed .info-container .info-data {
  font-size: 14px;
  color: var(--chinese-silver);
  margin-bottom: 15px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .skinlab-introduction .container-boxed .info-container .info-data {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skinlab-introduction .container-boxed .info-container .info-data {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
.skinlab-introduction .container-boxed .info-container .info-data:last-child {
  margin-bottom: 0;
}
.skinlab-introduction .marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
  margin-top: 5vh;
}
.skinlab-introduction .marquee span {
  display: flex;
  white-space: nowrap;
  font-size: 44px;
  color: var(--primary-color);
  font-family: "IvyMode";
  font-weight: 400;
  z-index: 2;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .skinlab-introduction .marquee span {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skinlab-introduction .marquee span {
    font-size: calc( 44px + (160 - 44) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .skinlab-introduction .marquee span {
    z-index: 1;
  }
}

.skinlab-main {
  padding: 12vh 0;
  position: relative;
}
@media (min-width: 768px) {
  .skinlab-main {
    padding-bottom: 40vh;
    padding-top: 40vh;
  }
}
@media (min-width: 992px) {
  .skinlab-main {
    padding-top: 60vh;
  }
}
@media (min-width: 1600px) {
  .skinlab-main {
    padding-top: 70vh;
  }
}
.skinlab-main .container-boxed {
  display: flex;
  justify-content: space-between;
  z-index: 0;
  position: relative;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .skinlab-main .container-boxed {
    flex-wrap: nowrap;
  }
}
.skinlab-main .container-boxed .box-title {
  position: relative;
  transform: translateY(10%);
  text-align: center;
  z-index: 3;
  width: 100%;
}
@media (min-width: 768px) {
  .skinlab-main .container-boxed .box-title {
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    position: absolute;
  }
}
.skinlab-main .container-boxed .box-title .title {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 60px;
}
@media (min-width: 768px) {
  .skinlab-main .container-boxed .box-title .title {
    font-size: 100px;
  }
}
@media (min-width: 992px) {
  .skinlab-main .container-boxed .box-title .title {
    font-size: 150px;
  }
}
@media (min-width: 1200px) {
  .skinlab-main .container-boxed .box-title .title {
    font-size: 180px;
  }
}
.skinlab-main .container-boxed .box-title .title .line {
  overflow: hidden;
}
.skinlab-main .container-boxed .box-title .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.skinlab-main .container-boxed .card {
  width: 100%;
  max-width: 382px;
  margin-bottom: 10vh;
}
@media (min-width: 768px) {
  .skinlab-main .container-boxed .card {
    margin-right: 5vh;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .skinlab-main .container-boxed .card {
    margin-right: 0;
  }
}
.skinlab-main .container-boxed .card:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .skinlab-main .container-boxed .card:nth-child(3) {
    transform: translateY(15%);
  }
}
@media (min-width: 992px) {
  .skinlab-main .container-boxed .card:nth-child(3) {
    transform: translateY(30%);
  }
}
.skinlab-main .container-boxed .card .img-container {
  width: 100%;
  margin-bottom: 50px;
  overflow: hidden;
}
.skinlab-main .container-boxed .card .img-container img {
  width: 100%;
}
.skinlab-main .container-boxed .card .title {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  display: flex;
  flex-wrap: nowrap;
}
.skinlab-main .container-boxed .card .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.skinlab-main .container-boxed .card .title .lineParent {
  overflow: hidden;
}
@media (min-width: 992px) {
  .skinlab-main .container-boxed .card .title {
    font-size: 24px;
  }
}
.skinlab-main .container-boxed .card .copy {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}
@media (min-width: 992px) {
  .skinlab-main .container-boxed .card .copy {
    font-size: 18px;
  }
}

.skinlab-team {
  background-color: var(--skin-tone);
  padding-top: 20vh;
}
.skinlab-team .box-title {
  text-align: center;
  width: 100%;
}
.skinlab-team .box-title .tagname {
  font-size: 14px;
  color: var(--medium-gray);
  font-weight: 500;
}
@media (min-width: 992px) {
  .skinlab-team .box-title .tagname {
    font-size: 16px;
  }
}
.skinlab-team .box-title .title {
  font-size: 42px;
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .skinlab-team .box-title .title {
    font-size: 140px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .skinlab-team .box-title .title {
    font-size: calc( 42px + (140 - 42) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.skinlab-team .box-title .title .color {
  color: var(--primary-color);
}
.skinlab-team .container {
  max-width: 1484px;
  margin: 0 auto;
}
.skinlab-team .container .col-wrapper {
  padding: 20vh 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  flex-direction: row;
}
.skinlab-team .container .col-wrapper.inverted {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .skinlab-team .container .col-wrapper.inverted .col-text {
    padding: 0;
    padding-right: 5%;
  }
}
@media (min-width: 768px) {
  .skinlab-team .container .col-wrapper {
    flex-wrap: nowrap;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1600px) {
  .skinlab-team .container .col-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.skinlab-team .container .col-wrapper:first-child {
  padding-bottom: 0;
}
.skinlab-team .container .col-wrapper .col-content {
  width: 100%;
  max-width: 587px;
}
@media (min-width: 768px) {
  .skinlab-team .container .col-wrapper .col-content {
    width: 50%;
  }
}
.skinlab-team .container .col-wrapper .col-content .media-container {
  max-height: 320px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .skinlab-team .container .col-wrapper .col-content .media-container {
    max-height: none;
  }
}
.skinlab-team .container .col-wrapper .col-content .media-container .content {
  width: 100%;
  height: 100%;
  min-height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-9vh);
}
@media (min-width: 768px) {
  .skinlab-team .container .col-wrapper .col-content .media-container .content {
    transform: translateY(0);
  }
}
.skinlab-team .container .col-wrapper .col-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  margin-top: 6vh;
}
@media (min-width: 768px) {
  .skinlab-team .container .col-wrapper .col-text {
    padding: 0;
    padding-left: 5%;
    width: 50%;
    margin-top: 0;
  }
}
.skinlab-team .container .col-wrapper .col-text .text-container .tagname {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .skinlab-team .container .col-wrapper .col-text .text-container .tagname {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .skinlab-team .container .col-wrapper .col-text .text-container .tagname {
    font-size: calc( 12px + (16 - 12) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.skinlab-team .container .col-wrapper .col-text .text-container .title {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 3vh;
}
@media (min-width: 992px) {
  .skinlab-team .container .col-wrapper .col-text .text-container .title {
    font-size: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .skinlab-team .container .col-wrapper .col-text .text-container .title {
    font-size: calc( 36px + (70 - 36) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.skinlab-team .container .col-wrapper .col-text .text-container .description {
  color: var(--medium-gray);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 6vh;
}
@media (min-width: 992px) {
  .skinlab-team .container .col-wrapper .col-text .text-container .description {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .skinlab-team .container .col-wrapper .col-text .text-container .description {
    font-size: 24px;
  }
}
.skinlab-team .container .marquee-container {
  position: relative;
  height: 100%;
}
.skinlab-team .container .marquee-container .marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
}
.skinlab-team .container .marquee-container .marquee span {
  display: flex;
  white-space: nowrap;
  font-size: 44px;
  color: var(--primary-color);
  font-family: "IvyMode";
  font-weight: 400;
  z-index: 2;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .skinlab-team .container .marquee-container .marquee span {
    font-size: 160px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .skinlab-team .container .marquee-container .marquee span {
    font-size: calc( 44px + (160 - 44) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .skinlab-team .container .marquee-container .marquee span {
    z-index: 1;
  }
}

.skinlab-staff {
  background-color: var(--dark);
  padding: 20vh 0;
  padding-bottom: 4vh;
}
.skinlab-staff .box-title {
  margin-bottom: 10vh;
}
.skinlab-staff .box-title .tagname {
  display: block;
  color: var(--light-gray);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .skinlab-staff .box-title .tagname {
    font-size: 18px;
  }
}
.skinlab-staff .box-title .title {
  font-size: 50px;
  font-family: "IvyMode";
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .skinlab-staff .box-title .title {
    font-size: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .skinlab-staff .box-title .title {
    font-size: calc( 50px + (100 - 50) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.skinlab-staff .box-title .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
}
.skinlab-staff .swiper-container {
  overflow: visible;
  padding-bottom: 8vh;
  margin: 0 auto;
  position: relative;
  width: 80%;
  margin-left: 0;
}
@media (min-width: 768px) {
  .skinlab-staff .swiper-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.skinlab-staff .swiper-wrapper {
  margin-left: 0;
}
@media (min-width: 768px) {
  .skinlab-staff .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.skinlab-staff .swiper-slide {
  text-align: left;
  font-size: 18px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}
.skinlab-staff .swiper-slide .img-container {
  width: 100%;
  overflow: hidden;
}
.skinlab-staff .swiper-slide .img-container img {
  width: 100%;
}
.skinlab-staff .swiper-slide .text-container .name {
  font-size: 32px;
  margin-top: 35px;
  margin-bottom: 15px;
  font-family: "IvyMode";
  font-weight: 400;
  color: #fff;
}
@media (min-width: 992px) {
  .skinlab-staff .swiper-slide .text-container .name {
    font-size: 36px;
  }
}
.skinlab-staff .swiper-slide .text-container .copy {
  color: var(--primary-color);
  display: block;
  font-size: 15px;
  padding-bottom: 25px;
  font-weight: 400;
  line-height: 1.3;
  width: 100%;
}
@media (min-width: 992px) {
  .skinlab-staff .swiper-slide .text-container .copy {
    font-size: 20px;
  }
}
.skinlab-staff .swiper-slide .text-container .box-description {
  position: relative;
  padding-top: 25px;
}
.skinlab-staff .swiper-slide .text-container .box-description::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--chinese-silver);
}
.skinlab-staff .swiper-slide .text-container .box-description .description {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .skinlab-staff .swiper-slide .text-container .box-description .description {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .skinlab-staff .swiper-slide .text-container .box-description .description {
    font-size: 18px;
  }
}

.landing-portrait {
  height: 120vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.landing-portrait .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .landing-portrait .bg {
    display: block;
  }
}
.landing-portrait .bg.mobile {
  display: block;
}
@media (min-width: 768px) {
  .landing-portrait .bg.mobile {
    display: none;
  }
}
.landing-portrait .text-container {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(40px);
}
.landing-portrait .text-container .tagname {
  font-size: 14px;
  font-weight: 500;
  color: var(--chinese-silver);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .landing-portrait .text-container .tagname {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .landing-portrait .text-container .tagname {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.landing-portrait .text-container .title {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  margin: 20px 0 60px 0;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .landing-portrait .text-container .title {
    font-size: 116px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .landing-portrait .text-container .title {
    font-size: calc( 40px + (116 - 40) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.landing-portrait .text-container .button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.landing-portrait .text-container .button svg {
  width: 60px;
  height: 60px;
}
.landing-portrait .text-container .button svg .circle {
  fill: transparent;
  stroke: #fff;
  transition: all 0.4s ease-out;
}
.landing-portrait .text-container .button svg .arrow {
  transition: all 0.4s ease-out;
  stroke: #fff;
}
@media (min-width: 768px) {
  .landing-portrait .text-container .button svg {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .landing-portrait .text-container .button svg {
    width: 140px;
    height: 140px;
  }
}
.landing-portrait .text-container .button:hover svg .circle {
  fill: #fff;
}
.landing-portrait .text-container .button:hover svg .arrow {
  stroke: var(--primary-color);
}

.landing-introduction {
  position: relative;
  transform: translateY(-8vh);
}
@media (min-width: 768px) {
  .landing-introduction {
    transform: translateY(-20vh);
  }
}
.landing-introduction .col-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .landing-introduction .col-wrapper {
    flex-wrap: nowrap;
  }
}
.landing-introduction .col-wrapper .col-image {
  width: 100%;
  margin-bottom: 6vh;
}
@media (min-width: 768px) {
  .landing-introduction .col-wrapper .col-image {
    width: 40.5%;
    margin-bottom: 0;
  }
}
.landing-introduction .col-wrapper .col-image .image-container {
  overflow: hidden;
}
.landing-introduction .col-wrapper .col-image .image-container .content {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-introduction .col-wrapper .col-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 6vh;
  text-align: center;
}
@media (min-width: 768px) {
  .landing-introduction .col-wrapper .col-text {
    width: 50%;
    text-align: left;
  }
}
.landing-introduction .col-wrapper .col-text .text-container {
  width: 100%;
}
.landing-introduction .col-wrapper .col-text .text-container .title {
  color: var(--dark);
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .landing-introduction .col-wrapper .col-text .text-container .title {
    font-size: 77px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .landing-introduction .col-wrapper .col-text .text-container .title {
    font-size: calc( 40px + (77 - 40) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.landing-introduction .col-wrapper .col-text .text-container .title .color {
  color: var(--primary-color);
  vertical-align: baseline;
  display: inline-block;
}

.landing-description {
  padding-top: 3vh;
  padding-bottom: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .landing-description {
    padding-top: 10vh;
  }
}
.landing-description::after {
  content: "";
  position: absolute;
  top: -10vh;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  width: 1px;
  background-color: var(--chinese-silver);
  display: block;
}
@media (min-width: 768px) {
  .landing-description::after {
    display: none;
  }
}
.landing-description .container-boxed .text-container {
  z-index: 2;
  text-align: center;
  max-width: 1220px;
  margin: 0 auto;
}
.landing-description .container-boxed .text-container .tagname {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 768px) {
  .landing-description .container-boxed .text-container .tagname {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .landing-description .container-boxed .text-container .tagname {
    font-size: calc( 12px + (18 - 12) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 768px) {
  .landing-description .container-boxed .text-container .tagname {
    display: block;
  }
}
.landing-description .container-boxed .text-container .description {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 20px;
  color: var(--dark-gray);
  margin-top: 30px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .landing-description .container-boxed .text-container .description {
    font-size: 46px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .landing-description .container-boxed .text-container .description {
    font-size: calc( 20px + (46 - 20) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}

.landing-about {
  position: relative;
  padding-bottom: 20vh;
}
.landing-about .col-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .landing-about .col-wrapper {
    flex-wrap: nowrap;
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: row;
  }
}
@media (min-width: 1600px) {
  .landing-about .col-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.landing-about .col-wrapper .col-content {
  width: 100%;
  margin-bottom: 10vh;
}
@media (min-width: 768px) {
  .landing-about .col-wrapper .col-content {
    width: 50%;
    max-width: 670px;
    margin-bottom: 0;
  }
}
.landing-about .col-wrapper .col-content .media-container {
  overflow: hidden;
}
.landing-about .col-wrapper .col-content .media-container .content {
  width: 100%;
  height: 100%;
  min-height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-about .col-wrapper .col-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .landing-about .col-wrapper .col-text {
    padding-right: 5%;
    width: 50%;
    text-align: left;
  }
}
.landing-about .col-wrapper .col-text .text-container .title {
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .landing-about .col-wrapper .col-text .text-container .title {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1920px) {
  .landing-about .col-wrapper .col-text .text-container .title {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 992px ) / (1920 - 992)) );
  }
}
.landing-about .col-wrapper .col-text .text-container .description {
  color: var(--medium-gray);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin: 3vh 0;
}
.landing-about .col-wrapper .col-text .text-container .description b,
.landing-about .col-wrapper .col-text .text-container .description span,
.landing-about .col-wrapper .col-text .text-container .description strong {
  font-weight: 600;
  display: inline-block;
}
@media (min-width: 992px) {
  .landing-about .col-wrapper .col-text .text-container .description {
    font-size: 18px;
    margin: 6vh 0;
  }
}
@media (min-width: 1600px) {
  .landing-about .col-wrapper .col-text .text-container .description {
    font-size: 22px;
  }
}
.landing-about .col-wrapper .col-text .text-container .button-primary {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .landing-about .col-wrapper .col-text .text-container .button-primary {
    margin: 0;
  }
}

.form-marquee {
  padding-top: 10vh;
  background-color: var(--dark);
}
@media (min-width: 768px) {
  .form-marquee {
    padding-top: 20vh;
  }
}
.form-marquee.marquee {
  display: flex;
  flex-wrap: nowrap;
  transform-origin: center;
}
.form-marquee.marquee span {
  display: flex;
  white-space: nowrap;
  font-size: 50px;
  color: var(--primary-color);
  font-family: "IvyMode";
  font-weight: 400;
  z-index: 2;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .form-marquee.marquee span {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
  .form-marquee.marquee span {
    font-size: calc( 50px + (100 - 50) * (( 100vw - 768px ) / (1920 - 768)) );
  }
}
@media (min-width: 992px) {
  .form-marquee.marquee span {
    z-index: 1;
  }
}

.contact-portrait {
  position: relative;
  height: 100vh;
  background-color: var(--dark);
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-portrait {
    height: 130vh;
  }
}
.contact-portrait .wrapper-img {
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 200%;
  max-width: 1426px;
  margin: 0 auto;
  height: 100vh;
  transform: translateX(-50%);
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-img {
    width: 100%;
    transform: translateX(0);
  }
}
.contact-portrait .wrapper-img .curved-text {
  width: 100%;
  transform-origin: center;
  will-change: transform;
}
.contact-portrait .wrapper-places {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.contact-portrait .wrapper-places .data-container {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: center;
  transform: translate(0, -50%);
  flex-wrap: wrap;
  padding: 0 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places .data-container {
    padding: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.contact-portrait .wrapper-places .data-container .box-title {
  margin-bottom: 5vh;
  width: 100%;
}
@media (min-width: 992px) {
  .contact-portrait .wrapper-places .data-container .box-title {
    margin-bottom: 9vh;
  }
}
.contact-portrait .wrapper-places .data-container .box-title h2 {
  font-family: "IvyMode";
  font-weight: 400;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .contact-portrait .wrapper-places .data-container .box-title h2 {
    font-size: 30px;
  }
}
.contact-portrait .wrapper-places .data-container .box-place {
  width: 100%;
  margin-bottom: 5vh;
}
.contact-portrait .wrapper-places .data-container .box-place:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places .data-container .box-place {
    width: 50%;
    margin-bottom: 0;
  }
}
.contact-portrait .wrapper-places .data-container .box-place .place-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .contact-portrait .wrapper-places .data-container .box-place .place-name {
    font-size: 15px;
  }
}
.contact-portrait .wrapper-places .data-container .box-place .place-data li,
.contact-portrait .wrapper-places .data-container .box-place .place-data a {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
  vertical-align: baseline;
}
@media (min-width: 992px) {
  .contact-portrait .wrapper-places .data-container .box-place .place-data li,
.contact-portrait .wrapper-places .data-container .box-place .place-data a {
    font-size: 15px;
  }
}
.contact-portrait .wrapper-places .data-container .button {
  margin-top: 5vh;
  display: none;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-portrait .wrapper-places .data-container .button {
    display: block;
  }
}
@media (min-width: 992px) {
  .contact-portrait .wrapper-places .data-container .button {
    margin-top: 9vh;
  }
}

@-webkit-keyframes custom-arrow {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  49% {
    transform: translate3d(0, 110%, 0);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 0;
    transform: translate3d(0, -110%, 0);
  }
  60% {
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes custom-arrow {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  49% {
    transform: translate3d(0, 110%, 0);
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 0;
    transform: translate3d(0, -110%, 0);
  }
  60% {
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animated.custom-arrow {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: normal;
          animation-fill-mode: normal;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-name: custom-arrow;
  animation-name: custom-arrow;
}

.navigation-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.navigation-menu .container-boxed {
  padding: 0;
}
@media (min-width: 768px) {
  .navigation-menu .container-boxed {
    padding: 0 30px;
  }
}
@media (min-width: 1600px) {
  .navigation-menu .container-boxed {
    padding: 0;
  }
}
.navigation-menu .container-boxed .nav-header {
  width: 100%;
  height: 100px;
  position: relative;
  pointer-events: none;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  padding: 0 30px;
  transition: all 0.4s ease-out 0s;
}
@media (min-width: 768px) {
  .navigation-menu .container-boxed .nav-header {
    height: 70px;
    margin-top: 9vh;
    padding: 0;
  }
}
.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: 768px) {
  .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: 768px) {
  .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: 10px;
  color: var(--light-gray);
  pointer-events: all;
  transition: all 0.3s ease-out;
}
.navigation-menu .container-boxed .nav-header .c-left .lang-selector a.active {
  color: var(--primary-color);
}
.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(--primary-color);
}
@media (min-width: 768px) {
  .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-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 125px;
}
@media (min-width: 768px) {
  .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: #4e4e4e;
  transition: all 0.3s ease-out;
}
.navigation-menu .container-boxed .nav-header .c-center .logo.white svg path {
  fill: #fff;
}
.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: 768px) {
  .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 .lang-selector {
  display: inline-flex;
  z-index: 0;
  align-items: center;
}
@media (min-width: 768px) {
  .navigation-menu .container-boxed .nav-header .c-right .lang-selector {
    margin-right: 60px;
  }
}
.navigation-menu .container-boxed .nav-header .c-right .lang-selector a {
  font-size: 14px;
  margin-right: 10px;
  color: var(--light-gray);
  pointer-events: all;
}
.navigation-menu .container-boxed .nav-header .c-right .lang-selector a.active {
  color: var(--primary-color);
}
.navigation-menu .container-boxed .nav-header .c-right .lang-selector a.active-dark {
  color: var(--dark);
}
@media (min-width: 768px) {
  .navigation-menu .container-boxed .nav-header .c-right .lang-selector a {
    font-size: 16px;
  }
}
.navigation-menu .container-boxed .nav-header .c-right .lang-selector a:last-child {
  margin-right: 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;
}
@media (min-width: 768px) {
  .navigation-menu .container-boxed .nav-header .c-right .burger {
    right: 0;
    left: 0;
  }
}
.navigation-menu .container-boxed .nav-header .c-right .burger.open > div > div {
  background-color: var(--dark) !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: 1px;
  margin: 0 0 8px 0;
  background-color: var(--primary-color);
  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(9px) 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 .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;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.navigation-menu .mega-menu .menu-images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.navigation-menu .mega-menu .menu-images .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.navigation-menu .mega-menu .menu-images .content.light {
  opacity: 0;
}
.navigation-menu .mega-menu .menu-images .content.light .left {
  position: absolute;
  top: 11vw;
  left: 13vw;
  width: 20vw;
  height: auto;
}
.navigation-menu .mega-menu .menu-images .content.light .right {
  position: absolute;
  bottom: 11vw;
  right: 13vw;
  width: 16vw;
  height: auto;
}
.navigation-menu .mega-menu .menu-images .content.dark {
  opacity: 0;
}
.navigation-menu .mega-menu .menu-images .content.dark .left {
  position: absolute;
  bottom: 9vw;
  left: 15vw;
  width: 15vw;
  height: auto;
}
.navigation-menu .mega-menu .menu-images .content.dark .right {
  position: absolute;
  top: 7vw;
  right: 15vw;
  width: 21vw;
  height: auto;
}
.navigation-menu .mega-menu .menu-items {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 15vh 0;
  overflow: auto;
  width: 100%;
}
.navigation-menu .mega-menu .menu-items .item {
  margin: 0 auto;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .navigation-menu .mega-menu .menu-items .item {
    margin-bottom: 40px;
  }
}
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 .tagname {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 1px;
  transition: all 0.3s ease-out;
}
.navigation-menu .mega-menu .menu-items .item a {
  font-family: "IvyMode";
  font-weight: 400;
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .navigation-menu .mega-menu .menu-items .item a {
    font-size: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .navigation-menu .mega-menu .menu-items .item a {
    font-size: calc( 30px + (50 - 30) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.navigation-menu .mega-menu .menu-items .ig-container {
  margin-top: 20px;
}
.navigation-menu .mega-menu .menu-items .ig-container.hover .button svg path {
  fill: #ccc;
}
.navigation-menu .mega-menu .menu-items .ig-container.hover .button .text {
  color: var(--chinese-silver);
}
.navigation-menu .mega-menu .menu-items .ig-container .button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation-menu .mega-menu .menu-items .ig-container .button svg path {
  transition: all 0.3s ease-out;
}
.navigation-menu .mega-menu .menu-items .ig-container .button .text {
  margin-left: 5px;
  color: var(--dark-gray);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease-out;
}

.wrapper-loading {
  position: fixed;
  bottom: 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: var(--dark);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.wrapper-loading .wrapper-preloader .box-preloader {
  display: inline-block;
  padding-top: 0;
  text-align: center;
}
.wrapper-loading .wrapper-preloader .box-preloader .logo__container {
  opacity: 0;
}
.wrapper-loading .wrapper-preloader .box-preloader .loading__logo {
  height: 26px;
}

.prevent-landscape {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
  background-color: var(--skin-tone);
  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;
  }
}
.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: var(--primary-color);
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
}
#pointer .main-circle .inner-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#pointer .main-circle .inner-text span {
  display: inline-block;
  text-align: center;
  opacity: 0;
  font-size: 0;
  color: #fff;
  vertical-align: baseline;
  font-weight: 500;
  line-height: 1.2;
  transform: translateY(2px);
  transition: opacity 0.3s ease-out;
}
#pointer .arrows {
  position: absolute;
  top: 50%;
  transform: scale(1) translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 39px;
  color: var(--primary-color);
  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: var(--primary-color);
  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: var(--primary-color);
  transition: all 0.3s ease;
  transform: translate3d(-38%, -50%, 0) scale(0);
}
#pointer .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  color: #fff;
  font-family: "Gotham-Medium", Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-align: center;
  font-weight: 100;
  letter-spacing: 0;
  transition: all 0.3s;
  transform: translateX(-50%);
  opacity: 0;
}
#pointer .text span {
  position: relative;
  background: #111;
  padding: 5px 8px;
  white-space: nowrap;
}
#pointer.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: 100%;
  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;
}

.button-secondary {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.button-secondary span {
  vertical-align: baseline;
  color: #fff;
  font-size: 24px;
}
.button-secondary .icon {
  margin-left: 16px;
  transition: all 0.3s ease-out;
}
.button-secondary .icon .circle {
  stroke: #fff;
  fill: none;
  transition: all 0.2s ease-out;
}
.button-secondary .icon .arrow {
  stroke: #fff;
  transition: all 0.2s ease-out;
}
.button-secondary:hover .icon {
  transform: translateX(6px);
}
.button-secondary:hover .icon .circle {
  fill: #fff;
}
.button-secondary:hover .icon .arrow {
  stroke: #141414;
}

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

.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-weight: 400;
  font-size: 14px;
  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 {
  overflow: hidden;
}

.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: var(--primary-color);
  z-index: 1;
}
@media (min-width: 768px) {
  .whatsapp-box {
    left: auto;
    right: 30px;
    transform: translateX(0);
  }
}
.whatsapp-box .box a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatsapp-box .box a .text-container {
  overflow: hidden;
  width: 0;
}
.whatsapp-box .box a .text-container .text {
  padding-left: 10px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .whatsapp-box .box a {
    font-size: 15px;
  }
}
