@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap);
/* App styles */
/* Root vars */
:root {
  --bg-projects: #272727;
  --bg-white:#fff;
  --bg-black: #000;
  --text-white: #fff;
  --text-black: #272727;
  --gray-888: #888888;
  --gray-07: #707070;
  --gray-ccc: #ccc;
  --beige: #F2EDE7;
  --red-1: #A75239;
  --bezier-1: cubic-bezier(0.7, 0, 0.3, 1);
}

@font-face {
  font-family: "Vanitas";
  src: url(../fonts/Vanitas-ExtraBold.389f3a.woff) format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.3cdb4b.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.b8587a.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
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;
}

a[href^=tel] {
  text-decoration: inherit;
  color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full-height {
  height: 100%;
}

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

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

body.lock {
  overflow: hidden;
}

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

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

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

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

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

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

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

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: 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;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* App Pages, Sections & Components styles */
nav .container-fluid,
section .container-fluid,
article .container-fluid {
  width: 100%;
}
nav .container-fluid .container-wrapper,
section .container-fluid .container-wrapper,
article .container-fluid .container-wrapper {
  width: 100%;
  padding: 0 6vw;
}
nav .container-boxed,
section .container-boxed,
article .container-boxed {
  width: 100%;
  max-width: 1710px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  nav .container-boxed,
section .container-boxed,
article .container-boxed {
    padding: 0 3vw;
  }
}
@media screen and (min-width: 1900px) {
  nav .container-boxed,
section .container-boxed,
article .container-boxed {
    padding: 0;
  }
}
nav .container-boxed .container-wrapper,
section .container-boxed .container-wrapper,
article .container-boxed .container-wrapper {
  width: 100%;
  padding: 0 6vw;
}

.main-section-spacing, .next-project, .image-comparison, .about-project, .contact, .clients, .work-together, .mind, .instagram, .news, .design-philosophy, .selected-projects, .home-introduction {
  padding: clamp(14vh, 30vw, 24vh) 0;
  /* Check projects.showcase 
    And Projects.php
    in case the
    values need to change */
}

.frame-fix, .image-comparison, .project-showcase {
  position: relative;
}
.frame-fix::before, .image-comparison::before, .project-showcase::before {
  content: "";
  height: 4px;
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
  background-color: var(--text-white);
  z-index: 1;
}
.frame-fix.dark::before, .dark.image-comparison::before, .dark.project-showcase::before {
  background-color: var(--text-black);
}

.portrait {
  height: 120vh;
  width: 100%;
  background-color: var(--text-white);
}
.portrait .title-container {
  position: relative;
  top: 50vh;
  transform: translateY(-50%);
  padding: 0;
  z-index: 3;
  pointer-events: none;
}
@media (min-width: 992px) {
  .portrait .title-container {
    top: 50vh;
  }
}
.portrait .title-container .portrait-tagname {
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
}
.portrait .title-container .portrait-tagname.m-30 {
  margin-bottom: 0;
}
.portrait .title-container .portrait-tagname.home-tagname {
  letter-spacing: 2px;
}
.portrait .title-container .portrait-tagname span {
  display: block;
  text-align: center;
  margin: auto;
}
.portrait .title-container .title h1 {
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 320px) {
  .portrait .title-container .title h1 {
    font-size: 100px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .portrait .title-container .title h1 {
    font-size: calc( 36px + (100 - 36) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.portrait .title-container .title h1.lh-1-5 {
  line-height: 1.5;
}
.portrait .title-container .title h1.project-title {
  font-size: 42px;
}
@media (min-width: 320px) {
  .portrait .title-container .title h1.project-title {
    font-size: 160px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .portrait .title-container .title h1.project-title {
    font-size: calc( 42px + (160 - 42) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.portrait .title-container .title h1 .lineMask {
  overflow: hidden;
}
.portrait .title-container .title.mobile {
  display: block;
}
@media (min-width: 992px) {
  .portrait .title-container .title.mobile {
    display: none;
  }
}
html[lang=es] .portrait .title-container .title.mobile.donnaterra h1 {
  font-size: 32px;
}
@media (min-width: 320px) {
  html[lang=es] .portrait .title-container .title.mobile.donnaterra h1 {
    font-size: 100px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  html[lang=es] .portrait .title-container .title.mobile.donnaterra h1 {
    font-size: calc( 32px + (100 - 32) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.portrait .title-container .title.desktop {
  display: none;
}
@media (min-width: 992px) {
  .portrait .title-container .title.desktop {
    display: block;
  }
}
.portrait .portrait-bg {
  position: absolute;
  width: 100%;
  height: 120vh;
  overflow: hidden;
}
.portrait .portrait-bg .bg-black-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bg-black);
  z-index: 1;
}
.portrait .portrait-bg .portrait-bg-img {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  opacity: 0.37;
  scale: 1;
}
.portrait .redes-container .redes-list {
  display: none;
  pointer-events: all;
}
@media (min-width: 992px) {
  .portrait .redes-container .redes-list {
    display: block;
    margin-left: auto;
  }
}
.portrait .redes-container .redes-list ul {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.portrait .redes-container .redes-list ul li {
  width: 18px;
}
.portrait .redes-container .redes-list ul li .red-link {
  opacity: 0.5;
  transition: opacity 400ms var(--bezier-1);
}
.portrait .redes-container .redes-list ul li .red-link svg {
  color: var(--text-white);
  width: 80%;
}
.portrait .redes-container .redes-list ul li .red-link.hidden {
  opacity: 0 !important;
  transform: translate(0%, -20%) !important;
  pointer-events: none;
}
html[data-device=desktop] .portrait .redes-container .redes-list ul li .red-link:hover {
  opacity: 1 !important;
}

.portrait-footer-container {
  position: fixed;
  top: 70vh;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .portrait-footer-container {
    top: calc(100vh - 110px);
  }
  html[data-browser=Safari] .portrait-footer-container {
    top: 80vh;
  }
}
.portrait-footer-container .portrait-footer {
  display: flex;
  justify-content: center;
  padding: 52px 0 0 0;
}
@media (min-width: 992px) {
  .portrait-footer-container .portrait-footer {
    justify-content: flex-end;
  }
}
.portrait-footer-container .portrait-footer .discover-hint {
  display: block;
}
@media (min-width: 992px) {
  .portrait-footer-container .portrait-footer .discover-hint {
    display: none;
  }
}
.portrait-footer-container .portrait-footer .discover-hint span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 15px;
}
.portrait-footer-container .portrait-footer .discover-hint .arrow-down {
  display: grid;
  place-items: center;
  overflow: hidden;
}
@-webkit-keyframes fromTopToBottom {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes fromTopToBottom {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
.portrait-footer-container .portrait-footer .discover-hint .arrow-down svg {
  -webkit-animation: fromTopToBottom 1900ms var(--bezier-1) infinite;
          animation: fromTopToBottom 1900ms var(--bezier-1) infinite;
}
.portrait-footer-container .portrait-footer .discover-hint .arrow-down svg path {
  color: var(--text-white);
}
.portrait-footer-container .portrait-footer .redes-list {
  display: none;
  pointer-events: all;
}
@media (min-width: 992px) {
  .portrait-footer-container .portrait-footer .redes-list {
    display: block;
    margin-right: auto;
  }
}
.portrait-footer-container .portrait-footer .redes-list ul {
  display: flex;
  align-items: flex-end;
}
.portrait-footer-container .portrait-footer .redes-list ul li {
  width: 18px;
  margin-right: 16px;
}
.portrait-footer-container .portrait-footer .redes-list ul li:last-child {
  margin-right: 0;
}
.portrait-footer-container .portrait-footer .redes-list ul li .red-link {
  opacity: 0.5;
  transition: opacity 400ms ease, transform 400ms var(--bezier-1);
}
.portrait-footer-container .portrait-footer .redes-list ul li .red-link.hidden {
  opacity: 0 !important;
  transform: translate(0%, -20%) !important;
  pointer-events: none;
}
.portrait-footer-container .portrait-footer .redes-list ul li .red-link.spotify {
  color: var(--text-white);
}
.portrait-footer-container .portrait-footer .redes-list ul li .red-link svg {
  width: 100%;
  color: var(--text-white);
}
html[data-device=desktop] .portrait-footer-container .portrait-footer .redes-list ul li .red-link:hover {
  opacity: 1;
}

.home-introduction {
  display: none;
  background-color: var(--text-white);
  position: relative;
  height: 100vh;
}
@media (min-width: 1200px) {
  .home-introduction {
    height: 120vh;
    display: none;
  }
}
.home-introduction .top-right-m, .home-introduction .top-left-m,
.home-introduction .bottom-right-m, .home-introduction .bottom-left-m {
  position: relative;
  display: grid;
  place-items: center;
}
@media (min-width: 992px) {
  .home-introduction .top-right-m, .home-introduction .top-left-m,
.home-introduction .bottom-right-m, .home-introduction .bottom-left-m {
    display: none;
  }
}
.home-introduction .top-right-d, .home-introduction .top-left-d,
.home-introduction .bottom-right-d, .home-introduction .bottom-left-d {
  display: none;
}
@media (min-width: 992px) {
  .home-introduction .top-right-d, .home-introduction .top-left-d,
.home-introduction .bottom-right-d, .home-introduction .bottom-left-d {
    position: relative;
    display: grid;
    place-items: center;
  }
}
.home-introduction .top-left-m {
  width: 108px;
  height: 97px;
}
.home-introduction .top-right-m {
  width: 190px;
  height: 183px;
  bottom: 100px;
}
.home-introduction .bottom-left-m {
  width: 167px;
  height: 163px;
}
.home-introduction .bottom-right-m {
  width: 102px;
  height: 104px;
}
.home-introduction .top-left-d {
  width: 14vw;
  height: 20vh;
}
.home-introduction .top-right-d {
  bottom: -50px;
  width: 13vw;
  height: 18vh;
}
.home-introduction .bottom-left-d {
  bottom: 50px;
  width: 14vw;
  height: 20vh;
}
.home-introduction .bottom-right-d {
  left: 60px;
  bottom: 50px;
  width: 16vw;
  height: 25vh;
}
@media (min-width: 768px) {
  .home-introduction .bottom-right-d {
    bottom: 0;
  }
}
@media (min-width: 1200px) {
  .home-introduction .bottom-right-d {
    left: unset;
  }
}
.home-introduction .intro-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-introduction .box-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
.home-introduction .box-title .tagname {
  text-align: center;
  color: var(--gray-888);
  pointer-events: none;
  font-size: 8px;
}
@media (min-width: 375px) {
  .home-introduction .box-title .tagname {
    font-size: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .home-introduction .box-title .tagname {
    font-size: calc( 8px + (16 - 8) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.home-introduction .box-title h1 {
  min-width: 375px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  font-size: 28px;
  color: var(--text-black);
  font-weight: 900;
}
@media (min-width: 320px) {
  .home-introduction .box-title h1 {
    font-size: 80px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .home-introduction .box-title h1 {
    font-size: calc( 28px + (80 - 28) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .home-introduction .box-title h1 {
    font-weight: 800;
  }
}
.home-introduction .box-title h1 .line {
  overflow: hidden;
}
.home-introduction .arrow-down {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 25%;
  transform: translateX(-50%);
}
.home-introduction .arrow-down .arrow {
  width: 10px;
  height: 30px;
}
.home-introduction .arrow-down .arrow svg {
  width: 100%;
  height: 100%;
}
.home-introduction .arrow-down .arrow svg path {
  color: var(--text-black);
}

.special-portrait {
  position: relative;
  height: 110vh;
  min-height: 1000px;
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .special-portrait {
    height: 120vh;
  }
}
@media (min-width: 1200px) {
  .special-portrait {
    display: block;
  }
}
.special-portrait .special-portrait-wrapper {
  width: 85vw;
}
@media screen and (min-width: 550px) {
  .special-portrait .special-portrait-wrapper {
    width: unset;
  }
}
.special-portrait .special-collage {
  display: none;
}
@media (min-width: 1200px) {
  .special-portrait .special-collage {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 25vw 1fr 25vw;
    align-items: center;
  }
}
.special-portrait .special-collage .c-image {
  position: relative;
  z-index: 3;
}
.special-portrait .special-collage .c-image .c-src {
  position: relative;
  width: 100%;
  height: 100%;
}
.special-portrait .special-collage .c-image .c-src .intro-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.special-portrait .special-collage .intro-img {
  display: block;
  opacity: 0;
  transition: opacity 400ms ease;
}
.special-portrait .special-collage .intro-img.visible {
  opacity: 1;
}
.special-portrait .special-collage .right-panel,
.special-portrait .special-collage .left-panel {
  display: none;
}
@media (min-width: 1200px) {
  .special-portrait .special-collage .right-panel,
.special-portrait .special-collage .left-panel {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 25vh);
    justify-items: center;
  }
}
.special-portrait .special-collage .right-panel {
  grid-column-start: 3;
}
.special-portrait .special-collage .left-panel {
  grid-row-start: 1;
  grid-column-start: 1;
}
.special-portrait .right-panel {
  justify-content: flex-end;
}
.special-portrait .left-panel {
  justify-content: flex-start;
}
.special-portrait .right-panel.mobile {
  align-items: flex-end;
}
.special-portrait .right-panel.mobile .c-image:nth-child(2) {
  position: relative;
  bottom: 0;
}
.special-portrait .left-panel.mobile .c-image:nth-child(2) {
  position: relative;
  top: 0;
}
.special-portrait .right-panel.mobile,
.special-portrait .left-panel.mobile {
  position: relative;
  display: flex;
  height: 35vh;
}
@media (min-width: 1200px) {
  .special-portrait .right-panel.mobile,
.special-portrait .left-panel.mobile {
    display: none;
  }
}
.special-portrait .right-panel.mobile .c-image:not(:nth-child(2)),
.special-portrait .left-panel.mobile .c-image:not(:nth-child(2)) {
  position: absolute;
}
.special-portrait .right-panel .top-left-container,
.special-portrait .left-panel .top-left-container {
  width: 100px;
  aspect-ratio: 1;
  bottom: 0;
  left: 32%;
  z-index: 2;
}
@media screen and (min-width: 550px) {
  .special-portrait .right-panel .top-left-container,
.special-portrait .left-panel .top-left-container {
    width: 120px;
    left: 41%;
  }
}
@media (min-width: 768px) {
  .special-portrait .right-panel .top-left-container,
.special-portrait .left-panel .top-left-container {
    left: 35%;
  }
}
@media (min-width: 1200px) {
  .special-portrait .right-panel .top-left-container,
.special-portrait .left-panel .top-left-container {
    width: clamp(200px, 16.5vw, 317px);
    aspect-ratio: 4/5;
    left: 26%;
    bottom: 42%;
  }
  html[data-browser=Safari] .special-portrait .right-panel .top-left-container,
html[data-browser=Safari] .special-portrait .left-panel .top-left-container {
    display: block;
  }
}
.special-portrait .right-panel .middle-left-container,
.special-portrait .left-panel .middle-left-container {
  width: 175px;
  aspect-ratio: 1;
}
@media screen and (min-width: 550px) {
  .special-portrait .right-panel .middle-left-container,
.special-portrait .left-panel .middle-left-container {
    width: 206px;
  }
}
@media (min-width: 1200px) {
  .special-portrait .right-panel .middle-left-container,
.special-portrait .left-panel .middle-left-container {
    width: clamp(150px, 12vw, 220px);
    aspect-ratio: 4/5;
    bottom: 23%;
    left: -6%;
  }
}
.special-portrait .right-panel .bottom-left-container,
.special-portrait .left-panel .bottom-left-container {
  width: 120px;
  aspect-ratio: 1;
  right: 0;
  bottom: 49%;
}
@media screen and (min-width: 550px) {
  .special-portrait .right-panel .bottom-left-container,
.special-portrait .left-panel .bottom-left-container {
    right: unset;
    left: -9%;
    bottom: 15%;
  }
}
@media (min-width: 768px) {
  .special-portrait .right-panel .bottom-left-container,
.special-portrait .left-panel .bottom-left-container {
    bottom: 10%;
    width: 135px;
  }
}
@media (min-width: 1200px) {
  .special-portrait .right-panel .bottom-left-container,
.special-portrait .left-panel .bottom-left-container {
    width: clamp(100px, 10vw, 189px);
    aspect-ratio: 4/5;
    z-index: 1;
    bottom: 30%;
    left: 20%;
  }
}
.special-portrait .right-panel .top-right-container,
.special-portrait .left-panel .top-right-container {
  width: 100px;
  aspect-ratio: 1;
  top: 0;
  right: 30%;
  z-index: 2;
}
@media screen and (min-width: 550px) {
  .special-portrait .right-panel .top-right-container,
.special-portrait .left-panel .top-right-container {
    width: 120px;
    right: -8%;
    top: 25%;
  }
}
@media (min-width: 768px) {
  .special-portrait .right-panel .top-right-container,
.special-portrait .left-panel .top-right-container {
    right: -14%;
  }
}
@media (min-width: 1200px) {
  .special-portrait .right-panel .top-right-container,
.special-portrait .left-panel .top-right-container {
    width: clamp(100px, 10vw, 189px);
    aspect-ratio: 4/5;
    bottom: 35%;
    top: unset;
    right: 53%;
  }
}
.special-portrait .right-panel .middle-right-container,
.special-portrait .left-panel .middle-right-container {
  width: 175px;
  aspect-ratio: 1;
}
@media screen and (min-width: 550px) {
  .special-portrait .right-panel .middle-right-container,
.special-portrait .left-panel .middle-right-container {
    width: 206px;
  }
}
@media (min-width: 1200px) {
  .special-portrait .right-panel .middle-right-container,
.special-portrait .left-panel .middle-right-container {
    width: clamp(200px, 16.5vw, 317px);
    aspect-ratio: 4/5;
    bottom: 56%;
    right: 11%;
  }
}
.special-portrait .right-panel .bottom-right-container,
.special-portrait .left-panel .bottom-right-container {
  width: 120px;
  aspect-ratio: 1;
  left: 0;
  top: 28%;
}
@media screen and (min-width: 550px) {
  .special-portrait .right-panel .bottom-right-container,
.special-portrait .left-panel .bottom-right-container {
    top: 15%;
    left: unset;
    right: 46%;
  }
}
@media (min-width: 768px) {
  .special-portrait .right-panel .bottom-right-container,
.special-portrait .left-panel .bottom-right-container {
    width: 135px;
  }
}
@media (min-width: 1200px) {
  .special-portrait .right-panel .bottom-right-container,
.special-portrait .left-panel .bottom-right-container {
    width: clamp(150px, 12vw, 220px);
    aspect-ratio: 4/5;
    right: 44%;
    bottom: 25%;
    top: unset;
  }
}
.special-portrait .box-title {
  pointer-events: none;
  margin: max(6vh, 60px) 0;
}
@media (min-width: 1200px) {
  .special-portrait .box-title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}
.special-portrait .box-title .title {
  text-align: center;
  font-size: 35px;
}
@media (min-width: 375px) {
  .special-portrait .box-title .title {
    font-size: 85px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .special-portrait .box-title .title {
    font-size: calc( 35px + (85 - 35) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
@media (min-width: 1200px) {
  .special-portrait .box-title .title {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    color: var(--text-black);
    text-align: center;
    letter-spacing: 2px;
  }
  .special-portrait .box-title .title .line {
    line-height: 1;
  }
}
html[lang=es] .special-portrait .box-title .title {
  font-size: 28px;
}
@media (min-width: 375px) {
  html[lang=es] .special-portrait .box-title .title {
    font-size: 85px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  html[lang=es] .special-portrait .box-title .title {
    font-size: calc( 28px + (85 - 28) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.special-portrait .box-title .tagname {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4vh auto;
  color: #888888;
}

.c-collage {
  height: 60vh;
}
html[data-device=mobile] .c-collage, html[data-device=tablet] .c-collage {
  height: 60vh;
}
html[data-device=desktop] .c-collage {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-image.img-one-container {
  position: absolute;
  top: 9%;
  right: 6%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  z-index: 1;
}
@media (min-width: 1200px) {
  .c-image.img-one-container {
    top: 17%;
    right: 16%;
  }
}

.img-one {
  width: 100%;
  height: auto;
}

.c-image.img-two-container {
  position: absolute;
  top: 17%;
  left: 3%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  z-index: 1;
}
@media (min-width: 1200px) {
  .c-image.img-two-container {
    top: 23%;
    left: 4%;
  }
}

.img-two {
  width: 100%;
  height: auto;
}

.c-image.img-three-container {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  z-index: 0;
}
@media (min-width: 768px) {
  .c-image.img-three-container {
    bottom: 35%;
    right: 12%;
  }
}

.img-three {
  width: 100%;
  height: auto;
}

.c-image.img-four-container {
  position: absolute;
  bottom: 0;
  left: 2%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  z-index: 0;
  opacity: 1;
}
@media (min-width: 768px) {
  .c-image.img-four-container {
    bottom: 24%;
    left: 6%;
  }
}

.img-four {
  width: 100%;
  height: auto;
}

.selected-projects {
  background-color: #272727;
}
.selected-projects .top-bar {
  margin: 0 0 30px 0;
}
@media (min-width: 992px) {
  .selected-projects .top-bar {
    margin: 0 0 60px 0;
  }
}
.selected-projects .top-bar .tagname {
  text-align: center;
  opacity: 0.7;
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide {
  position: relative;
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide:not(:first-child) {
  position: absolute;
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  z-index: 1;
  cursor: pointer;
}
@media (min-width: 992px) {
  .selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box {
    display: static;
  }
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .container-wrapper {
  position: relative;
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .card-title {
  font-size: 38px;
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: var(--red-1);
  text-align: center;
  *margin: 30px 0 0 0;
  *padding-top: 30px;
  pointer-events: none;
  overflow: hidden;
  margin: 20px 0 0 0;
  padding-top: 10px;
}
@media (min-width: 400px) {
  .selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .card-title {
    font-size: 220px;
  }
}
@media (min-width: 400px) and (max-width: 1920px) {
  .selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .card-title {
    font-size: calc( 38px + (220 - 38) * (( 100vw - 400px ) / (1920 - 400)) );
  }
}
@media (min-width: 992px) {
  .selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 5;
    margin: 30px 0 0 0;
    padding-top: 30px;
  }
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .img-container.white-bg {
  background-color: var(--text-white);
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .img-container.red-bg {
  background-color: var(--red-1);
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .img-container.main {
  position: relative;
  width: 224px;
  width: clamp(230px, 30vw, 624px);
  margin: 0 auto;
  z-index: 4;
  overflow: hidden;
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .img-container.left {
  z-index: 3;
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .img-container.right {
  z-index: 3;
}
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .img-container.left,
.selected-projects .selected-projects-slider .swiper-wrapper .swiper-slide .cards-box .img-container.right {
  position: absolute;
  top: 50%;
  width: 124px;
  width: clamp(124px, 20vw, 412px);
}
.selected-projects .bottom-bar {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin: 20px 0 0 0;
}
@media (min-width: 992px) {
  .selected-projects .bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    margin: 75px 0 0 0;
  }
}
.selected-projects .bottom-bar .see-projects {
  margin: 40px 0 0 0;
}
@media (min-width: 992px) {
  .selected-projects .bottom-bar .see-projects {
    margin: 0;
  }
}
.selected-projects .bottom-bar .see-projects .primary-button-box {
  justify-content: center;
}
.selected-projects .bottom-bar .see-projects .primary-button-box a {
  color: var(--text-white);
}
.selected-projects .bottom-bar .buttons-container {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .selected-projects .bottom-bar .buttons-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}
.selected-projects .bottom-bar .buttons-container button {
  width: 50px;
  height: 50px;
  color: var(--gray-888);
  transition: color 300ms var(--bezier-1);
}
.selected-projects .bottom-bar .buttons-container button:first-child {
  margin-right: 20px;
}
@media (min-width: 992px) {
  .selected-projects .bottom-bar .buttons-container button {
    width: 55px;
    height: 55px;
  }
}
html[data-device=desktop] .selected-projects .bottom-bar .buttons-container button:hover:not(.swiper-button-disabled) {
  color: var(--text-white);
}
.selected-projects .bottom-bar .buttons-container button.clicked {
  color: var(--red-1);
}
.selected-projects .bottom-bar .buttons-container button.swiper-button-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}
.selected-projects .bottom-bar .buttons-container button svg {
  width: 100%;
  height: 100%;
}
.selected-projects .bottom-bar .buttons-container .next-slide {
  transform: rotate(180deg);
}
.selected-projects .bottom-bar .progress {
  display: none;
}
@media (min-width: 992px) {
  .selected-projects .bottom-bar .progress {
    display: flex;
    align-items: center;
    overflow: hidden;
  }
}
.selected-projects .bottom-bar .progress .active-slide,
.selected-projects .bottom-bar .progress .total-slides {
  font-size: 12px;
  color: #777777;
  font-weight: 500;
}
@media (min-width: 992px) {
  .selected-projects .bottom-bar .progress .active-slide,
.selected-projects .bottom-bar .progress .total-slides {
    font-size: 18px;
  }
}
.selected-projects .bottom-bar .progress .active-slide {
  color: var(--text-white);
  display: flex;
  gap: 1px;
}
.selected-projects .bottom-bar .progress .active-slide .active-number {
  width: 10px;
  display: flex;
  justify-content: flex-start;
}
.selected-projects .bottom-bar .progress .horizontal-bar {
  position: relative;
  width: 55px;
  height: 2px;
  background-color: #777777;
  margin: 0 10px;
  z-index: 1;
  overflow: hidden;
}
.selected-projects .bottom-bar .progress .horizontal-bar .bar-full {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--red-1);
}

.design-philosophy {
  background-color: var(--text-white);
}
.design-philosophy .box-title .tagname {
  display: block;
  margin: 0 0 20px 0;
}
@media (min-width: 992px) {
  .design-philosophy .box-title .tagname {
    margin: 0 0 30px 0;
  }
}
.design-philosophy .box-title h2 {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .design-philosophy .box-title h2 {
    margin: 0 0 80px 0;
  }
}
html[lang=es] .design-philosophy .box-title h2 {
  font-size: 33px;
}
@media (min-width: 320px) {
  html[lang=es] .design-philosophy .box-title h2 {
    font-size: 100px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  html[lang=es] .design-philosophy .box-title h2 {
    font-size: calc( 33px + (100 - 33) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.design-philosophy .box-image {
  position: relative;
  margin-bottom: 65px;
}
@media (min-width: 992px) {
  .design-philosophy .box-image {
    margin-bottom: 300px;
  }
}
.design-philosophy .box-image.mb-0 {
  margin-bottom: 0;
}
.design-philosophy .box-image .main-img {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .design-philosophy .box-image .main-img {
    margin-right: 200px;
  }
}
.design-philosophy .box-image .main-img .text {
  display: flex;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gray-888);
  width: 30px;
}
@media (min-width: 320px) {
  .design-philosophy .box-image .main-img .text {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .design-philosophy .box-image .main-img .text {
    font-size: calc( 10px + (16 - 10) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.design-philosophy .box-image .main-img .text span {
  display: block;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  transform: rotate(0.5turn);
}
.design-philosophy .box-image .main-img .img-container {
  width: clamp(285px, 42vw, 880px);
  height: auto;
}
.design-philosophy .box-image .main-img .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.design-philosophy .box-image .special-img {
  display: none;
}
@media (min-width: 992px) {
  .design-philosophy .box-image .special-img {
    display: block;
    position: absolute;
    right: 0;
    bottom: -20vh;
  }
  .design-philosophy .box-image .special-img .img-container {
    width: clamp(320px, 30vw, 470px);
    height: auto;
    margin: 0 0 0 auto;
  }
  .design-philosophy .box-image .special-img .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.design-philosophy .article {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 0 90px 0;
}
@media (min-width: 992px) {
  .design-philosophy .article {
    margin: 0 0 170px 0;
    flex-direction: row;
    justify-content: space-between;
  }
}
.design-philosophy .article .box-text {
  margin-bottom: 75px;
}
@media (min-width: 992px) {
  .design-philosophy .article .box-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    margin: 0;
  }
}
.design-philosophy .article .box-text p {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .design-philosophy .article .box-text p {
    margin: 0 0 80px 0;
  }
}
@media (min-width: 992px) {
  .design-philosophy .article .box-image {
    width: 50%;
    margin: 0 50px 0 0;
  }
}
.design-philosophy .article .box-image .img-container {
  min-width: 258px;
  width: 65%;
  max-width: 590px;
}
@media (min-width: 992px) {
  .design-philosophy .article .box-image .img-container {
    width: 100%;
  }
}
.design-philosophy .article .box-image .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.design-philosophy .our-services {
  margin: auto;
  max-width: 1122px;
}
.design-philosophy .our-services .box-title {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .design-philosophy .our-services .box-title {
    margin: 0 0 100px 0;
  }
}
.design-philosophy .our-services .accordion {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .design-philosophy .our-services .accordion {
    margin: 0 0 75px 0;
  }
}
.design-philosophy .our-services .accordion .accordion-container {
  padding: 20px 0;
  border-top: 1px solid var(--gray-ccc);
}
.design-philosophy .our-services .accordion .accordion-container:last-child {
  border-bottom: 1px solid var(--gray-ccc);
}
@media (min-width: 992px) {
  .design-philosophy .our-services .accordion .accordion-container {
    padding: 40px 0;
  }
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle.open h5 {
  color: var(--red-1);
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle span {
  color: var(--red-1);
  font-size: 15px;
  width: 30px;
}
@media (min-width: 320px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-toggle span {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-toggle span {
    font-size: calc( 15px + (28 - 15) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-toggle span {
    width: 60px;
  }
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle h5 {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: "Vanitas", Arial, sans-serif;
  font-weight: 400;
  color: #505050;
  font-size: 17px;
  transition: color 400ms var(--bezier-1);
}
@media (min-width: 320px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-toggle h5 {
    font-size: 28px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-toggle h5 {
    font-size: calc( 17px + (28 - 17) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle .circle {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-left: auto;
  transition: rotate 300ms var(--bezier-1);
}
@media (min-width: 992px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-toggle .circle {
    width: 50px;
    height: 50px;
  }
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle .circle svg {
  width: 100%;
  height: 100%;
  color: var(--gray-888);
  transition: color 300ms var(--bezier-1);
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle.open .circle {
  rotate: 180deg;
}
.design-philosophy .our-services .accordion .accordion-container .accordion-toggle.open .circle svg {
  color: var(--red-1);
}
html[data-device=desktop] .design-philosophy .our-services .accordion .accordion-container .accordion-toggle:hover h5 {
  color: var(--red-1);
}
.design-philosophy .our-services .accordion .accordion-container .accordion-content .box-text {
  padding: 20px 0 0 0;
}
@media (min-width: 992px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-content .box-text {
    padding: 20px 15% 20px 0;
  }
}
.design-philosophy .our-services .accordion .accordion-container .accordion-content .box-text p.service-intro {
  font-weight: 500;
  color: #666;
  margin: 5px 0 15px 0;
}
@media (min-width: 992px) {
  .design-philosophy .our-services .accordion .accordion-container .accordion-content .box-text p.service-intro {
    margin: 12px 0 20px 0;
  }
}

.news {
  background-color: var(--beige);
}
.news .box-title {
  margin-bottom: 35px;
}
.news .box-title .title {
  color: var(--text-black);
}
.news .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 992px) {
  .news .swiper-pagination-bullets {
    display: none;
  }
}
.news .swiper-pagination-bullets .bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--red-1);
  background-color: transparent;
  transition: background-color 300ms ease;
}
.news .swiper-pagination-bullets .bullet.bullet-active {
  background-color: var(--red-1);
}
.news .news-container .new {
  cursor: pointer;
  margin: 0 0 50px 0;
}
.news .news-container .new:last-child {
  margin: 0;
}
@media (min-width: 992px) {
  .news .news-container .new {
    margin: 0 128px 0 0;
  }
}
.news .news-container .new .news-img {
  width: 100%;
  overflow: hidden;
}
.news .news-container .new .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: scale 600ms ease;
}
.news .news-container .new .news-info,
.news .news-container .new .news-footer a,
.news .news-container .new .news-footer .wrapper {
  height: 45px;
}
.news .news-container .new .news-info,
.news .news-container .new .news-footer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news .news-container .new .news-info {
  margin: 1vh 0 5px 0;
}
.news .news-container .new .news-info .news-title {
  font-family: "Vanitas", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--text-black);
  font-weight: 400;
}
@media (min-width: 320px) {
  .news .news-container .new .news-info .news-title {
    font-size: 24px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .news .news-container .new .news-info .news-title {
    font-size: calc( 20px + (24 - 20) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .news .news-container .new .news-info .link-btn {
    display: none;
  }
}
.news .news-container .new .news-footer .wrapper {
  border-top: 1px solid #cccccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news .news-container .new .news-footer .wrapper .news-date {
  color: var(--gray-888);
  font-weight: 400;
}
.news .news-container .new .news-date,
.news .news-container .new .subtitle {
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gray-888);
  font-weight: 400;
}
@media (min-width: 320px) {
  .news .news-container .new .news-date,
.news .news-container .new .subtitle {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .news .news-container .new .news-date,
.news .news-container .new .subtitle {
    font-size: calc( 11px + (18 - 11) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.news .news-container .new:hover .news-img img {
  scale: 1.035;
}

.instagram {
  background-color: var(--text-white);
}
.instagram .box-title {
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .instagram .box-title {
    margin: 0 0 75px 0;
  }
}
.instagram .instagram-marquee-container {
  display: flex;
}
.instagram .instagram-marquee-container .instagram-marquee {
  display: flex;
  height: 304px;
  padding: 0 30px 0 0;
}
@media (min-width: 768px) {
  .instagram .instagram-marquee-container .instagram-marquee {
    height: 610px;
    padding: 0 50px 0 0;
  }
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image {
  display: flex;
  height: 100%;
  margin-right: 30px;
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image:last-child {
  margin-right: 0;
}
@media (min-width: 992px) {
  .instagram .instagram-marquee-container .instagram-marquee .instagram-image {
    margin-right: 50px;
  }
  .instagram .instagram-marquee-container .instagram-marquee .instagram-image:last-child {
    margin-right: 0;
  }
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image.top {
  align-items: flex-start;
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image.center {
  align-items: center;
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image.bottom {
  align-items: flex-end;
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image.small-box {
  width: 96px;
}
@media (min-width: 768px) {
  .instagram .instagram-marquee-container .instagram-marquee .instagram-image.small-box {
    width: 286px;
  }
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image.medium-box {
  width: 129px;
}
@media (min-width: 768px) {
  .instagram .instagram-marquee-container .instagram-marquee .instagram-image.medium-box {
    width: 335px;
  }
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image.large-box {
  width: 190px;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .instagram .instagram-marquee-container .instagram-marquee .instagram-image.large-box {
    width: 495px;
    padding-top: 50px;
  }
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image.verylarge-box {
  width: 220px;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .instagram .instagram-marquee-container .instagram-marquee .instagram-image.verylarge-box {
    width: 527px;
    padding-top: 50px;
  }
}
.instagram .instagram-marquee-container .instagram-marquee .instagram-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.instagram .spotify-marquee {
  margin: 60px 0 0 0;
}
@media (min-width: 768px) {
  .instagram .spotify-marquee {
    margin: 130px 0 0 0;
  }
}
.instagram .spotify-marquee .marquee-text {
  display: flex;
  align-items: center;
  width: 100vw;
}
.instagram .spotify-marquee .marquee-text span.marquee {
  display: flex;
  align-items: center;
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  color: #1D1D1D;
  font-size: 33px;
  font-weight: 900;
  white-space: nowrap;
  text-align: justify;
  text-transform: uppercase;
  line-height: 0;
}
@media (min-width: 320px) {
  .instagram .spotify-marquee .marquee-text span.marquee {
    font-size: 61px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .instagram .spotify-marquee .marquee-text span.marquee {
    font-size: calc( 33px + (61 - 33) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.instagram .spotify-marquee .marquee-text span.marquee .spotify-text {
  width: auto;
  height: clamp(23px, 5vw, 45px);
}
.instagram .spotify-marquee .marquee-text span.marquee .svg-box {
  width: clamp(23px, 5vw, 45px);
  height: clamp(23px, 5vw, 45px);
  color: #1D1D1D;
}
.instagram .spotify-marquee .marquee-text span.marquee .svg-box svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mind {
  padding-bottom: 0;
}
.mind .mind-header {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .mind .mind-header {
    flex-direction: row;
    margin: 10vh 0 50px 0;
  }
  .mind .mind-header .box-image,
.mind .mind-header .right-box {
    width: 50%;
  }
  .mind .mind-header .right-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 6vw;
  }
  .mind .mind-header .static-top {
    padding: 0 0 0 4vw;
  }
}
.mind .mind-header .static-top {
  margin: 0 auto 10vh 0;
}
.mind .mind-header .static-top .img-container {
  overflow: hidden;
}
.mind .mind-header .right-box .quote .title-quote {
  font-family: "Vanitas", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 auto 4vh auto;
  text-align: center;
}
@media (min-width: 375px) {
  .mind .mind-header .right-box .quote .title-quote {
    font-size: 28px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .mind .mind-header .right-box .quote .title-quote {
    font-size: calc( 20px + (28 - 20) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
@media (min-width: 992px) {
  .mind .mind-header .right-box .quote .title-quote {
    margin: 0 0 10vh 0;
    text-align: left;
  }
}
.mind .mind-header .right-box .quote .title-quote .gray {
  color: #666666;
}
.mind .mind-header .right-box .quote .lucia-firm {
  display: grid;
  justify-content: center;
}
.mind .mind-header .right-box .quote .lucia-firm .firm {
  width: 236px;
}
@media (min-width: 992px) {
  .mind .mind-header .right-box .quote .lucia-firm .firm {
    width: 286px;
  }
}
.mind .mind-header .right-box .quote .lucia-firm .firm svg {
  width: 100%;
}
.mind .mind-header .right-box .quote .lucia-firm .firm-footer {
  display: flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 0 5vh;
}
@media (min-width: 375px) {
  .mind .mind-header .right-box .quote .lucia-firm .firm-footer {
    font-size: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .mind .mind-header .right-box .quote .lucia-firm .firm-footer {
    font-size: calc( 14px + (16 - 14) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
@media screen and (max-width: 992px) {
  .mind .mind-header .right-box .quote .lucia-firm .firm-footer {
    transform: translate(-50%, 0%);
    position: absolute;
    bottom: -3%;
    left: 50%;
    padding: 0;
  }
}
.mind .mind-header .right-box .quote .lucia-firm .firm-footer hr {
  height: 18px;
  margin: 0 10px;
}
.mind .mind-header .right-box .quote .lucia-firm .firm-footer span {
  color: var(--gray-07);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.mind .mind-header .right-box .quote .lucia-firm .firm-footer span.strong {
  color: var(--text-black);
  font-weight: 500;
}
.mind .mind-header .img-floater {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(160px, 28vw, 567px);
  transform: translateY(-100%);
}
@media (min-width: 992px) {
  .mind .mind-header .img-floater {
    transform: translateY(-80%);
  }
}
.mind .mind-marquee {
  margin: 16vh 0;
}
.mind .mind-marquee .marquee-text {
  display: flex;
  align-items: center;
  width: 100vw;
}
.mind .mind-marquee .marquee-text span.marquee {
  display: flex;
  align-items: center;
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  color: var(--red-1);
  font-size: 90px;
  font-weight: 900;
  white-space: nowrap;
  text-align: justify;
  text-transform: uppercase;
  line-height: 0;
}
@media (min-width: 375px) {
  .mind .mind-marquee .marquee-text span.marquee {
    font-size: 175px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .mind .mind-marquee .marquee-text span.marquee {
    font-size: calc( 90px + (175 - 90) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.mind .mind-marquee .marquee-text .horizontal-bar {
  display: inline-block;
  background-color: var(--red-1);
  width: clamp(50px, 10vw, 120px);
  height: 3px;
}
@media (min-width: 768px) {
  .mind .mind-marquee .marquee-text .horizontal-bar {
    height: 6px;
  }
}
.mind .mind-lucia {
  margin: 0 0 10vh 0;
}
@media (min-width: 992px) {
  .mind .mind-lucia {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: clamp(50px, 5vw, 175px);
    margin: 0 0 250px 0;
  }
  .mind .mind-lucia .lucia-img,
.mind .mind-lucia .lucia-info {
    width: 50%;
  }
  .mind .mind-lucia .lucia-info {
    padding: 0 4vw 0 0;
  }
}
.mind .mind-lucia .lucia-img {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .mind .mind-lucia .lucia-img {
    margin: 0;
  }
}
.mind .mind-lucia .lucia-img .box-image .img-container {
  width: 100%;
}
@media (min-width: 992px) {
  .mind .mind-lucia .lucia-img .box-image .img-container picture {
    position: relative;
    top: 5vh;
  }
}
.mind .mind-lucia .lucia-img .box-image .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: -2vh;
}
.mind .mind-lucia .lucia-info .title {
  margin: 0 0 4vh 0;
}
.mind .experience-wrapper {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 0 65px 0;
}
@media (min-width: 992px) {
  .mind .experience-wrapper {
    flex-direction: row-reverse;
    margin: 0 0 250px 0;
  }
}
.mind .experience-wrapper .box-title {
  margin: 0 0 4vh 0;
}
@media (min-width: 992px) {
  .mind .experience-wrapper .box-title {
    width: 50%;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .mind .experience-wrapper .box-text {
    width: 50%;
    padding-left: clamp(50px, 5vw, 175px);
  }
}
@media (min-width: 992px) {
  .mind .stats {
    display: flex;
    align-items: center;
  }
  .mind .stats .box-image,
.mind .stats .stats-blocks {
    width: 50%;
  }
}
.mind .stats .box-image {
  margin: 0 0 65px 0;
}
@media (min-width: 992px) {
  .mind .stats .box-image {
    margin: 0;
    padding: 0 4vw 0 0;
  }
}
.mind .stats .box-image .img-container {
  overflow: hidden;
}
@media (min-width: 992px) {
  .mind .stats .stats-blocks {
    padding-left: clamp(50px, 5vw, 175px);
  }
}
.mind .stats .stats-blocks .stat-block:first-child {
  margin: 0 0 8vh 0;
}
.mind .stats .stats-blocks .stat-block .number-box {
  display: flex;
  align-items: flex-end;
  font-family: "Vanitas", Arial, sans-serif;
  font-size: 75px;
}
@media (min-width: 375px) {
  .mind .stats .stats-blocks .stat-block .number-box {
    font-size: 132px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .mind .stats .stats-blocks .stat-block .number-box {
    font-size: calc( 75px + (132 - 75) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.mind .stats .stats-blocks .stat-block .number-box .number-animation {
  line-height: 0.8;
}
.mind .stats .stats-blocks .stat-block .number-box .stat-title {
  position: relative;
  color: var(--red-1);
  font-size: 17px;
  text-transform: uppercase;
  padding: 0 0 1vh 1vh;
}
@media (min-width: 375px) {
  .mind .stats .stats-blocks .stat-block .number-box .stat-title {
    font-size: 23px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .mind .stats .stats-blocks .stat-block .number-box .stat-title {
    font-size: calc( 17px + (23 - 17) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.mind .stats .stats-blocks .stat-block .number-box .stat-title .m2 {
  text-transform: none;
  color: var(--text-black);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(1vh, -350%);
}
@media (min-width: 1600px) {
  .mind .stats .stats-blocks .stat-block .number-box .stat-title .m2 {
    transform: translate(1vh, -415%);
  }
}
.mind .stats .stats-blocks .stat-block .horizontal-bar {
  background-color: #ccc;
  height: 1px;
  width: 100%;
  margin: 2vh 0;
}
.mind .stats .stats-blocks .stat-block .box-text {
  font-size: 16px;
}
@media (min-width: 375px) {
  .mind .stats .stats-blocks .stat-block .box-text {
    font-size: 23px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .mind .stats .stats-blocks .stat-block .box-text {
    font-size: calc( 16px + (23 - 16) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}

.work-together .box-title {
  margin: 0 0 35px 0;
}
.work-together .box-title .tagname,
.work-together .box-title .title {
  text-align: center;
}
.work-together .box-title .title > * {
  line-height: 1;
}
@media (min-width: 992px) {
  .work-together .box-title {
    margin: 0 0 18vh 0;
  }
}
@media (min-width: 992px) {
  .work-together .work-box {
    margin-bottom: 200px;
  }
  .work-together .work-box:last-child {
    margin-bottom: 0;
  }
}
.work-together .work-box .box-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .work-together .work-box .box-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .work-together .work-box .box-container.inverse {
    flex-direction: row-reverse;
  }
}
.work-together .work-box .image-box {
  width: 100%;
}
@media (min-width: 992px) {
  .work-together .work-box .image-box {
    width: 45%;
    max-width: 580px;
  }
}
.work-together .work-box .image-box .img-container {
  width: 100%;
  max-height: clamp(244px, 50vh, 520px);
  overflow: hidden;
}
@media (min-width: 992px) {
  .work-together .work-box .image-box .img-container {
    max-height: unset;
  }
}
.work-together .work-box .image-box .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.work-together .work-box .work-text {
  margin: 60px 0 90px 0;
}
.work-together .work-box .work-text.last-in {
  margin: 60px 0 0 0;
}
@media (min-width: 992px) {
  .work-together .work-box .work-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    width: 45%;
    max-width: 640px;
  }
}
.work-together .work-box .work-text .title {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  font-size: 35px;
  text-transform: uppercase;
  margin: 0 0 35px 0;
}
@media (min-width: 320px) {
  .work-together .work-box .work-text .title {
    font-size: 49px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .work-together .work-box .work-text .title {
    font-size: calc( 35px + (49 - 35) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .work-together .work-box .work-text .title {
    margin: 0 0 40px 0;
  }
}
.work-together .work-box .work-text .title .hb {
  display: inline-block;
  margin: 0 10px;
  height: 2px;
  width: 35px;
  background-color: var(--text-black);
}
.work-together .work-box .work-text .title .red {
  color: var(--red-1);
}
.work-together .work-box .work-text p {
  font-size: 18px;
  color: var(--gray-888);
  line-height: 1.4;
  font-weight: 300;
}
@media (min-width: 320px) {
  .work-together .work-box .work-text p {
    font-size: 23px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .work-together .work-box .work-text p {
    font-size: calc( 18px + (23 - 18) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .work-together .work-box .work-text p {
    line-height: 1.8;
  }
}

.clients {
  position: relative;
  background-color: var(--text-white);
}
.clients .img-container {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.clients .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clients .box-title {
  position: relative;
  z-index: 5;
  margin: 0 0 30px 0;
}
@media (min-width: 992px) {
  .clients .box-title {
    margin: 0 0 40px 0;
  }
}
.clients .box-title .tagname {
  color: var(--text-white);
  display: block;
  text-align: center;
  opacity: 0.7;
}
.clients .box-title .title {
  color: var(--text-white);
  text-align: center;
}
.clients .happy-clients {
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.clients .happy-clients .swiper-wrapper {
  margin: 0 0 65px 0;
}
.clients .happy-clients .swiper-wrapper .swiper-slide .testimony-box {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .clients .happy-clients .swiper-wrapper .swiper-slide .testimony-box {
    margin: 0 0 85px 0;
  }
}
.clients .happy-clients .swiper-wrapper .swiper-slide .testimony-box .testimony {
  color: var(--text-white);
  text-align: center;
  max-width: 500px;
  margin: auto;
}
@media (min-width: 1200px) {
  .clients .happy-clients .swiper-wrapper .swiper-slide .testimony-box .testimony {
    max-width: 700px;
  }
}
.clients .happy-clients .swiper-wrapper .swiper-slide .client-box .client-name {
  text-align: center;
  font-size: 16px;
  color: var(--text-white);
  font-weight: 500;
}
@media (min-width: 320px) {
  .clients .happy-clients .swiper-wrapper .swiper-slide .client-box .client-name {
    font-size: 23px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .clients .happy-clients .swiper-wrapper .swiper-slide .client-box .client-name {
    font-size: calc( 16px + (23 - 16) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.clients .happy-clients .happy-clients-pagination {
  display: none;
}
@media (min-width: 992px) {
  .clients .happy-clients .happy-clients-pagination {
    position: relative;
    display: flex;
    justify-content: center;
  }
}
.clients .happy-clients .happy-clients-pagination .swiper-pagination-bullet {
  display: grid;
  place-items: center;
  background: none;
  width: 78px;
  height: 78px;
  color: var(--text-white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 34px;
  border: 1px solid var(--text-white);
  opacity: 0.6;
  transition: opacity 300ms ease;
  margin-right: 40px;
}
.clients .happy-clients .happy-clients-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.clients .happy-clients .happy-clients-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.clients .happy-clients .happy-clients-buttons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 65px 0 0 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .clients .happy-clients .happy-clients-buttons {
    display: none;
  }
}
.clients .happy-clients .happy-clients-buttons .client-btn {
  color: #c7c7c7;
  transition: color 400ms var(--bezier-1);
}
.clients .happy-clients .happy-clients-buttons .client-btn.happy-clients-button-prev {
  margin-right: 15px;
  transform: rotate(180deg);
}
html[data-device=desktop] .clients .happy-clients .happy-clients-buttons .client-btn:hover {
  color: var(--red-1);
}

.projects {
  padding: 10vh 0 clamp(14vh, 30vw, 24vh) 0;
  background-color: var(--bg-projects);
  transition: background-color 500ms var(--bezier-1);
}
@media (min-width: 992px) {
  .projects {
    padding: 2vh 0 clamp(14vh, 30vw, 24vh) 0;
  }
}
.projects .project-section {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 500px) {
  .projects .project-section {
    margin: 10vh 0;
  }
}
@media (min-width: 992px) {
  .projects .project-section {
    min-height: 100vh;
  }
}
.projects .project-section .project-link > * {
  pointer-events: none;
}
.projects .project-section .container-fluid {
  position: absolute;
  width: 100%;
  height: 100%;
}
.projects .project-section .container-fluid .project-marquee {
  position: absolute;
  bottom: 100%;
}
@media screen and (min-width: 450px) {
  .projects .project-section .container-fluid .project-marquee {
    bottom: 92%;
  }
}
@media (min-width: 992px) {
  .projects .project-section .container-fluid .project-marquee {
    bottom: 64%;
    transform: translate(0%, 50%);
  }
}
.projects .project-section .container-fluid .project-marquee .marquee-text {
  display: flex;
  overflow: hidden;
  width: 100vw;
}
.projects .project-section .container-fluid .project-marquee .marquee-text .marquee {
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  font-size: 90px;
  color: var(--text-white);
  opacity: 0.35;
  white-space: nowrap;
  text-align: justify;
  text-transform: uppercase;
}
@media (min-width: 320px) {
  .projects .project-section .container-fluid .project-marquee .marquee-text .marquee {
    font-size: 300px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .projects .project-section .container-fluid .project-marquee .marquee-text .marquee {
    font-size: calc( 90px + (300 - 90) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title .box-image {
    width: clamp(650px, 60vw, 1060px);
    height: clamp(400px, 64vh, 640px);
  }
}
.projects .project-section .image-and-title .box-image .img-container {
  width: 100%;
  max-width: 630px;
  aspect-ratio: 4/3;
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title .box-image .img-container {
    height: 100%;
    max-width: unset;
    aspect-ratio: unset;
  }
}
.projects .project-section .image-and-title .box-image .img-container img {
  position: relative;
  top: 145px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title .box-image .img-container img {
    top: 20vh;
  }
}
.projects .project-section .image-and-title .box-title {
  margin: 25px 0 0 0;
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title .box-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: clamp(650px, 60vw, 1060px);
    margin: 75px 0 0 0;
  }
}
.projects .project-section .image-and-title .box-title .title {
  color: var(--text-white);
  font-size: 35px;
  text-align: center;
}
@media (min-width: 320px) {
  .projects .project-section .image-and-title .box-title .title {
    font-size: 78px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .projects .project-section .image-and-title .box-title .title {
    font-size: calc( 35px + (78 - 35) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title .box-title .title {
    text-align: left;
  }
}
.projects .project-section .image-and-title .box-title .title.number {
  display: none;
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title .box-title .title.number {
    display: block;
  }
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title.right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .projects .project-section .image-and-title .call-to-action {
    display: none;
  }
}
.projects .project-section .image-and-title .call-to-action .primary-button-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0 auto;
}
.projects .project-section .image-and-title .call-to-action .primary-button-box .primary-button {
  color: var(--text-white);
}
.projects .project-section .image-and-title .call-to-action .primary-button-box .primary-button::after, .projects .project-section .image-and-title .call-to-action .primary-button-box .primary-button::before {
  background-color: var(--text-white);
}

.contact {
  background-color: var(--text-black);
}
.contact .main-container {
  z-index: 1;
  width: 100%;
}
.contact .main-container .box-title {
  width: 100%;
  margin-bottom: 6vh;
}
.contact .main-container .box-title .top {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin-bottom: 4vh;
}
.contact .main-container .box-title .top .title {
  color: var(--text-white);
}
html[lang=es] .contact .main-container .box-title .top .title {
  font-size: 30px;
}
@media (min-width: 320px) {
  html[lang=es] .contact .main-container .box-title .top .title {
    font-size: 100px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  html[lang=es] .contact .main-container .box-title .top .title {
    font-size: calc( 30px + (100 - 30) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.contact .main-container .box-title .top .heading-02 {
  color: #e3d5c6;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 0.84;
}
.contact .main-container .box-title .top .heading-02 span {
  vertical-align: baseline;
  line-height: 0.84;
}
.contact .main-container .box-title .top .heading-02 .line {
  line-height: 0.84;
}
.contact .main-container .box-title .top .heading-02 .line .word {
  line-height: 0.84;
}
@media (min-width: 768px) {
  .contact .main-container .box-title .top .heading-02 {
    font-size: 100px;
  }
}
@media (min-width: 992px) {
  .contact .main-container .box-title .top .heading-02 {
    font-size: 150px;
  }
}
@media (min-width: 1600px) {
  .contact .main-container .box-title .top .heading-02 {
    font-size: 200px;
  }
}
.contact .main-container .box-title .top .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}
@media (min-width: 992px) {
  .contact .main-container .box-title .top .btn {
    display: block;
  }
}
.contact .main-container .box-title .bottom {
  display: flex;
  justify-content: space-between;
}
.contact .main-container .box-title .bottom .copy {
  color: var(--gray-888);
  line-height: 1.3;
  font-size: 18px;
}
@media (min-width: 768px) {
  .contact .main-container .box-title .bottom .copy {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .contact .main-container .box-title .bottom .copy {
    font-size: calc( 18px + (24 - 18) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.contact .main-container .box-title .bottom .copy strong {
  color: #e3d5c6;
}
.contact .main-container .cb-checkbox-group {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .contact .main-container .cb-checkbox-group {
    display: block;
  }
}
@media (min-width: 992px) {
  .contact .main-container .cb-checkbox-group {
    max-width: 45vw;
  }
}
.contact .main-container .cb-checkbox-group br {
  display: none;
}
@media (min-width: 768px) {
  .contact .main-container .cb-checkbox-group br {
    display: block;
  }
}
.contact .main-container .cb-checkbox-group .cb-checkbox {
  margin: 7px 6px 7px 0;
}
@media (min-width: 768px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox {
    margin: 12px 9px 12px 0;
  }
}
@media (min-width: 1600px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox {
    margin: 15px 10px 15px 0;
  }
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  contain: content;
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded:before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: -10px;
  right: -10px;
  bottom: -15px;
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 44px;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: -0.01em;
  background: var(--text-black);
  border-radius: 68px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: opacity 0.4s;
}
@media (min-width: 1200px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box {
    padding: 0 32px;
    height: 60px;
    border-radius: 90px;
  }
}
@media (min-width: 1600px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box {
    height: 60px;
    padding: 0 35px;
    font-size: 20px;
    border-radius: 100px;
  }
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px #999999 solid;
  border-radius: 68px;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box:before {
    border-radius: 90px;
  }
}
@media (min-width: 1600px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box:before {
    border-radius: 100px;
  }
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
  position: relative;
  top: 1px;
  display: block;
  overflow: hidden;
  height: 17px;
  color: var(--gray-888);
}
@media (min-width: 768px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
    height: 17px;
  }
}
@media (min-width: 1200px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
    height: 18px;
  }
}
@media (min-width: 1600px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
    height: 23px;
  }
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title span {
  display: block;
  position: relative;
  z-index: 2;
  transition: color 0.2s, transform 0.4s;
  transform-origin: left top;
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-title span:after {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 150%;
  left: 0;
  transform: skewY(5deg);
  transform-origin: left top;
  transition: transform 0.4s;
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: translateZ(1px);
  border-radius: 68px;
  outline: none;
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple:focus {
  outline-color: transparent;
  outline-style: none;
}
@media (min-width: 768px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple {
    border-radius: 90px;
  }
}
@media (min-width: 768px) {
  .contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple {
    border-radius: 100px;
  }
}
.contact .main-container .cb-checkbox-group .cb-checkbox_rounded .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple span {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(101%) translateZ(1px);
  background: var(--text-white);
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
}
.contact .main-container .cb-checkbox_rounded label > input:focus ~ .cb-checkbox_rounded-box:before,
.contact .main-container .cb-checkbox_rounded-box:focus:before {
  border-color: #999999;
}
.contact .main-container .cb-checkbox_rounded label > input:disabled ~ .cb-checkbox_rounded-box,
.contact .main-container .cb-checkbox_rounded-box.-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.contact .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span {
  transform: translateY(-150%) skewY(-5deg);
}
@media (pointer: coarse) {
  .contact .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span {
    transform: none;
  }
}
.contact .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span:after {
  transform: skewY(7deg);
}
@media (pointer: coarse) {
  .contact .main-container .cb-checkbox_rounded:hover .cb-checkbox_rounded-title span:after {
    transform: none;
  }
}
.contact .main-container .cb-checkbox_rounded label {
  cursor: pointer;
}
.contact .main-container .cb-checkbox_rounded label > input {
  position: absolute;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  opacity: 0;
}
.contact .main-container .cb-checkbox_rounded label > input:checked ~ .cb-checkbox_rounded-box .cb-checkbox_rounded-title {
  color: #000;
}
.contact .main-container .cb-checkbox_rounded label > input:checked ~ .cb-checkbox_rounded-box .cb-checkbox_rounded-ripple span {
  border-radius: 0;
  transform: translateY(0) translateZ(1px);
  transition-duration: 0s, 0s;
  -webkit-animation: cb-checkbox_rounded-ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
  animation: cb-checkbox_rounded-ripple-in 0.5s cubic-bezier(0.4, 0, 0, 1);
}
@-webkit-keyframes cb-checkbox_rounded-ripple-in {
  0% {
    border-radius: 100%;
    transform: translateY(-101%) translateZ(1px);
  }
  100% {
    border-radius: 0;
    transform: translateY(0) translateZ(1px);
  }
}
@keyframes cb-checkbox_rounded-ripple-in {
  0% {
    border-radius: 100%;
    transform: translateY(-101%) translateZ(1px);
  }
  100% {
    border-radius: 0;
    transform: translateY(0) translateZ(1px);
  }
}
.contact .main-container .contact-box {
  position: absolute;
  top: 16vh;
  right: 0;
  margin: 0 auto;
  height: 150vh;
  display: none;
  padding-right: 30px;
  z-index: 0;
  pointer-events: all;
}
@media (min-width: 1200px) {
  .contact .main-container .contact-box {
    display: flex;
    justify-content: flex-end;
  }
}
.contact .main-container .contact-box .content {
  margin-left: auto;
}
.contact .main-container .contact-box .content .box {
  margin-bottom: 3vh;
}
.contact .main-container .contact-box .content .box .title {
  font-size: 18px;
  margin-bottom: 2vh;
  font-weight: 400;
}
@media (min-width: 768px) {
  .contact .main-container .contact-box .content .box .title {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .contact .main-container .contact-box .content .box .title {
    font-size: calc( 18px + (24 - 18) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.contact .main-container .contact-box .content .box li {
  font-size: 16px;
  color: #929292;
  margin-bottom: 1vh;
  font-weight: 400;
}
@media (min-width: 768px) {
  .contact .main-container .contact-box .content .box li {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .contact .main-container .contact-box .content .box li {
    font-size: calc( 16px + (20 - 16) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.contact .main-container .contact-box .content .box li:hover a:after {
  opacity: 0.5;
  width: 100%;
}
.contact .main-container .contact-box .content .box li a {
  display: inline-block;
  color: #929292;
  font-weight: 400;
  padding-bottom: 4px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  text-transform: none;
  letter-spacing: 0px;
  text-align: left;
}
.contact .main-container .contact-box .content .box li a:hover {
  color: #000;
}
.contact .main-container .contact-box .content .box li a:after {
  content: "";
  display: block;
  width: 0px;
  height: 2px;
  border-radius: 6px;
  background-color: #000;
  position: absolute;
  left: -1px;
  bottom: 0px;
  opacity: 0.5;
  transition: all 0.4s ease 0s;
}

.form {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
.form .form-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-888);
  margin: 3vh 0 35px 0;
}
@media (min-width: 320px) {
  .form .form-title {
    font-size: 22px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .form .form-title {
    font-size: calc( 16px + (22 - 16) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.form .contact .main-container .cb-checkbox-group {
  width: 100%;
  max-width: unset;
}
.form .error {
  color: red;
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .form {
    width: 60%;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .form {
    padding: 0;
  }
}
.form .form-item {
  position: relative;
  overflow: hidden;
  padding: 7px 0;
}
.form .form-item input {
  font-size: 16px;
  color: var(--text-white);
  background-color: transparent;
  border: 0px solid #000;
  padding: 0;
  transition: all 0.2s ease-in;
  border-radius: 0;
  overflow: hidden;
  padding: 7px 0;
  padding-bottom: 15px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #999;
  width: 100%;
  margin-bottom: 3vh;
}
@media (min-width: 768px) {
  .form .form-item input {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .form .form-item input {
    font-size: calc( 16px + (20 - 16) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .form .form-item input {
    padding-bottom: 3vh;
    margin: 3vh 0;
  }
}
.form .form-item input::-moz-placeholder {
  color: var(--gray-888);
}
.form .form-item input:-ms-input-placeholder {
  color: var(--gray-888);
}
.form .form-item input::placeholder {
  color: var(--gray-888);
}
.form .form-item input:focus {
  border-bottom: 1px solid var(--text-white);
}
.form button {
  margin: 5vh 0;
  font-size: 14px;
  color: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  background-color: transparent;
}
@media (min-width: 768px) {
  .form button {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .form button {
    font-size: calc( 14px + (20 - 14) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
.form button.btn-send {
  border-radius: 70px;
  border: 2px solid #fff;
  overflow: hidden;
}
.form .cb-checkbox-group {
  display: flex !important;
  flex-wrap: wrap;
}
.form .cb-checkbox-group .cb-checkbox:first-child {
  margin-left: 0;
}
.form .cb-checkbox-group .text {
  width: 100%;
  font-size: 20px;
  color: var(--gray-888);
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .form .cb-checkbox-group .text {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .form .cb-checkbox-group .text {
    font-size: calc( 20px + (32 - 20) * (( 100vw - 768px ) / (1400 - 768)) );
  }
}
@media (min-width: 992px) {
  .form .cb-checkbox-group .text {
    margin: 6vh 0 45px 0;
  }
}

.footer {
  padding: 0 0 10vh 0;
  background-color: var(--text-black);
}
.footer .address {
  display: flex;
  justify-content: center;
  margin: 0 0 4vh 0;
  color: white;
  font-weight: 300;
  opacity: 0.4;
  letter-spacing: 1px;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.3;
  font-size: 12px;
}
@media (min-width: 375px) {
  .footer .address {
    font-size: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .footer .address {
    font-size: calc( 12px + (16 - 12) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.footer .phone {
  margin-top: 5vh;
  display: flex;
  justify-content: center;
}
.footer .phone span {
  color: var(--gray-888);
  padding: 0 15px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 320px) {
  .footer .phone span {
    font-size: 19px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .footer .phone span {
    font-size: calc( 13px + (19 - 13) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.footer .mailto {
  display: flex;
  justify-content: center;
}
.footer .mailto a {
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 4px 0 0 0;
}
.footer .mailto a .underbar {
  left: 0;
  right: unset;
  position: absolute;
  bottom: -10px;
  display: block;
  height: 1px;
  background-color: var(--gray-ccc);
  -webkit-animation: toLeft 600ms var(--bezier-1) forwards;
          animation: toLeft 600ms var(--bezier-1) forwards;
}
@-webkit-keyframes toLeft {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes toLeft {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.footer .mailto a:hover .underbar {
  left: unset;
  right: 0;
  -webkit-animation: toRight 600ms var(--bezier-1) forwards;
          animation: toRight 600ms var(--bezier-1) forwards;
}
@-webkit-keyframes toRight {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
@keyframes toRight {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.footer .mailto .mail {
  display: inline-block;
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .footer .mailto .mail {
    font-size: 100px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .footer .mailto .mail {
    font-size: calc( 30px + (100 - 30) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.footer .where-to {
  display: flex;
  flex-direction: column;
  margin: 5vh auto 2.5vh auto;
}
.footer .where-to .title {
  color: var(--text-white);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0 auto 30px auto;
  letter-spacing: 1px;
}
@media (min-width: 320px) {
  .footer .where-to .title {
    font-size: 20px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .footer .where-to .title {
    font-size: calc( 15px + (20 - 15) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.footer .where-to .footer-nav ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 14px;
  padding: 0 4vw;
}
.footer .where-to .footer-nav ul .footer-link .link {
  color: var(--gray-888);
  padding: 20px 15px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 400ms ease;
}
@media (min-width: 320px) {
  .footer .where-to .footer-nav ul .footer-link .link {
    font-size: 19px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .footer .where-to .footer-nav ul .footer-link .link {
    font-size: calc( 13px + (19 - 13) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
html[data-device=desktop] .footer .where-to .footer-nav ul .footer-link .link:hover {
  color: var(--text-white);
}
.footer .footer-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 50px 0 0 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
}
@media (min-width: 320px) {
  .footer .footer-footer {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .footer .footer-footer {
    font-size: calc( 12px + (14 - 12) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 768px) {
  .footer .footer-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 150px 0 0 0;
  }
}
.footer .footer-footer .back-to {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (min-width: 768px) {
  .footer .footer-footer .back-to {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
.footer .footer-footer .back-to .arrow svg,
.footer .footer-footer .back-to .hint {
  transition: color 400ms var(--bezier-1);
}
.footer .footer-footer .back-to .arrow {
  width: 75px;
  height: 75px;
  margin: auto;
}
.footer .footer-footer .back-to .arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--gray-888);
}
@media (min-width: 768px) {
  .footer .footer-footer .back-to .arrow {
    width: 115px;
  }
}
.footer .footer-footer .back-to .hint {
  display: none;
  color: var(--gray-ccc);
  text-transform: uppercase;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .footer .footer-footer .back-to .hint {
    display: flex;
    justify-content: center;
  }
}
html[data-device=desktop] .footer .footer-footer .back-to:hover {
  cursor: pointer;
}
html[data-device=desktop] .footer .footer-footer .back-to:hover .hint {
  color: var(--text-white);
}
html[data-device=desktop] .footer .footer-footer .back-to:hover .arrow svg {
  color: var(--text-white);
}
.footer .footer-footer .copyrights {
  display: none;
  text-transform: uppercase;
  color: var(--gray-ccc);
  margin: 30px 0 0 0;
}
@media (min-width: 768px) {
  .footer .footer-footer .copyrights {
    display: block;
    order: 1;
  }
}
.footer .footer-footer .copyrights span {
  display: block;
  text-align: center;
}
.footer .footer-footer .copyrights strong {
  vertical-align: baseline;
  color: var(--text-white);
}
.footer .footer-footer .kid-copyrights {
  margin: 35px 0 0 0;
  text-transform: uppercase;
  color: var(--gray-ccc);
}
@media (min-width: 768px) {
  .footer .footer-footer .kid-copyrights {
    order: 3;
  }
}
.footer .footer-footer .kid-copyrights span {
  display: block;
  text-align: center;
}
.footer .footer-footer .kid-copyrights span a {
  vertical-align: baseline;
}
.footer .footer-footer .kid-copyrights strong {
  vertical-align: baseline;
  color: var(--text-white);
}

.about-project {
  padding-bottom: calc(clamp(14vh, 30vw, 24vh) / 2);
  background-color: var(--text-white);
}
.about-project .presentation {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .about-project .presentation {
    margin: 0 0 160px;
  }
}
.about-project .presentation .presentation-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .about-project .presentation .presentation-wrapper {
    flex-direction: row;
  }
}
.about-project .presentation .box-title {
  margin: 0 0 35px 0;
}
@media (min-width: 992px) {
  .about-project .presentation .box-title {
    flex: 1 0 50%;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .about-project .presentation .box-text {
    flex: 1 0 40%;
    padding: 0 0 0 50px;
  }
}
@media (min-width: 992px) {
  .about-project .presentation-bottom {
    display: flex;
  }
}
.about-project .presentation-bottom .project-stats {
  display: grid;
  grid-template-columns: 3fr 4fr;
  grid-template-rows: auto;
  border: 1px solid var(--gray-ccc);
}
@media (min-width: 992px) {
  .about-project .presentation-bottom .project-stats {
    flex: 1 0 50%;
  }
}
@media (min-width: 992px) {
  .about-project .presentation-bottom .project-stats .stat-box.stage {
    grid-column-start: 1;
    grid-row-start: 2;
  }
}
@media (min-width: 992px) {
  .about-project .presentation-bottom .project-stats .stat-box.location {
    grid-column-start: 2;
    grid-row-start: 2;
  }
}
.about-project .presentation-bottom .project-stats .stat-box.external {
  grid-column-start: span 2;
}
@media (min-width: 992px) {
  .about-project .presentation-bottom .project-stats .stat-box.external {
    grid-row-start: span 2;
  }
}
.about-project .presentation-bottom .project-stats .stat-box {
  padding: 30px 20px;
}
@media (min-width: 992px) {
  .about-project .presentation-bottom .project-stats .stat-box {
    padding: 30px 50px;
  }
}
.about-project .presentation-bottom .project-stats .stat-box .tagname {
  color: var(--gray-888);
  margin: 0 0 15px 0;
  letter-spacing: 0px;
}
@media (min-width: 992px) {
  .about-project .presentation-bottom .project-stats .stat-box .tagname {
    margin: 0 0 30px 0;
  }
}
.about-project .presentation-bottom .project-stats .stat-box .stat-box-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .about-project .presentation-bottom .project-stats .stat-box .stat-box-text {
    font-size: 30px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .about-project .presentation-bottom .project-stats .stat-box .stat-box-text {
    font-size: calc( 18px + (30 - 18) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.about-project .presentation-bottom .project-stats .stat-box.date {
  border-right: 1px solid var(--gray-ccc);
  border-bottom: 1px solid var(--gray-ccc);
}
.about-project .presentation-bottom .project-stats .stat-box.size {
  border-bottom: 1px solid var(--gray-ccc);
}
.about-project .presentation-bottom .project-stats .stat-box.stage {
  border-right: 1px solid var(--gray-ccc);
}
.about-project .presentation-bottom .project-stats .stat-box.external {
  border-top: 1px solid var(--gray-ccc);
}
.about-project .presentation-bottom .img-container {
  overflow: hidden;
  width: clamp(256px, 66vw, 478px);
  margin: calc(clamp(14vh, 30vw, 24vh) / 2) 0 0 auto;
}
@media (min-width: 992px) {
  .about-project .presentation-bottom .img-container {
    margin: 0 0 0 50px;
    flex: 1 0 40%;
    max-width: 478px;
  }
}
.about-project .moodboard {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 500px) {
  .about-project .moodboard {
    flex-direction: row;
  }
}
.about-project .moodboard .box-image,
.about-project .moodboard .box-info {
  flex: 1 0 50%;
}
.about-project .moodboard .box-image {
  padding: 0 0 50px 0;
}
@media screen and (min-width: 500px) {
  .about-project .moodboard .box-image {
    padding: 0 15px 0 0;
  }
}
.about-project .moodboard .box-image .img-container {
  max-width: 520px;
}
.about-project .moodboard .box-image .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-project .moodboard .box-info {
  padding: 0 0 0 20px;
}
.about-project .moodboard .box-info .title {
  margin: 0 0 35px 0;
}

.project-showcase {
  background-color: var(--text-white);
}
.project-showcase .big-img {
  width: 100%;
  margin: 0 0 80px 0;
  overflow: hidden;
}
.project-showcase .big-img .big-container {
  overflow: hidden;
  max-height: clamp(450px, 80vw, 550px);
}
@media (min-width: 992px) {
  .project-showcase .big-img .big-container {
    max-height: 1075px;
  }
}
@media (min-width: 992px) {
  .project-showcase .big-img {
    margin: 0 0 160px 0;
  }
  .project-showcase .big-img.extra {
    position: relative;
    top: 12vh;
    max-height: 1263px;
  }
}
.project-showcase .big-img .tagname {
  display: none;
  color: var(--gray-888);
  text-align: right;
  margin: 30px 0 0 0;
  font-weight: 400;
}
@media (min-width: 992px) {
  .project-showcase .big-img .tagname {
    display: block;
  }
}
.project-showcase .big-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.project-showcase .middle-imgs {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 35px;
  margin: 0 0 80px 0;
}
.project-showcase .middle-imgs.alternative {
  grid-template-columns: 3fr 4fr;
}
@media (min-width: 992px) {
  .project-showcase .middle-imgs {
    margin: 0 0 160px 0;
  }
}
.project-showcase .middle-imgs.is-bottom {
  margin: 0;
}
@media screen and (max-width: 992px) {
  .project-showcase .middle-imgs.mobile-is-bottom {
    margin-bottom: 0;
  }
}
.project-showcase .middle-imgs .big-img,
.project-showcase .middle-imgs .small-img .img-container {
  overflow: hidden;
}
.project-showcase .middle-imgs .big-img {
  position: relative;
  bottom: 0;
  max-height: clamp(300px, 65vw, 380px);
}
@media (min-width: 768px) {
  .project-showcase .middle-imgs .big-img {
    max-width: 774px;
    max-height: 1160px;
  }
  .project-showcase .middle-imgs .big-img.extra {
    max-width: 843px;
  }
}
.project-showcase .middle-imgs .small-img {
  max-width: 430px;
  margin: 0 auto 0 0;
}
.project-showcase .middle-imgs .small-img .img-container {
  margin: 0 0 18px 0;
}
.project-showcase .middle-imgs .small-img .text .tagname {
  font-weight: 400;
  color: var(--gray-888);
}
.project-showcase .middle-imgs .img-with-side-text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.project-showcase .middle-imgs .img-with-side-text .big-img {
  position: static;
  margin: 0;
}
.project-showcase .middle-imgs .img-with-side-text .text .tagname {
  display: block;
  margin: 18px 0 0 0;
  color: var(--gray-888);
  font-weight: 400;
}
.project-showcase .showcase-presentation {
  margin: 0 0 120px 0;
}
@media (min-width: 992px) {
  .project-showcase .showcase-presentation {
    margin: 0 0 12vh 0;
  }
}
.project-showcase .showcase-presentation .showcase-text {
  margin: 0 0 35px 0;
}
.project-showcase .showcase-presentation .showcase-text .vicentelopez {
  font-size: 33px;
}
@media (min-width: 320px) {
  .project-showcase .showcase-presentation .showcase-text .vicentelopez {
    font-size: 100px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .project-showcase .showcase-presentation .showcase-text .vicentelopez {
    font-size: calc( 33px + (100 - 33) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
html[lang=es] .project-showcase .showcase-presentation .showcase-text .bonifacio {
  font-size: 33px;
}
@media (min-width: 320px) {
  html[lang=es] .project-showcase .showcase-presentation .showcase-text .bonifacio {
    font-size: 100px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  html[lang=es] .project-showcase .showcase-presentation .showcase-text .bonifacio {
    font-size: calc( 33px + (100 - 33) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .project-showcase .showcase-presentation .paragraphs {
    padding: 0 20vw 0 0;
  }
  .project-showcase .showcase-presentation .paragraphs.col-2 p {
    -moz-column-count: 2;
         column-count: 2;
  }
  .project-showcase .showcase-presentation .paragraphs.col-3 {
    padding: 0;
  }
  .project-showcase .showcase-presentation .paragraphs.col-3 p {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.project-showcase .showcase-presentation .paragraphs .box-text {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .project-showcase .showcase-presentation .paragraphs .box-text {
    flex: 1 0 40%;
    margin: 0;
  }
  .project-showcase .showcase-presentation .paragraphs .box-text:first-child {
    margin-right: 50px;
  }
}
.project-showcase .showcase-presentation .paragraphs .box-text p {
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.project-showcase .switch-block {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .project-showcase .switch-block {
    flex-direction: column;
  }
}
.project-showcase .desktop-showcase {
  display: none;
}
@media (min-width: 992px) {
  .project-showcase .desktop-showcase {
    display: block;
  }
}

.image-comparison {
  background-color: var(--text-white);
  padding-top: 0;
}
.image-comparison .box-title {
  margin: 0 0 50px 0;
}
@media (min-width: 992px) {
  .image-comparison .box-title {
    margin: 0 0 120px 0;
  }
}
.image-comparison .box-title .title {
  text-align: center;
  position: relative;
  z-index: 2;
}
.image-comparison .image-comparison-container,
.image-comparison .icv__img {
  aspect-ratio: 1;
}
@media (min-width: 992px) {
  .image-comparison .image-comparison-container,
.image-comparison .icv__img {
    aspect-ratio: unset;
  }
}

.next-project {
  position: relative;
  display: grid;
  place-items: center;
  height: 100vh;
  max-height: 100vh;
}
.next-project .next-project-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.next-project .next-project-bg .black-bg,
.next-project .next-project-bg .img-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.next-project .next-project-bg .black-bg {
  opacity: 0.53;
  z-index: 2;
  background-color: #000;
}
.next-project .next-project-bg .img-container {
  overflow: hidden;
  z-index: 1;
}
.next-project .next-project-bg .img-container picture {
  position: relative;
  top: -6%;
}
html[data-browser=Safari] .next-project .next-project-bg .img-container picture {
  top: -10%;
}
html[data-browser=Safari] .next-project .next-project-bg .img-container picture img {
  top: -6;
  transform: scale(1.2);
}
.next-project .box-title {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}
.next-project .box-title .tagname {
  width: 100%;
  text-align: center;
}
.next-project .box-title .title {
  font-size: 40px;
  color: var(--text-white);
  text-align: center;
  margin: 0 0 20px 0;
}
@media (min-width: 320px) {
  .next-project .box-title .title {
    font-size: 120px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .next-project .box-title .title {
    font-size: calc( 40px + (120 - 40) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
@media (min-width: 992px) {
  .next-project .box-title .title {
    margin: 0 0 30px 0;
  }
}
.next-project .box-title .btn-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.next-project .box-title .btn-container .next-project-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid;
  border-color: var(--text-white);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);
  transition: border-color 400ms var(--bezier-1), background-color 400ms var(--bezier-1);
}
@media (min-width: 992px) {
  .next-project .box-title .btn-container .next-project-btn {
    width: 118px;
    height: 118px;
  }
}
.next-project .box-title .btn-container .next-project-btn .left,
.next-project .box-title .btn-container .next-project-btn .visible {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: transform 400ms var(--bezier-1);
}
.next-project .box-title .btn-container .next-project-btn .left svg,
.next-project .box-title .btn-container .next-project-btn .visible svg {
  display: block;
  width: 50%;
}
.next-project .box-title .btn-container .next-project-btn .left {
  position: absolute;
  width: 100%;
  transform: translateX(-100%);
}
.next-project .box-title .btn-container .next-project-btn .left svg {
  color: var(--red-1);
}
.next-project .box-title .btn-container .next-project-btn .visible svg {
  color: var(--text-white);
}
html[data-device=desktop] .next-project .box-title .btn-container .next-project-btn:hover {
  background-color: var(--text-white);
  border-color: var(--red-1);
}
html[data-device=desktop] .next-project .box-title .btn-container .next-project-btn:hover .visible {
  transform: translateX(100%);
}
html[data-device=desktop] .next-project .box-title .btn-container .next-project-btn:hover .left {
  transform: translateX(0%);
}

.navigation-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 35px 0 35px 0;
  transition: opacity 400ms var(--bezier-1), transform 500ms var(--bezier-1);
}
.navigation-bar.hidden {
  opacity: 0;
  transform: translate(0%, -20%);
  pointer-events: none;
}
.navigation-bar.in-transition {
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (min-width: 1230px) {
  .navigation-bar {
    background-color: transparent !important;
  }
}
.navigation-bar .nav-menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.navigation-bar .nav-menu .lang-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 60px;
}
.navigation-bar .nav-menu .lang-buttons .lang-btn {
  cursor: default;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gray-ccc);
  opacity: 0.65;
  transition: opacity 400ms var(--bezier-1);
}
.navigation-bar .nav-menu .lang-buttons .lang-btn.active {
  pointer-events: none;
  opacity: 1;
  font-weight: 400;
  color: var(--text-white);
}
.navigation-bar .nav-menu .lang-buttons .dot-separator {
  width: 3px;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 50%;
}
.navigation-bar .nav-menu .nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -25%);
}
.navigation-bar .nav-menu .nav-logo .logo-img {
  width: 50px;
  margin: 0 auto 18px auto;
  overflow: hidden;
  color: var(--text-white);
}
.navigation-bar .nav-menu .nav-logo .logo-img a {
  color: inherit;
}
@media (min-width: 992px) {
  .navigation-bar .nav-menu .nav-logo .logo-img {
    width: 68px;
  }
}
.navigation-bar .nav-menu .nav-logo .logo-img svg {
  width: 100%;
  height: 100%;
}
.navigation-bar .nav-menu .nav-logo .logo-img svg path {
  fill: var(--text-white);
}
.navigation-bar .nav-menu .nav-links {
  display: none;
}
@media (min-width: 1230px) {
  .navigation-bar .nav-menu .nav-links {
    display: flex;
  }
}
.navigation-bar .nav-menu .nav-links .nav-link {
  color: var(--text-white);
}
.navigation-bar .nav-menu .nav-links .nav-link a {
  font-size: 14px;
  font-weight: 400;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 12px;
  opacity: 0.7;
  transition: opacity 400ms ease;
}
.navigation-bar .nav-menu .nav-links .nav-link a:last-child {
  padding: 0 0 0 12px;
}
html[data-device=desktop] .navigation-bar .nav-menu .nav-links .nav-link a:hover {
  opacity: 1;
}
.navigation-bar .nav-menu .nav-links .nav-link.active a {
  opacity: 1;
  font-weight: 500;
}
.navigation-bar .nav-menu .nav-menu-btn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 37px;
}
@media (min-width: 1230px) {
  .navigation-bar .nav-menu .nav-menu-btn {
    display: none;
  }
}
.navigation-bar .nav-menu .nav-menu-btn .bar {
  width: 100%;
  height: 1px;
  background-color: var(--text-white);
  margin-bottom: 8px;
}
.navigation-bar .nav-menu .nav-menu-btn .bar:last-child {
  width: 66%;
  margin-left: auto;
  margin-bottom: 0;
}

.navigation-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  pointer-events: none;
  background-color: var(--text-black);
  transform: translateY(-100%);
}
.navigation-menu.isOpen {
  pointer-events: all;
}
.navigation-menu.on-transition {
  pointer-events: none;
}
.navigation-menu .menu-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
.navigation-menu .menu-wrapper .menu-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}
html[data-device=desktop] .navigation-menu .menu-wrapper .menu-links {
  transform: translate(-50%, -50%);
}
.navigation-menu .menu-wrapper .menu-links ul {
  display: flex;
  flex-direction: column;
}
.navigation-menu .menu-wrapper .menu-links ul .menu-link {
  overflow: hidden;
  margin-bottom: 4vh;
}
.navigation-menu .menu-wrapper .menu-links ul .menu-link:last-child {
  margin-bottom: 0;
}
.navigation-menu .menu-wrapper .menu-links ul .menu-link a {
  display: block;
  text-align: center;
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text-white);
  transition: scale 180ms var(--bezier-1), color 300ms var(--bezier-1);
}
@media (min-width: 375px) {
  .navigation-menu .menu-wrapper .menu-links ul .menu-link a {
    font-size: 50px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .navigation-menu .menu-wrapper .menu-links ul .menu-link a {
    font-size: calc( 22px + (50 - 22) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
html[data-device=desktop] .navigation-menu .menu-wrapper .menu-links ul .menu-link a {
  font-size: 30px;
}
@media (min-width: 375px) {
  html[data-device=desktop] .navigation-menu .menu-wrapper .menu-links ul .menu-link a {
    font-size: 65px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  html[data-device=desktop] .navigation-menu .menu-wrapper .menu-links ul .menu-link a {
    font-size: calc( 30px + (65 - 30) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.navigation-menu .menu-wrapper .menu-links ul:hover .menu-link a {
  color: var(--gray-07);
}
.navigation-menu .menu-wrapper .menu-links ul:hover .menu-link:hover a {
  color: var(--text-white);
}
.navigation-menu .menu-wrapper .menu-footer {
  display: flex;
  flex-direction: column;
  margin: auto auto 20vh auto;
}
html[data-device=desktop] .navigation-menu .menu-wrapper .menu-footer {
  margin: auto auto 35px auto;
}
.navigation-menu .menu-wrapper .menu-footer .follow-us {
  overflow: hidden;
}
.navigation-menu .menu-wrapper .menu-footer .follow-us .tagname {
  text-align: center;
  color: var(--gray-ccc);
  font-size: 15px;
}
.navigation-menu .menu-wrapper .menu-footer ul {
  display: flex;
  margin-top: 20px;
}
.navigation-menu .menu-wrapper .menu-footer ul .red-link {
  width: 40px;
  height: 25px;
  overflow: hidden;
  padding: 0 10px;
}
.navigation-menu .menu-wrapper .menu-footer ul .red-link svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text-white);
  transition: color 300ms var(--bezier-1);
}
html[data-device=desktop] .navigation-menu .menu-wrapper .menu-footer ul:hover .red-link svg {
  color: var(--gray-07);
}
html[data-device=desktop] .navigation-menu .menu-wrapper .menu-footer ul:hover .red-link:hover svg {
  color: var(--text-white);
}

.wrapper-loading {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  height: 100%;
  width: 100%;
  background-color: var(--bg-white);
  overflow: hidden;
  pointer-events: none;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.wrapper-loading .wrapper-preloader {
  position: absolute;
  z-index: 998;
  height: 100%;
  width: 100%;
  background-color: var(--bg-white);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.wrapper-loading .wrapper-preloader .box-preloader {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 6vh 0;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(110px, 12vw ,185px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo {
  position: absolute;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo svg {
  width: 100%;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo.light svg path {
  fill: #ccc;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo.dark {
  z-index: 2;
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo.dark svg path {
  fill: var(--text-black);
}
.wrapper-loading .wrapper-preloader .box-preloader .container-logos .container-logo .logo-dark {
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}
.wrapper-loading .wrapper-preloader .box-preloader .img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 205px;
  height: 314px;
  height: auto;
  margin: 0 auto 6vh auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .wrapper-loading .wrapper-preloader .box-preloader .img-container {
    height: 485px;
    width: 350px;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .img-container picture {
  position: absolute;
  overflow: hidden;
}
.wrapper-loading .wrapper-preloader .box-preloader .img-container picture:first-child {
  position: relative;
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar-container {
  display: block;
  height: 2px;
  width: 295px;
  margin: 0 auto 25px auto;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  background-color: #BFBFBF;
}
@media (min-width: 768px) {
  .wrapper-loading .wrapper-preloader .box-preloader .progress-bar-container {
    width: 475px;
    margin: 0 auto 60px auto;
  }
}
.wrapper-loading .wrapper-preloader .box-preloader .progress-bar-container .bar {
  width: 0%;
  height: 2px;
  background-color: var(--red-1);
}
.wrapper-loading .wrapper-preloader .box-preloader .copy-container {
  overflow: hidden;
  height: 12px;
}
.wrapper-loading .wrapper-preloader .box-preloader .copy-container .copy {
  display: flex;
  justify-content: center;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--gray-888);
}

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

.parallax-inner {
  position: relative;
  top: 10%;
}
.parallax-inner.scaleMeUp {
  top: 6.5vh;
  scale: 1.15;
}
.parallax-inner.scaleMeUp[data-direction=down] {
  top: -4vh;
}
@media (min-width: 992px) {
  .parallax-inner.scaleMeUp[data-direction=down] {
    top: -8vh;
  }
}
.parallax-inner.scaleMeUp.moveLeft {
  position: relative;
  left: 20px;
}
.parallax-inner.scaleMeAlot {
  position: relative;
  top: 6vh;
  scale: 1.25;
}
.parallax-inner.scaleMeAlot[data-direction=down] {
  top: -4vh;
}
@media (min-width: 992px) {
  .parallax-inner.scaleMeAlot[data-direction=down] {
    top: -8vh;
  }
}

.img-container.parallax-inner-container {
  overflow: hidden;
}

.tagname {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-white);
  overflow: hidden;
}
@media (min-width: 375px) {
  .tagname {
    font-size: 18px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .tagname {
    font-size: calc( 12px + (18 - 12) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
@media (min-width: 1200px) {
  .tagname {
    letter-spacing: 4px;
  }
}
.tagname.portrait-tagname {
  color: #ccc;
  font-weight: 400;
  opacity: 0.7;
}
.tagname.gray {
  color: var(--gray-888);
}
.tagname.photo {
  font-size: 10px;
  letter-spacing: 1px;
}
@media (min-width: 320px) {
  .tagname.photo {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .tagname.photo {
    font-size: calc( 10px + (16 - 10) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}

.box-title .tagname {
  display: block;
  margin: 0 0 25px 0;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .box-title .tagname {
    margin: 0 0 30px 0;
  }
}
.box-title .tagname.red {
  color: var(--red-1);
}
.box-title h1,
.box-title h2,
.box-title h3,
.box-title h4,
.box-title h5,
.box-title h6 {
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  color: var(--text-black);
  text-transform: uppercase;
  font-size: 39px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  letter-spacing: -2px;
  line-height: 1.2;
}
@media (min-width: 320px) {
  .box-title h1,
.box-title h2,
.box-title h3,
.box-title h4,
.box-title h5,
.box-title h6 {
    font-size: 100px;
  }
}
@media (min-width: 320px) and (max-width: 1920px) {
  .box-title h1,
.box-title h2,
.box-title h3,
.box-title h4,
.box-title h5,
.box-title h6 {
    font-size: calc( 39px + (100 - 39) * (( 100vw - 320px ) / (1920 - 320)) );
  }
}
.box-title h1.light,
.box-title h2.light,
.box-title h3.light,
.box-title h4.light,
.box-title h5.light,
.box-title h6.light {
  color: var(--text-white);
}
.box-title h1 .red,
.box-title h2 .red,
.box-title h3 .red,
.box-title h4 .red,
.box-title h5 .red,
.box-title h6 .red {
  vertical-align: baseline;
  color: var(--red-1);
}
.box-title h1 .linea,
.box-title h2 .linea,
.box-title h3 .linea,
.box-title h4 .linea,
.box-title h5 .linea,
.box-title h6 .linea {
  overflow-y: hidden;
}
.box-title h1 .linea.red,
.box-title h2 .linea.red,
.box-title h3 .linea.red,
.box-title h4 .linea.red,
.box-title h5 .linea.red,
.box-title h6 .linea.red {
  color: var(--red-1);
}
@media (min-width: 992px) {
  .box-title h1 .linea.mobile,
.box-title h2 .linea.mobile,
.box-title h3 .linea.mobile,
.box-title h4 .linea.mobile,
.box-title h5 .linea.mobile,
.box-title h6 .linea.mobile {
    display: none;
  }
}
.box-title h1 .linea.desktop,
.box-title h2 .linea.desktop,
.box-title h3 .linea.desktop,
.box-title h4 .linea.desktop,
.box-title h5 .linea.desktop,
.box-title h6 .linea.desktop {
  display: none;
}
@media (min-width: 992px) {
  .box-title h1 .linea.desktop,
.box-title h2 .linea.desktop,
.box-title h3 .linea.desktop,
.box-title h4 .linea.desktop,
.box-title h5 .linea.desktop,
.box-title h6 .linea.desktop {
    display: block;
  }
}

.box-text p {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--gray-888);
  font-weight: 300;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .box-text p {
    font-size: 23px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .box-text p {
    font-size: calc( 16px + (23 - 16) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
@media (min-width: 1200px) {
  .box-text p {
    line-height: 1.8;
  }
}
.box-text p .line {
  text-align: inherit;
}

/* Define cursor behavior */
#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(--gray-888);
  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: #ccc;
  font-size: 12px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 1px;
  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;
  background-color: rgba(0, 0, 0, 0.129);
  width: 110px;
  height: 110px;
  padding: 15px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
#pointer.active-with-text .main-circle .inner-text span {
  opacity: 0.7;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 300;
}
#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);
  }
}
.whatsapp-box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background-color: var(--red-1);
  z-index: 1;
  display: grid;
  place-items: center;
}
.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;
  }
}
.whatsapp-box .box a svg {
  width: 25px;
  height: 25px;
}

.go-top-box {
  position: fixed;
  left: auto;
  right: 30px;
  width: 50px;
  height: 50px;
  bottom: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.go-top-box .arrow-box {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.go-top-box .arrow-box svg {
  width: 100%;
  height: 100%;
}

.whatsapp-box {
  opacity: 1;
}

.go-top-box {
  opacity: 0;
}

.primary-button-box {
  display: flex;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.primary-button-box .primary-button {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--red-1);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  overflow: hidden;
  padding-bottom: 7px;
}
@media (min-width: 375px) {
  .primary-button-box .primary-button {
    font-size: 19px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .primary-button-box .primary-button {
    font-size: calc( 16px + (19 - 16) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.primary-button-box .primary-button::after {
  left: 0;
  bottom: 0;
}
.primary-button-box .primary-button::before {
  left: -250%;
  bottom: 0;
}
.primary-button-box .arrow {
  display: none;
  width: 35px;
  height: 14px;
  overflow: hidden;
}
.primary-button-box .arrow svg {
  color: var(--red-1);
  transform: translateX(-250%);
  width: 100%;
  height: 100%;
  transition: transform 600ms ease-in-out;
}
html[data-device=desktop] .primary-button-box:hover .primary-button::after {
  left: 250%;
}
html[data-device=desktop] .primary-button-box:hover .primary-button::before {
  left: 0;
}
html[data-device=desktop] .primary-button-box:hover .arrow svg {
  transform: translateX(0%);
}
.primary-button-box.white .primary-button {
  color: var(--text-white);
}
.primary-button-box.white .primary-button::after {
  background-color: var(--text-white);
}
.primary-button-box.white .primary-button::before {
  background-color: var(--text-white);
}
.primary-button-box.white .arrow svg {
  color: var(--text-white);
}

.primary-button::after,
.primary-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--red-1);
  transition: left 600ms ease-in-out;
}

.btn-primary {
  position: relative;
  display: inline-block;
  padding: 1rem 1.5rem;
  line-height: normal;
  border: 1px solid var(--red-1);
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--red-1);
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  background-color: transparent;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  -webkit-tap-highlight-color: initial;
  cursor: pointer;
}
@media (min-width: 375px) {
  .btn-primary {
    font-size: 19px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .btn-primary {
    font-size: calc( 16px + (19 - 16) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
@media (min-width: 992px) {
  .btn-primary {
    font-size: 15px;
  }
}
.btn-primary:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--red-1);
  transform: scale(0, 1);
  transform-origin: right center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.2s;
}
.btn-primary:hover {
  outline: 0;
  color: #fff;
  background-color: transparent;
}
.btn-primary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.btn-primary:hover:after {
  transform-origin: right center;
  transform: scale(0, 1);
}
.btn-primary.dark {
  color: var(--gray-888);
  border-color: var(--gray-888);
}
.btn-primary.dark:after, .btn-primary.dark:before {
  background-color: var(--gray-888);
}
.btn-primary.dark:hover {
  color: var(--text-white);
}

.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;
  }
}
.transition .opacity-container {
  background-color: var(--text-black);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
}
.transition .transition-container {
  background-color: var(--text-black);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  overflow: hidden;
}
.transition .transition-container .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  z-index: 1;
}
@media (min-width: 992px) {
  .transition .transition-container .logo-container {
    width: 185px;
  }
}
.transition .transition-container .logo-container svg {
  width: 100%;
  height: auto;
}
.transition .transition-container .logo-container svg path {
  fill: var(--text-white);
}
.transition .transition-container .image-container {
  width: 205px;
  height: 314px;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 768px) {
  .transition .transition-container .image-container {
    height: 485px;
    width: 350px;
  }
}
.transition .transition-container .image-container .content {
  position: relative;
  background-color: var(--gray-ccc);
  width: 100%;
  height: 100%;
  transform: translateY(105%);
}
.transition .transition-container .image-container .content img {
  width: 101%;
  height: 101%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
html[data-browser=Chrome] .transition .transition-container .image-container .content img {
  width: 101%;
}
html[data-browser=Safari] .transition .transition-container .image-container .content img {
  height: 101%;
}
.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: 34px;
  color: var(--text-white);
  font-family: "Vanitas", Arial, Helvetica, sans-serif;
  transform: translateY(220px);
}
@media (min-width: 375px) {
  .transition .transition-container .text-container .text h1 {
    font-size: 68px;
  }
}
@media (min-width: 375px) and (max-width: 1920px) {
  .transition .transition-container .text-container .text h1 {
    font-size: calc( 34px + (68 - 34) * (( 100vw - 375px ) / (1920 - 375)) );
  }
}
.transition .transition-container .text-container .text h1:nth-child(2) {
  transform: translateY(170px);
}
.transition .preload {
  width: 0px;
  height: 0px;
  position: absolute;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}
.transition .preload .preload-img {
  position: absolute;
  top: 0;
  left: 0;
}

/* Libraries Styles */
.icv {
  position: relative;
  overflow: hidden;
  cursor: row-resize;
}
.icv__icv--vertical {
  cursor: row-resize;
}
.icv__icv--horizontal {
  cursor: col-resize;
}
.icv__img {
  pointer-events: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  max-width: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  top: 0;
  display: block;
}
.icv__is--fluid .icv__img {
  display: none;
}
.icv__img-a {
  height: auto;
  position: static;
  z-index: 1;
  left: 0px;
}
.icv__img-b {
  height: 100%;
  position: absolute;
  z-index: 2;
  left: auto;
  right: 0px;
  width: auto;
}
.icv__icv--vertical .icv__img-b {
  width: 100%;
  height: auto;
}
.icv__imposter {
  z-index: 4;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.icv__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  top: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 3;
}
.icv__is--fluid .icv__wrapper, .icv__icv--vertical .icv__wrapper {
  width: 100% !important;
}
.icv__is--fluid .icv__wrapper, .icv__icv--horizontal .icv__wrapper {
  height: 100% !important;
}
.icv__fluidwrapper {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icv__control {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  top: 0px;
  z-index: 5;
}
.icv__icv--vertical .icv__control {
  flex-direction: row;
  left: 0;
  width: 100%;
}
.icv__control-line {
  height: 50%;
  width: 2px;
  z-index: 6;
}
.icv__icv--vertical .icv__control-line {
  width: 50%;
}
.icv__theme-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  transition: all 0.1s ease-out 0s;
  z-index: 5;
}
@media (min-width: 992px) {
  .icv__theme-wrapper {
    justify-content: space-between;
  }
}
.icv__icv--vertical .icv__theme-wrapper {
  flex-direction: column;
}
.icv__arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-out 0s;
}
.icv__arrow-wrapper:first-child svg {
  position: relative;
  right: 5px;
}
.icv__arrow-wrapper:last-child svg {
  position: relative;
  left: 5px;
}
.icv__arrow-a {
  transform: scale(1.5) rotateZ(180deg);
  height: 20px;
  width: 20px;
  filter: drop-shadow(0px -3px 5px rgba(0, 0, 0, 0.33));
}
.icv__arrow-b {
  transform: scale(1.5) rotateZ(0deg);
  height: 20px;
  width: 20px;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
}
.icv__circle {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 999px;
}
@media (min-width: 992px) {
  .icv__circle {
    width: 80px;
    height: 80px;
  }
}
.icv__label {
  position: absolute;
  bottom: 1rem;
  z-index: 12;
  background: rgba(0, 0, 0, 0.33);
  color: white;
  border-radius: 3px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.icv__label.vertical {
  bottom: auto;
  left: 1rem;
}
.icv__label.on-hover {
  transform: scale(0);
  transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
}
.icv:hover .icv__label.on-hover {
  transform: scale(1);
}
.icv__label-before {
  left: 1rem;
}
.icv__label-after {
  right: 1rem;
}
.icv__label-before.vertical {
  top: 1rem;
}
.icv__label-after.vertical {
  bottom: 1rem;
  right: auto;
}
.icv__body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  cursor: none;
  background-color: var(--bg-white);
  font-family: "Montserrat", Helvetica, sans-serif;
  font-weight: 400;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
