/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0.25rem 0.25rem;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #CFA24A;
}

.hamburger-box {
  width: 2rem;
  height: 17.5px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.25px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 2rem;
  height: 2.5px;
  background-color: #CFA24A;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7.5px;
}
.hamburger-inner::after {
  bottom: -7.5px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 4rem;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 4rem;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 4rem;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 4rem;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 4rem;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 4rem;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-0.4rem, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-0.4rem, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(0.4rem, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(0.4rem, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-0.4rem, -0.5rem, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-0.4rem, 0.5rem, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(0.4rem, -0.5rem, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(0.4rem, 0.5rem, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -15px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -15px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -7.5px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1.25px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 7.5px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 15px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 7.5px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -15px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1.25px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 7.5px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 15px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 7.5px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -15px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 7.5px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -4rem;
  top: -4rem;
  transform: translate3d(4rem, 4rem, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -4rem;
  top: -4rem;
  transform: translate3d(-4rem, 4rem, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 7.5px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -4rem;
  top: 4rem;
  transform: translate3d(4rem, -4rem, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -4rem;
  top: 4rem;
  transform: translate3d(-4rem, -4rem, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1.25px;
}
.hamburger--slider .hamburger-inner::before {
  top: 7.5px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 15px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-0.2857142857rem, -5px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -15px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1.25px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 7.5px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 15px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 7.5px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(0.2857142857rem, -5px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -15px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1.25px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 7.5px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 15px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7.5px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 7.5px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -15px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -7.5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

@font-face {
  font-family: "argestadisplay-regular";
  src: url("fonts/argestadisplay-regular.woff2") format("woff2"), url("fonts/argestadisplay-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "british_shorthair";
  src: url("fonts/british_shorthair.woff2") format("woff2"), url("fonts/british_shorthair.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham-book";
  src: url("fonts/gotham-book.woff2") format("woff2"), url("fonts/gotham-book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham-medium";
  src: url("fonts/gotham-medium.woff2") format("woff2"), url("fonts/gotham-medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham-bold";
  src: url("fonts/gotham-bold.woff2") format("woff2"), url("fonts/gotham-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body, html {
  position: relative;
  font-family: "argestadisplay-regular", sans-serif;
  font-size: 14px;
  color: #DECAA2;
  background: #0b0b0b;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}
a.link {
  position: relative;
  text-transform: uppercase;
  color: #D6B981;
  border: 1px solid #D6B981;
  font-family: "gotham-light", sans-serif;
  font-size: 0.8571428571rem;
  padding: 0.45rem 1.25rem;
  letter-spacing: 0.15rem;
  transition: color 0.33s cubic-bezier(0, 0.59, 0.18, 1.01);
}
a.link::after {
  content: "";
  display: block;
  position: absolute;
  width: 102%;
  height: 0%;
  background-color: #CFA24A;
  bottom: -1px;
  left: -1px;
  transition: height 0.33s cubic-bezier(0.03, 0.47, 0.4, 1.39);
  z-index: -1;
}
a.link:hover {
  color: #0b0b0b;
  font-family: "gotham-regular", sans-serif;
}
a.link:hover::after {
  height: 108%;
}

ul {
  list-style: none;
  padding-left: 0;
}
ul.divisor {
  display: flex;
}
ul.divisor li:not(:last-child):after {
  content: "";
  display: block;
  position: relative;
  width: 1px;
  height: 1rem;
  background-color: #CFA24A;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
}

h1, h2, h3, h4, h5, p, ul {
  font-weight: normal;
  margin: 0 0 1rem;
}

h2 {
  text-transform: uppercase;
  font-size: 1.4285714286rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1.7rem;
}

* {
  box-sizing: border-box;
  outline: 0;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #0b0b0b;
}

.full {
  position: relative;
  width: 100vw;
  left: calc((1200px - 100vw) / 2);
}

.rel {
  position: relative;
}

.desktop {
  display: inherit !important;
}
@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .mobile {
    display: inherit !important;
  }
}

.grad-top:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 15rem;
  background-color: tranparent;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgb(11, 11, 11);
  background: linear-gradient(0deg, rgba(11, 11, 11, 0) 0%, rgb(11, 11, 11) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0c0a",endColorstr="#0d0c0a",GradientType=1);
}
@media (max-width: 992px) {
  .grad-top:before {
    height: 10rem;
  }
}
@media (max-width: 768px) {
  .grad-top:before {
    height: 7rem;
  }
}
@media (max-width: 576px) {
  .grad-top:before {
    height: 5rem;
  }
}

.grad-bottom:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10rem;
  background-color: tranparent;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: rgb(11, 11, 11);
  background: linear-gradient(0deg, rgb(11, 11, 11) 0%, rgba(11, 11, 11, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0c0a",endColorstr="#0d0c0a",GradientType=1);
}
@media (max-width: 992px) {
  .grad-bottom:after {
    height: 10rem;
  }
}
@media (max-width: 768px) {
  .grad-bottom:after {
    height: 7rem;
  }
}
@media (max-width: 576px) {
  .grad-bottom:after {
    height: 5rem;
  }
}

.grad-left:before {
  content: "";
  display: block;
  position: absolute;
  width: 10rem;
  height: 100%;
  background-color: tranparent;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgb(13, 12, 15);
  background: linear-gradient(-90deg, rgba(11, 11, 11, 0) 0%, rgb(11, 11, 11) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0c0a",endColorstr="#0d0c0a",GradientType=1);
}
@media (max-width: 1200px) {
  .grad-left:before {
    width: 9rem;
  }
}
@media (max-width: 992px) {
  .grad-left:before {
    width: 5.5rem;
  }
}
@media (max-width: 768px) {
  .grad-left:before {
    display: none;
  }
}

.grad-right:after {
  content: "";
  display: block;
  position: absolute;
  width: 10rem;
  height: 100%;
  background-color: tranparent;
  top: 0;
  right: 0;
  z-index: 10;
  background: rgb(11, 11, 11);
  background: linear-gradient(-90deg, rgb(11, 11, 11) 0%, rgba(11, 11, 11, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0c0a",endColorstr="#0d0c0a",GradientType=1);
}
@media (max-width: 1200px) {
  .grad-right:after {
    width: 9rem;
  }
}
@media (max-width: 992px) {
  .grad-right:after {
    width: 5.5rem;
  }
}
@media (max-width: 768px) {
  .grad-right:after {
    display: none;
  }
}

span.circle,
span.circle2,
span.square {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='49' stroke='%23CFA24A' stroke-width='.05' stroke-dasharray='1,1.5' stroke-linecap='square' fill='transparent'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 10;
  animation: 120s linear infinite rotate-reverse;
  transform-origin: 0% 0%;
  transform-box: fill-box;
  max-width: 85%;
  max-height: 85%;
  min-width: 60%;
  min-height: 60%;
  transition: width 2s cubic-bezier(0, 0.59, 0.18, 1.01), height 2s cubic-bezier(0, 0.59, 0.18, 1.01);
}
@media (max-width: 768px) {
  span.circle,
  span.circle2,
  span.square {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='49' stroke='%23CFA24A' stroke-width='.1' stroke-dasharray='1,1.5' stroke-linecap='square' fill='transparent'/></svg>");
  }
}
span.circle:not(.safari),
span.circle2:not(.safari),
span.square:not(.safari) {
  width: calc(var(--ty) * 0.8%);
  height: calc(var(--ty) * 0.8%);
}

span.circle2 {
  width: 50%;
  height: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='49' stroke='%23CFA24A' stroke-width='.1' stroke-dasharray='1,1.5' stroke-linecap='square' fill='transparent'/></svg>");
  animation: 60s linear infinite rotate-clock;
  max-width: 55%;
  max-height: 55%;
  min-width: 45%;
  min-height: 45%;
  transition: width 4s cubic-bezier(0, 0.59, 0.18, 1.01), height 4s cubic-bezier(0, 0.59, 0.18, 1.01);
}
@media (max-width: 768px) {
  span.circle2 {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='49' stroke='%23CFA24A' stroke-width='.2' stroke-dasharray='1,2' stroke-linecap='square' fill='transparent'/></svg>");
  }
}
span.circle2:not(.safari) {
  width: calc(var(--ty) * 0.5%);
  height: calc(var(--ty) * 0.5%);
}

@keyframes rotate-clock {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}
@keyframes rotate-reverse {
  0% {
    transform: rotate(45deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(-225deg) translate(-50%, -50%);
  }
}
.video-cont {
  position: relative;
  cursor: pointer;
  z-index: 50;
  overflow: hidden;
}
.video-cont video {
  position: relative;
  width: 100%;
  display: block;
}
.video-cont div.init-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.video-cont div.init-video img.play {
  transform: scale(1);
  transition: transform 0.33s cubic-bezier(0.03, 0.47, 0.4, 1.39);
}
.video-cont img.poster-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 1;
  transition: transform 1s cubic-bezier(0, 0.59, 0.18, 1.01);
  will-change: transform;
  transform: scale(calc(1 + var(--ty) * 0.01));
}
.video-cont:hover div.init-video img.play {
  transform: scale(1.25);
}

section.our-fragances {
  padding: 5rem 0 0;
  text-align: center;
}
@media (max-width: 768px) {
  section.our-fragances {
    padding: 2rem 0 0;
  }
}
section.our-fragances .imago {
  width: 15rem;
  margin-bottom: 0rem;
}
section.our-fragances h2 {
  position: relative;
  opacity: 0;
  margin-top: -1rem;
  transform: translateY(1rem);
  transition: transform 0.75s cubic-bezier(0, 0.59, 0.18, 1.01), opacity 0.75s cubic-bezier(0, 0.59, 0.18, 1.01);
}
@media (max-width: 768px) {
  section.our-fragances h2 {
    margin-top: 0rem;
  }
}
section.our-fragances p {
  max-width: calc(768px - 75px);
  width: 85%;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
}
section.our-fragances p span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.2s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.2s + 0s);
}
section.our-fragances p span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.2s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.2s + 0s);
}
section.our-fragances p span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.2s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.2s + 0s);
}
section.our-fragances p span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.2s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.2s + 0s);
}
section.our-fragances p span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.2s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.2s + 0s);
}
section.our-fragances p span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.2s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.2s + 0s);
}
section.our-fragances p span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.2s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.2s + 0s);
}
section.our-fragances div.swiper-container ul.anim-on li {
  opacity: 1;
}
section.our-fragances div.swiper-container ul.anim-on li h3 {
  opacity: 1;
  transform: translateY(0);
}
section.our-fragances div.swiper-container ul.anim-on li a:hover span img:nth-of-type(1) {
  transform: translateY(100%);
}
@media (max-width: 992px) {
  section.our-fragances div.swiper-container ul.anim-on li a:hover span img:nth-of-type(1) {
    transform: translateY(0%);
  }
}
section.our-fragances div.swiper-container ul.anim-off li {
  opacity: 0.25;
}
section.our-fragances div.swiper-container ul.anim-off li h3 {
  opacity: 0;
  transform: translateY(-200%);
}
section.our-fragances div.swiper-container ul.anim-off li a:hover span img:nth-of-type(1) {
  transform: translateY(0%);
}
section.our-fragances div.swiper-container ul li {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  section.our-fragances div.swiper-container ul li {
    width: auto;
  }
}
section.our-fragances div.swiper-container .swiper-wrapper {
  justify-content: center;
}
@media (max-width: 992px) {
  section.our-fragances div.swiper-container .swiper-wrapper {
    justify-content: inherit;
  }
}
section.our-fragances ul.productos:not(.swiper-wrapper) {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
}
@media (max-width: 992px) {
  section.our-fragances ul.productos:not(.swiper-wrapper) {
    flex-direction: column;
    align-items: center;
  }
}
section.our-fragances ul.productos:not(.swiper-wrapper).anim-on li {
  opacity: 1;
}
section.our-fragances ul.productos:not(.swiper-wrapper).anim-on li h3 {
  opacity: 1;
  transform: translateY(0);
}
section.our-fragances ul.productos:not(.swiper-wrapper).anim-on li a:hover span img:nth-of-type(1) {
  transform: translateY(100%);
}
@media (max-width: 992px) {
  section.our-fragances ul.productos:not(.swiper-wrapper).anim-on li a:hover span img:nth-of-type(1) {
    transform: translateY(0%);
  }
}
section.our-fragances ul.productos:not(.swiper-wrapper).anim-off li {
  opacity: 0.25;
}
section.our-fragances ul.productos:not(.swiper-wrapper).anim-off li h3 {
  opacity: 0;
  transform: translateY(-200%);
}
section.our-fragances ul.productos:not(.swiper-wrapper).anim-off li a:hover span img:nth-of-type(1) {
  transform: translateY(0%);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(6) {
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 6) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(6) h3 {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 6) * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 6) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(5) {
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 5) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(5) h3 {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 5) * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 5) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(4) {
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 4) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(4) h3 {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 4) * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 4) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(3) {
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 3) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(3) h3 {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 3) * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 3) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(2) {
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 2) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(2) h3 {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 2) * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 2) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(1) {
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 1) * 0.1s + 0.2s);
}
section.our-fragances ul.productos:not(.swiper-wrapper).scroll-up li:nth-of-type(1) h3 {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 1) * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((6 - 1) * 0.1s + 0.2s);
}
section.our-fragances li {
  max-width: 14%;
}
section.our-fragances li:nth-of-type(1) {
  opacity: 0.25;
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc(1 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(1) h3 {
  position: relative;
  opacity: 0;
  transform: translateY(-200%);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(1 * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(1 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(2) {
  opacity: 0.25;
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(2) h3 {
  position: relative;
  opacity: 0;
  transform: translateY(-200%);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(3) {
  opacity: 0.25;
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(3) h3 {
  position: relative;
  opacity: 0;
  transform: translateY(-200%);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(4) {
  opacity: 0.25;
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(4) h3 {
  position: relative;
  opacity: 0;
  transform: translateY(-200%);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(5) {
  opacity: 0.25;
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(5) h3 {
  position: relative;
  opacity: 0;
  transform: translateY(-200%);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(6) {
  opacity: 0.25;
  transition: opacity 3s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 0.2s);
}
section.our-fragances li:nth-of-type(6) h3 {
  position: relative;
  opacity: 0;
  transform: translateY(-200%);
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 0.2s);
}
@media (max-width: 992px) {
  section.our-fragances li {
    margin-bottom: 2rem;
    max-width: 16rem;
  }
}
section.our-fragances li a {
  position: relative;
  display: block;
}
section.our-fragances li a span {
  position: relative;
  display: block;
  transform: rotateY(0deg);
  transition: transform 1s cubic-bezier(0, 0.59, 0.18, 1.01);
  transform-style: preserve-3d;
  width: 100%;
  overflow: hidden;
}
section.our-fragances li a span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3rem;
  background-color: tranparent;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: rgb(11, 11, 11);
  background: linear-gradient(0deg, rgb(11, 11, 11) 0%, rgba(11, 11, 11, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0c0a",endColorstr="#0d0c0a",GradientType=1);
}
@media (max-width: 768px) {
  section.our-fragances li a span:after {
    display: none;
  }
}
section.our-fragances li a span img:nth-of-type(1) {
  position: relative;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01);
  width: 100%;
  z-index: 10;
}
section.our-fragances li a span .bote {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 2.5s linear;
  z-index: 1;
}
@media (max-width: 992px) {
  section.our-fragances li a span .bote {
    width: 45%;
  }
}
section.our-fragances li a:hover span img:nth-of-type(1) {
  transform: translateY(0%);
  transition: transform 0.5s cubic-bezier(0.7, 0.07, 0.96, 0.59);
}
section.our-fragances li a:hover span img.bote {
  transition: opacity 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) 0.33s;
  opacity: 1;
}
section.our-fragances h3 {
  text-transform: uppercase;
  font-family: "gotham-bold", sans-serif;
  font-size: 0.8571428571rem;
  letter-spacing: 0.2rem;
  line-height: 1.25rem;
}
section.our-fragances div.footer-our-fragances {
  position: relative;
  margin-top: -5rem;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 992px) {
  section.our-fragances div.footer-our-fragances {
    margin-top: -1rem;
  }
}
section.our-fragances div.footer-our-fragances > span {
  position: relative;
  display: block;
  transform: translateY(calc((var(--ty) - 100) * -1px));
  will-change: transform;
  transition: transform 1s cubic-bezier(0, 0.59, 0.18, 1.01);
}
section.our-fragances div.footer-our-fragances .bodegon {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-height: 125rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media (max-width: 992px) {
  section.our-fragances div.footer-our-fragances .bodegon {
    width: 150%;
    left: 50%;
  }
}
section.our-fragances div.footer-our-fragances .imago {
  position: absolute;
  top: 17%;
  left: 50%;
  max-width: 30rem;
  width: 44%;
  z-index: 100;
  opacity: calc(var(--ty) * 3 * 0.003);
  transform: translate(-50%, calc((var(--ty) - 100) * 0.25px));
  transition: transform 1s cubic-bezier(0, 0.59, 0.18, 1.01), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01);
}
@media (max-width: calc(1200px + 100px)) {
  section.our-fragances div.footer-our-fragances .imago {
    top: 20%;
    max-width: 23rem;
  }
}
@media (max-width: 992px) {
  section.our-fragances div.footer-our-fragances .imago {
    top: 23%;
    max-width: 21.5rem;
  }
}
section.our-fragances.scroll-up p span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.2s + 0.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.1s + 0.1s);
}
section.our-fragances.scroll-up p span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.2s + 0.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.1s + 0.1s);
}
section.our-fragances.scroll-up p span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.2s + 0.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.1s + 0.1s);
}
section.our-fragances.scroll-up p span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.2s + 0.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.1s + 0.1s);
}
section.our-fragances.scroll-up p span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.2s + 0.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.1s + 0.1s);
}
section.our-fragances.scroll-up p span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.2s + 0.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.1s + 0.1s);
}
section.our-fragances.scroll-up p span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.2s + 0.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.1s + 0.1s);
}
section.our-fragances.anim-on h2 {
  opacity: 1;
  transform: translateY(0%);
}
section.our-fragances.anim-on p span:not(.original) {
  opacity: 1;
  transform: translateY(0rem);
}
section.our-fragances.anim-off h2 {
  opacity: 0;
  transform: translateY(-100%);
}
section.our-fragances.anim-off p span:not(.original) {
  opacity: 0;
  transform: translateY(-100%);
}

div.footer-our-universe {
  overflow: hidden;
  position: relative;
  transform: translateY(calc((var(--ty) - 100) * -2px));
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01);
}
@media (max-width: 576px) {
  div.footer-our-universe {
    transform: translateY(0);
  }
}
div.footer-our-universe > .imago {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 992px) {
  div.footer-our-universe > .imago {
    width: 130%;
  }
}

header {
  position: relative;
  z-index: 100;
}
header nav.language {
  font-family: "gotham-book", sans-serif;
  font-size: 0.8571428571rem;
  text-transform: uppercase;
  color: #CFA24A;
}
header nav.language li.activate {
  opacity: 0.5;
  cursor: default;
}
header nav.language li.activate a:hover {
  color: inherit;
  cursor: default;
}
header nav.language li.activate a:hover::after {
  display: none;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3%;
  z-index: 100;
}
@media (max-width: 35rem) {
  header .container {
    justify-content: center;
  }
}
header .container .alogo {
  width: 13rem;
  margin-left: -1rem;
}
@media (max-width: 35rem) {
  header .container .alogo {
    margin-left: 0rem;
  }
}
header .container .alogo img {
  width: 100%;
}
@media (max-width: 576px) {
  header .container {
    padding: 2rem 6%;
  }
}
header .container .alogo {
  position: relative;
  z-index: 100;
}
@media (max-width: 35rem) {
  header .container nav.language {
    display: none;
  }
}
header .container .hamburger {
  position: relative;
  z-index: 100;
}
@media (max-width: 35rem) {
  header .container .hamburger {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
  }
}
header .menu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  max-width: 35rem;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01);
  background-color: #0b0b0b;
  z-index: 99;
}
@media (max-width: 1200px) {
  header .menu {
    max-width: 35rem;
    padding: 2rem;
  }
}
header .menu nav.language {
  display: none;
  margin-top: 3rem;
}
@media (max-width: 35rem) {
  header .menu nav.language {
    display: block;
  }
}
header .menu li {
  text-align: center;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 0.8571428571rem;
  color: #CFA24A;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translate(50%, 0%);
}
header .menu li:first-of-type, header .menu li:nth-of-type(2) {
  margin-bottom: 3rem;
}
header .menu li a {
  position: relative;
  font-family: "gotham-bold", sans-serif;
  font-size: 1.1428571429rem;
  transition: color 0.35s cubic-bezier(0, 0.59, 0.18, 1.01);
}
header .menu li a:after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: white;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.33s cubic-bezier(0.03, 0.47, 0.4, 1.39);
}
header .menu li a:hover {
  color: white;
}
header .menu li a:hover:after {
  width: 100%;
}
header.is-active {
  position: sticky;
  top: 0;
  z-index: 100;
}
header.is-active .menu {
  transform: translateX(0%);
}
header.is-active li:nth-of-type(1) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(1 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(1 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(2) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(3) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(4) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(5) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(6) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(7) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(8) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}
header.is-active li:nth-of-type(9) {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(9 * 0.12s + 0.1s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(9 * 0.12s + 0.1s);
  transform: translate(0%, 0%);
}

main {
  position: relative;
  opacity: 0;
  transition: opacity 0.2s linear;
}
main.on {
  opacity: 1;
}
main.home ul.menu-lateral {
  position: fixed;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  bottom: -3rem;
  left: 2rem;
  z-index: 100;
  transform: rotate(-90deg);
  transform-origin: 0 0;
}
@media (max-width: 768px) {
  main.home ul.menu-lateral {
    display: none;
  }
}
main.home ul.menu-lateral:after {
  content: "";
  display: block;
  position: relative;
  width: 6rem;
  height: 1px;
  background-color: transparent;
  border-top: 1px dashed #D6B981;
  margin: 0 1rem;
}
main.home ul.menu-lateral:before {
  content: "";
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  background-color: transparent;
  bottom: -1.5rem;
  left: 3rem;
  content: "Scroll Down";
  text-transform: uppercase;
  font-family: "gotham-light", sans-serif;
  letter-spacing: 0.15rem;
  font-size: 0.8571428571rem;
  color: #D6B981;
  transform: rotate(90deg);
  transform-origin: 0 0;
}
main.home ul.menu-lateral li a {
  position: relative;
  text-transform: uppercase;
  font-family: "gotham-bold", sans-serif;
  font-size: 0.8571428571rem;
  color: #D6B981;
  margin: 1rem;
  letter-spacing: 0.15rem;
}
main.home ul.menu-lateral li a:hover:after, main.home ul.menu-lateral li a.on:after {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 1px;
  background-color: transparent;
  border-top: 2px dashed #D6B981;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main.home section.video-home div.init-video {
  display: block;
  width: 90%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main.home section.video-home div.init-video p {
  position: relative;
  width: 100%;
  text-align: center;
  display: block;
  display: none;
  font-family: "british_shorthair", sans-serif;
  font-size: 3.9285714286rem;
  margin-bottom: 1.2rem;
  color: #CFA24A;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 2s cubic-bezier(0, 0.59, 0.18, 1.01) 0.3s, opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) 0.3s;
}
@media (max-width: 992px) {
  main.home section.video-home div.init-video p {
    max-width: 85%;
    font-size: 3.4285714286rem;
  }
}
@media (max-width: 768px) {
  main.home section.video-home div.init-video p {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  main.home section.video-home div.init-video p {
    font-size: 2.5rem;
  }
}
main.home section.video-home div.init-video img {
  width: 3.6rem;
}
main.home section.video-home.anim-on div.init-video p {
  opacity: 1;
  transform: scale(1);
}
main.home section.video-home.anim-off div.init-video p {
  opacity: 0;
  transform: scale(1.2);
}
main.home section.our-universe {
  overflow: hidden;
}
main.home section.our-universe div.cont-universe {
  position: relative;
  max-height: 992px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
main.home section.our-universe div.cont-universe.anim-on div.universe span.text h2, main.home section.our-universe div.cont-universe.anim-on div.universe span.text a {
  opacity: 1;
}
main.home section.our-universe div.cont-universe.anim-off div.universe span.text h2, main.home section.our-universe div.cont-universe.anim-off div.universe span.text a {
  opacity: 0;
}
@media (max-width: 992px) {
  main.home section.our-universe div.cont-universe::after, main.home section.our-universe div.cont-universe::before {
    display: none;
  }
}
@media (max-width: 768px) {
  main.home section.our-universe div.cont-universe {
    display: block;
    max-height: 100%;
  }
}
main.home section.our-universe div.universe {
  position: relative;
  width: 100vw;
  max-width: calc(1200px + 100px);
  height: 100vw;
  max-height: calc(1200px + 100px);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  main.home section.our-universe div.universe {
    width: 130vw;
    height: 130vw;
    margin-bottom: 6rem;
  }
}
main.home section.our-universe div.universe span.star {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 0.5vw;
  height: 0.5vw;
  transform: translate(-50%, -50%);
  z-index: 20;
  animation: parpadeo 10s infinite alternate;
  background: rgb(130, 120, 100);
  background: radial-gradient(circle, rgba(130, 120, 100, 0.8) 30%, rgba(130, 120, 100, 0) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0c0a",endColorstr="#0d0c0a",GradientType=1);
}
main.home section.our-universe div.universe span.star.s1 {
  transform: translate(-4.5rem, -20rem) !important;
  animation: parpadeo 10s infinite alternate !important;
}
main.home section.our-universe div.universe span.star.s2 {
  transform: translate(10.5rem, 13rem) !important;
  animation: parpadeo2 14s infinite alternate !important;
}
main.home section.our-universe div.universe span.star.s3 {
  transform: translate(-4.5rem, 10rem) !important;
  animation: parpadeo 8s infinite alternate !important;
}
main.home section.our-universe div.universe span.star.s4 {
  transform: translate(-4.5rem, -12rem) !important;
  animation: parpadeo 20s infinite alternate !important;
}
main.home section.our-universe div.universe span.star.s5 {
  transform: translate(3.5rem, 20rem) !important;
  animation: parpadeo2 24s infinite alternate !important;
}
main.home section.our-universe div.universe span.star.s6 {
  transform: translate(-9.5rem, 8rem) !important;
  animation: parpadeo 18s infinite alternate !important;
}
main.home section.our-universe div.universe .imago {
  position: absolute;
  display: block;
  text-align: center;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 40%;
  max-width: 25rem;
}
main.home section.our-universe div.universe span.text {
  position: absolute;
  display: block;
  text-align: center;
  display: block;
  top: calc(50% + 13.5rem);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
main.home section.our-universe div.universe span.text h2 {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01);
}
main.home section.our-universe div.universe span.text a {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) 0.33s;
}
@media (max-width: 768px) {
  main.home section.our-universe div.universe span.text {
    top: inherit;
    bottom: 3rem;
    transform: translate(-50%, 100%);
  }
}
main.home section.our-universe div.universe span.content-estrellas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
main.home section.our-universe div.universe span.content-estrellas img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main.home section.visual {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: url("../images/bg-visual.jpg");
  overflow: hidden;
}
@media (max-width: 992px) {
  main.home section.visual {
    align-items: center;
    min-height: auto;
  }
}
main.home section.visual.anim-on .visual__image {
  opacity: 1 !important;
  transform: translateY(10%);
}
@media (max-width: 768px) {
  main.home section.visual.anim-on .visual__image {
    transform: translateY(0%);
  }
}
main.home section.visual.anim-on .visual__wrap-text {
  opacity: 1;
  transform: translateY(0%);
}
@media (max-width: 768px) {
  main.home section.visual.anim-on .visual__wrap-text {
    transform: translate(-50%, -50%);
  }
}
main.home section.visual.anim-off .visual__image {
  opacity: 0 !important;
  transform: translateY(-50%);
}
main.home section.visual.anim-off .visual__wrap-text {
  opacity: 0;
  transform: translateY(30%);
}
@media (max-width: 768px) {
  main.home section.visual.anim-off .visual__wrap-text {
    transform: translate(-50%, -30%);
  }
}
main.home section.visual .visual__image {
  position: relative;
  transform: translateY(50%);
  left: -5%;
  max-width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  flex: 0;
  transition: transform 1.25s cubic-bezier(0, 0.59, 0.18, 1.01) 0.1s, opacity 1.25s cubic-bezier(0, 0.59, 0.18, 1.01) 0.1s;
  opacity: 0;
}
@media (max-width: 992px) {
  main.home section.visual .visual__image {
    left: -10%;
  }
}
@media (max-width: 768px) {
  main.home section.visual .visual__image {
    transform: translateY(-50%);
    left: 0;
    max-width: 100%;
    height: 100vh;
    -o-object-position: 75% center;
       object-position: 75% center;
  }
}
main.home section.visual .visual__wrap-text {
  position: relative;
  left: -5%;
  width: 25rem;
  min-width: 25rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  align-self: center;
  padding-top: 15vh;
  transition: transform 1.25s cubic-bezier(0, 0.59, 0.18, 1.01) 0.1s, opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) 0.1s;
  opacity: 0;
  transform: translateY(-30%);
}
@media (max-width: 992px) {
  main.home section.visual .visual__wrap-text {
    left: -15%;
  }
}
@media (max-width: 768px) {
  main.home section.visual .visual__wrap-text {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100vh;
    transform: translate(-50%, -20%);
    justify-content: flex-end;
    padding-top: 0;
    gap: 0.5rem;
  }
  main.home section.visual .visual__wrap-text > * {
    order: 1;
  }
}
main.home section.visual .visual__claim {
  width: 80%;
}
@media (max-width: 768px) {
  main.home section.visual .visual__claim {
    order: 2;
    padding-bottom: 4vh;
    width: 75%;
  }
}
@media (max-width: 576px) {
  main.home section.visual .visual__claim {
    width: 65%;
  }
}
@media (max-width: 480px) {
  main.home section.visual .visual__claim {
    width: 55%;
  }
}
main.home section.visual .visual__claim .claim {
  position: relative;
  width: 100%;
}
main.home section.visual .visual__claim p {
  text-transform: uppercase;
  text-align: center;
  font-family: "gotham-medium", sans-serif;
  letter-spacing: 0.15rem;
  color: #CFA24A;
  font-size: 0.85rem;
}
main.home section.visual .visual__frasco {
  width: 52%;
  opacity: 0.8;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  main.home section.visual .visual__frasco {
    width: 35%;
    opacity: 1;
    margin-bottom: 0.33rem;
  }
}
main.home section.visual .visual__text {
  text-transform: uppercase;
  text-align: center;
  font-family: "gotham-medium", sans-serif;
  letter-spacing: 0.15rem;
  line-height: 1.5;
  color: #CFA24A;
  font-size: 1.33rem;
}
@media (max-width: 768px) {
  main.home section.visual .visual__text {
    font-size: 1.1rem;
    margin-bottom: 0.33rem;
  }
}
main.producto {
  display: flex;
  flex-direction: column;
}
main.producto h2 {
  font-size: 1.7857142857rem;
  letter-spacing: 0.35rem;
  margin-bottom: 4rem;
}
main.producto section.header-producto {
  order: 1;
  position: relative;
  height: 68rem;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 3rem;
}
@media (max-width: 992px) {
  main.producto section.header-producto {
    justify-content: center;
    height: auto;
  }
}
main.producto section.header-producto.p3 h1 > span {
  letter-spacing: 1.5rem !important;
}
@media (max-width: 992px) {
  main.producto section.header-producto.p3 h1 > span {
    letter-spacing: 1rem !important;
  }
}
main.producto section.header-producto.p5 h1 > span {
  letter-spacing: 1.5rem !important;
}
@media (max-width: 992px) {
  main.producto section.header-producto.p5 h1 > span {
    letter-spacing: 0.75rem !important;
  }
}
main.producto section.header-producto div.content {
  position: relative;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 8%;
}
@media (max-width: 992px) {
  main.producto section.header-producto div.content {
    width: 85%;
    padding: 0;
  }
}
main.producto section.header-producto div.content h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 5.7142857143rem;
  margin-bottom: 3rem;
  padding-left: 2rem;
  line-height: 7rem;
}
main.producto section.header-producto div.content h1 > span {
  letter-spacing: 2rem;
  line-height: 7rem;
}
main.producto section.header-producto div.content h1 > span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.2s + 0s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.2s + 0s);
}
main.producto section.header-producto div.content h1 > span:nth-of-type(3) {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.2s + 0s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.2s + 0s);
}
main.producto section.header-producto div.content h1 > span:nth-of-type(4) {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.2s + 0s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.2s + 0s);
}
main.producto section.header-producto div.content h1 > span i {
  font-style: normal;
  letter-spacing: 1.25rem;
}
@media (max-width: 1200px) {
  main.producto section.header-producto div.content h1 > span {
    font-size: 3.9285714286rem;
    line-height: 6rem;
  }
}
@media (max-width: 992px) {
  main.producto section.header-producto div.content h1 > span {
    letter-spacing: 1.5rem;
    margin: 0 auto 27rem;
    padding-left: 1.5rem;
    font-size: 3.1428571429rem;
    line-height: 4rem;
  }
  main.producto section.header-producto div.content h1 > span i {
    letter-spacing: 0.5rem;
  }
}
@media (max-width: 576px) {
  main.producto section.header-producto div.content h1 > span i {
    letter-spacing: 0.25rem;
  }
}
@media (max-width: calc(480px - 100px)) {
  main.producto section.header-producto div.content h1 > span {
    letter-spacing: 0.25rem;
    padding-left: 0.25rem;
  }
  main.producto section.header-producto div.content h1 > span i {
    letter-spacing: 0.25rem;
    margin-left: -0.5rem;
  }
}
main.producto section.header-producto div.content p.sub {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.4285714286rem;
  max-width: 40rem;
  margin-bottom: 2.5rem;
  width: 100%;
}
main.producto section.header-producto div.content p.sub span {
  letter-spacing: 0.1rem;
  line-height: 2rem;
  width: 100%;
  text-align: center;
}
main.producto section.header-producto div.content p.sub span:nth-of-type(2) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 0.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 0.3s);
}
main.producto section.header-producto div.content p.sub span:nth-of-type(3) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 0.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 0.3s);
}
main.producto section.header-producto div.content p.sub span:nth-of-type(4) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 0.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 0.3s);
}
main.producto section.header-producto div.content p.sub span:nth-of-type(5) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 0.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 0.3s);
}
main.producto section.header-producto div.content p.sub span:nth-of-type(6) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 0.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 0.3s);
}
main.producto section.header-producto div.content p.sub span:nth-of-type(7) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 0.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 0.3s);
}
main.producto section.header-producto div.content p.sub span:nth-of-type(8) {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 0.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 0.3s);
}
@media (max-width: 992px) {
  main.producto section.header-producto div.content p.sub br {
    display: none;
  }
}
main.producto section.header-producto div.content div.sign {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) 0.9s, opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) 0.9s;
}
main.producto section.header-producto div.content div.sign img {
  width: 10rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 992px) {
  main.producto section.header-producto div.content div.sign {
    margin-bottom: 3.5rem;
  }
}
main.producto section.header-producto div.content > p {
  font-size: 1.1428571429rem;
  width: 100%;
  max-width: 480px;
}
main.producto section.header-producto div.content > p span {
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
}
@media (max-width: 992px) {
  main.producto section.header-producto div.content > p {
    max-width: 100%;
    text-align: center;
  }
}
main.producto section.header-producto div.content > p:nth-of-type(2) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 1.1s);
}
main.producto section.header-producto div.content > p:nth-of-type(2) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 1.1s);
}
main.producto section.header-producto div.content > p:nth-of-type(2) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 1.1s);
}
main.producto section.header-producto div.content > p:nth-of-type(2) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 1.1s);
}
main.producto section.header-producto div.content > p:nth-of-type(2) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 1.1s);
}
main.producto section.header-producto div.content > p:nth-of-type(2) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 1.1s);
}
main.producto section.header-producto div.content > p:nth-of-type(2) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 1.1s);
}
main.producto section.header-producto div.content > p:nth-of-type(3) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 1.8s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 1.8s);
}
main.producto section.header-producto div.content > p:nth-of-type(3) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 1.8s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 1.8s);
}
main.producto section.header-producto div.content > p:nth-of-type(3) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 1.8s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 1.8s);
}
main.producto section.header-producto div.content > p:nth-of-type(3) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 1.8s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 1.8s);
}
main.producto section.header-producto div.content > p:nth-of-type(3) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 1.8s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 1.8s);
}
main.producto section.header-producto div.content > p:nth-of-type(3) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 1.8s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 1.8s);
}
main.producto section.header-producto div.content > p:nth-of-type(3) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 1.8s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 1.8s);
}
main.producto section.header-producto div.content > p:nth-of-type(4) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 2.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 2.3s);
}
main.producto section.header-producto div.content > p:nth-of-type(4) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 2.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 2.3s);
}
main.producto section.header-producto div.content > p:nth-of-type(4) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 2.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 2.3s);
}
main.producto section.header-producto div.content > p:nth-of-type(4) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 2.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 2.3s);
}
main.producto section.header-producto div.content > p:nth-of-type(4) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 2.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 2.3s);
}
main.producto section.header-producto div.content > p:nth-of-type(4) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 2.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 2.3s);
}
main.producto section.header-producto div.content > p:nth-of-type(4) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 2.3s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 2.3s);
}
main.producto section.header-producto div.content > p:nth-of-type(5) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 2.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 2.7s);
}
main.producto section.header-producto div.content > p:nth-of-type(5) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 2.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 2.7s);
}
main.producto section.header-producto div.content > p:nth-of-type(5) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 2.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 2.7s);
}
main.producto section.header-producto div.content > p:nth-of-type(5) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 2.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 2.7s);
}
main.producto section.header-producto div.content > p:nth-of-type(5) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 2.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 2.7s);
}
main.producto section.header-producto div.content > p:nth-of-type(5) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 2.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 2.7s);
}
main.producto section.header-producto div.content > p:nth-of-type(5) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 2.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 2.7s);
}
main.producto section.header-producto div.content.scroll-up h1 > span:nth-of-type(4) {
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((4 - 4) * 0.2s + 1.8s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc((4 - 4) * 0.2s + 1.8s);
}
main.producto section.header-producto div.content.scroll-up h1 > span:nth-of-type(3) {
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((4 - 3) * 0.2s + 1.8s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc((4 - 3) * 0.2s + 1.8s);
}
main.producto section.header-producto div.content.scroll-up h1 > span:nth-of-type(2) {
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((4 - 2) * 0.2s + 1.8s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc((4 - 2) * 0.2s + 1.8s);
}
main.producto section.header-producto div.content.scroll-up p.sub span:nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 1.2s);
}
main.producto section.header-producto div.content.scroll-up p.sub span:nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 1.2s);
}
main.producto section.header-producto div.content.scroll-up p.sub span:nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 1.2s);
}
main.producto section.header-producto div.content.scroll-up p.sub span:nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 1.2s);
}
main.producto section.header-producto div.content.scroll-up p.sub span:nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 1.2s);
}
main.producto section.header-producto div.content.scroll-up p.sub span:nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 1.2s);
}
main.producto section.header-producto div.content.scroll-up p.sub span:nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 1.2s);
}
main.producto section.header-producto div.content.scroll-up div.sign {
  transition: transform 0.33s cubic-bezier(0, 0.59, 0.18, 1.01) 1s, opacity 0.33s cubic-bezier(0, 0.59, 0.18, 1.01) 1s;
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.6s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.6s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.6s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.6s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.6s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.6s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.6s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.6s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.6s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.6s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.6s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.6s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.6s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.6s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.4s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.4s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.4s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.4s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.4s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.4s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.4s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(4) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.2s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(4) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.2s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(4) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.2s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(4) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.2s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(4) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.2s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(4) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.2s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(4) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.2s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(5) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(5) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(5) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(5) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(5) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(5) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0s);
}
main.producto section.header-producto div.content.scroll-up > p:nth-of-type(5) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0s);
}
main.producto section.header-producto div.content.anim-on h1 > span:not(.original) {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1200px) {
  main.producto section.header-producto div.content.anim-on h1 > span:not(.original) {
    left: 53%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1200px) {
  main.producto section.header-producto div.content.anim-on h1 > span:not(.original) {
    left: 50%;
  }
}
main.producto section.header-producto div.content.anim-on p.sub span:not(.original) {
  opacity: 1;
  transform: translateY(0%);
}
main.producto section.header-producto div.content.anim-on div.sign {
  opacity: 1;
  transform: translateY(0);
}
main.producto section.header-producto div.content.anim-on > p:nth-of-type(2) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.producto section.header-producto div.content.anim-on > p:nth-of-type(3) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.producto section.header-producto div.content.anim-on > p:nth-of-type(4) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.producto section.header-producto div.content.anim-on > p:nth-of-type(5) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.producto section.header-producto div.content.anim-off h1 > span:not(.original) {
  opacity: 0;
  transform: translateX(-100%);
}
main.producto section.header-producto div.content.anim-off p.sub span:not(.original) {
  opacity: 0;
  transform: translateY(-100%);
}
main.producto section.header-producto div.content.anim-off div.sign {
  opacity: 0;
  transform: translateY(-100%);
}
main.producto section.header-producto div.content.anim-off > p:nth-of-type(2) span:not(.original) {
  opacity: 0;
  transform: translateY(-100%);
}
main.producto section.header-producto div.content.anim-off > p:nth-of-type(3) span:not(.original) {
  opacity: 0;
  transform: translateY(-100%);
}
main.producto section.header-producto div.content.anim-off > p:nth-of-type(4) span:not(.original) {
  opacity: 0;
  transform: translateY(-100%);
}
main.producto section.header-producto div.content.anim-off > p:nth-of-type(5) span:not(.original) {
  opacity: 0;
  transform: translateY(-100%);
}
main.producto section.header-producto span.back {
  position: absolute;
  display: block;
  top: 0;
  left: 10%;
  min-width: 100%;
  height: 100%;
  z-index: 1;
}
main.producto section.header-producto span.back span.cont-img {
  position: relative;
  display: block;
  min-width: 100%;
  height: 100%;
  transition: transform 2s cubic-bezier(0, 0.59, 0.18, 1.01), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01);
  will-change: opacity;
  opacity: calc(2 - var(--ty) * 0.011);
}
main.producto section.header-producto span.back span.cont-img:before {
  content: "";
  display: block;
  position: absolute;
  width: 10rem;
  height: 100%;
  background-color: tranparent;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgb(13, 12, 15);
  background: linear-gradient(-90deg, rgba(11, 11, 11, 0) 0%, rgb(11, 11, 11) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0c0a",endColorstr="#0d0c0a",GradientType=1);
}
@media (max-width: 1200px) {
  main.producto section.header-producto span.back span.cont-img:before {
    width: 7rem;
  }
}
@media (max-width: 992px) {
  main.producto section.header-producto span.back span.cont-img:before {
    width: 4rem;
  }
}
@media (max-width: 992px) {
  main.producto section.header-producto span.back span.cont-img:before {
    display: none;
  }
}
main.producto section.header-producto span.back img {
  position: relative;
  display: block;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 1200px) {
  main.producto section.header-producto span.back {
    left: 70%;
    transform: translateX(-50%);
  }
}
@media (max-width: 992px) {
  main.producto section.header-producto span.back {
    top: 2rem;
    left: 50%;
    height: 39rem;
  }
}
main.producto section.video-producto {
  order: 3;
}
main.producto section.video-producto div.init-video {
  left: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  main.producto section.video-producto div.init-video {
    left: 53.5%;
  }
}
main.producto section.video-producto div.init-video img:nth-of-type(1) {
  width: 5rem;
}
@media (max-width: 768px) {
  main.producto section.video-producto div.init-video img:nth-of-type(1) {
    width: 4rem;
  }
}
main.producto section.caracteristicas-producto {
  order: 2;
  overflow: hidden;
  position: relative;
}
main.producto section.caracteristicas-producto h2 {
  font-size: 1.7142857143rem;
  margin-bottom: 1.7rem;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.2s, opacity 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.2s;
}
main.producto section.caracteristicas-producto h2 i {
  font-style: normal;
}
main.producto section.caracteristicas-producto h2 br {
  display: none;
}
main.producto section.caracteristicas-producto .caract {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  background-image: linear-gradient(to bottom, rgb(207, 162, 74) 50%, rgba(11, 11, 11, 0) 50%);
  background-position: left;
  background-size: 0px 0px;
  background-repeat: repeat-y;
  padding-left: 1rem;
  letter-spacing: 0.15rem;
  overflow: hidden;
  transition: background 1.5s cubic-bezier(0, 0.59, 0.18, 1.01);
}
main.producto section.caracteristicas-producto .caract h4 {
  font-family: "gotham-bold", sans-serif;
  font-size: 0.8571428571rem;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.2s, opacity 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.2s;
}
main.producto section.caracteristicas-producto .caract p {
  margin-bottom: 0;
  font-size: 1.2857142857rem;
}
main.producto section.caracteristicas-producto .caract p span {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateX(-100%);
}
main.producto section.caracteristicas-producto .caract p span:nth-of-type(1) {
  transition: transform 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.5s, opacity 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.5s;
}
main.producto section.caracteristicas-producto .caract p span:nth-of-type(2) {
  transition: transform 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.8s, opacity 0.75s cubic-bezier(0, 0.59, 0.18, 1.01) 0.8s;
}
main.producto section.caracteristicas-producto .caract.anim-on {
  background-size: 1px 10px;
}
main.producto section.caracteristicas-producto .caract.anim-on h4 {
  opacity: 1;
  transform: translateX(0%);
}
main.producto section.caracteristicas-producto .caract.anim-on p span {
  opacity: 1;
  transform: translateX(0%);
}
main.producto section.caracteristicas-producto .caract.anim-off {
  background-size: 0px 0px;
}
main.producto section.caracteristicas-producto .caract.anim-off h4 {
  opacity: 1;
  transform: translateX(-100%);
}
main.producto section.caracteristicas-producto .caract.anim-off p span {
  opacity: 0;
  transform: translateX(-100%);
}
main.producto section.caracteristicas-producto .caract.tit {
  transform: translate(-30vw, -6vw);
  background: none;
  padding-left: 0;
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto .caract.tit {
    transform: translate(-30rem, -6rem);
  }
}
@media (max-width: 768px) {
  main.producto section.caracteristicas-producto .caract.tit {
    text-align: center;
  }
}
main.producto section.caracteristicas-producto .caract.tit p {
  background-image: linear-gradient(to bottom, rgb(207, 162, 74) 50%, rgba(11, 11, 11, 0) 50%);
  background-position: left;
  background-size: 0px 0px;
  background-repeat: repeat-y;
  padding-left: 1rem;
  transition: background 1.5s cubic-bezier(0, 0.59, 0.18, 1.01);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  main.producto section.caracteristicas-producto .caract.tit p {
    background: none;
    padding-left: 0;
  }
}
main.producto section.caracteristicas-producto .caract.tit p span.featured {
  display: block;
  font-family: "gotham-bold", sans-serif;
  font-size: 0.7857142857rem;
  padding-bottom: 0.5rem;
}
main.producto section.caracteristicas-producto .caract.tit.anim-on h2 {
  opacity: 1;
  transform: translateX(0%);
}
main.producto section.caracteristicas-producto .caract.tit.anim-on p {
  background-size: 1px 10px;
}
main.producto section.caracteristicas-producto .caract.tit.anim-off h2 {
  opacity: 1;
  transform: translateX(-100%);
}
main.producto section.caracteristicas-producto .caract.tit.anim-off p {
  background-size: 0px 0px;
}
main.producto section.caracteristicas-producto .caract.top {
  transform: translate(14vw, -24vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto .caract.top {
    transform: translate(14rem, -24rem);
  }
}
main.producto section.caracteristicas-producto .caract.heart {
  transform: translate(19vw, 2vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto .caract.heart {
    transform: translate(19rem, 2rem);
  }
}
main.producto section.caracteristicas-producto .caract.base {
  transform: translate(-9vw, 15vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto .caract.base {
    transform: translate(-9rem, 15rem);
  }
}
@media (max-width: 768px) {
  main.producto section.caracteristicas-producto .caract {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    top: auto;
    left: 50%;
    transform: translate(-50%, -6vw) !important;
    margin-bottom: 2rem;
  }
  main.producto section.caracteristicas-producto .caract:not(.tit) {
    left: 35%;
    transform: translate(0%, -9vw) !important;
  }
}
main.producto section.caracteristicas-producto.p2 .caract.tit {
  transform: translate(-31vw, -9vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p2 .caract.tit {
    transform: translate(-31rem, -9rem);
  }
}
main.producto section.caracteristicas-producto.p2 .caract.top {
  transform: translate(16vw, -25vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p2 .caract.top {
    transform: translate(16rem, -25rem);
  }
}
main.producto section.caracteristicas-producto.p2 .caract.heart {
  transform: translate(15vw, -1vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p2 .caract.heart {
    transform: translate(15rem, -1rem);
  }
}
main.producto section.caracteristicas-producto.p2 .caract.base {
  transform: translate(-26vw, 16vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p2 .caract.base {
    transform: translate(-26rem, 16rem);
  }
}
main.producto section.caracteristicas-producto.p3 .caract.tit {
  transform: translate(-34vw, -9vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p3 .caract.tit {
    transform: translate(-34rem, -9rem);
  }
}
main.producto section.caracteristicas-producto.p3 .caract.top {
  transform: translate(0vw, -23vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p3 .caract.top {
    transform: translate(0rem, -23rem);
  }
}
main.producto section.caracteristicas-producto.p3 .caract.heart {
  transform: translate(17vw, 6vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p3 .caract.heart {
    transform: translate(17rem, 6rem);
  }
}
main.producto section.caracteristicas-producto.p3 .caract.base {
  transform: translate(-24vw, 15vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p3 .caract.base {
    transform: translate(-24rem, 15rem);
  }
}
main.producto section.caracteristicas-producto.p4 .caract.tit {
  transform: translate(-29vw, -14vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p4 .caract.tit {
    transform: translate(-29rem, -14rem);
  }
}
main.producto section.caracteristicas-producto.p4 .caract.top {
  transform: translate(16vw, -21vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p4 .caract.top {
    transform: translate(16rem, -21rem);
  }
}
main.producto section.caracteristicas-producto.p4 .caract.heart {
  transform: translate(19vw, 4vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p4 .caract.heart {
    transform: translate(19rem, 4rem);
  }
}
main.producto section.caracteristicas-producto.p4 .caract.base {
  transform: translate(-17vw, 10vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p4 .caract.base {
    transform: translate(-17rem, 10rem);
  }
}
main.producto section.caracteristicas-producto.p5 .caract.tit {
  transform: translate(-31vw, -3vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p5 .caract.tit {
    transform: translate(-31rem, -3rem);
  }
}
main.producto section.caracteristicas-producto.p5 .caract.top {
  transform: translate(22vw, -16vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p5 .caract.top {
    transform: translate(22rem, -16rem);
  }
}
main.producto section.caracteristicas-producto.p5 .caract.heart {
  transform: translate(19vw, 3vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p5 .caract.heart {
    transform: translate(19rem, 3rem);
  }
}
main.producto section.caracteristicas-producto.p5 .caract.base {
  transform: translate(-15vw, 16vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p5 .caract.base {
    transform: translate(-15rem, 16rem);
  }
}
main.producto section.caracteristicas-producto.p6 .caract.tit {
  transform: translate(-25vw, -12vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p6 .caract.tit {
    transform: translate(-28vw, -23vw);
  }
}
main.producto section.caracteristicas-producto.p6 .caract.top {
  transform: translate(14vw, -22vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p6 .caract.top {
    transform: translate(14vw, -22vw);
  }
}
main.producto section.caracteristicas-producto.p6 .caract.heart {
  transform: translate(6vw, -4vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p6 .caract.heart {
    transform: translate(7vw, -6vw);
  }
}
main.producto section.caracteristicas-producto.p6 .caract.base {
  transform: translate(9vw, 19vw);
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto.p6 .caract.base {
    transform: translate(12vw, 24vw);
  }
}
main.producto section.caracteristicas-producto span.back {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01), transform 1s cubic-bezier(0, 0.59, 0.18, 1.01);
  will-change: opacity;
  opacity: calc(var(--ty) * 0.011);
  transform: scale(calc(var(--ty) * 0.2% + 78%));
}
main.producto section.caracteristicas-producto span.back > span {
  display: block;
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto span.back {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01);
    width: 100%;
    height: 60rem;
  }
  main.producto section.caracteristicas-producto span.back > span {
    height: 60rem;
  }
}
@media (max-width: 768px) {
  main.producto section.caracteristicas-producto span.back {
    height: 100vw;
  }
  main.producto section.caracteristicas-producto span.back > span {
    height: 100vw;
  }
}
@media (max-width: 576px) {
  main.producto section.caracteristicas-producto span.back {
    height: 120vw;
  }
  main.producto section.caracteristicas-producto span.back > span {
    height: 120vw;
  }
}
main.producto section.caracteristicas-producto span.back img {
  width: 100%;
}
@media (max-width: 1200px) {
  main.producto section.caracteristicas-producto span.back img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
@media (max-width: 768px) {
  main.producto section.caracteristicas-producto span.back::before {
    display: none;
  }
}
main.producto section.our-fragances {
  order: 4;
  margin-top: 0rem;
}
@media (max-width: 768px) {
  main.producto section.our-fragances {
    margin-top: 0rem;
    padding-top: 7rem;
  }
}
main.producto section.our-fragances.prod1 li:nth-of-type(2) {
  display: none;
}
main.producto section.our-fragances.prod2 li:nth-of-type(3) {
  display: none;
}
main.producto section.our-fragances.prod3 li:nth-of-type(4) {
  display: none;
}
main.producto section.our-fragances.prod4 li:nth-of-type(5) {
  display: none;
}
main.producto section.our-fragances.prod5 li:nth-of-type(6) {
  display: none;
}
main.producto section.our-fragances.prod6 li:nth-of-type(1) {
  display: none;
}
main.producto section.our-fragances ul {
  margin-bottom: 5.5rem;
}
main.our-universe {
  overflow: hidden;
  background-image: url(../images/fondo_our-universe.jpg);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-repeat: repeat;
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe {
    background-size: 150%;
  }
}
@media (max-width: 576px) {
  main.our-universe {
    background-size: 200%;
  }
}
main.our-universe section.intro {
  width: 85%;
  margin: 0 auto;
  text-align: center;
  font-family: "british_shorthair", sans-serif;
  font-size: 5.3571428571rem;
  line-height: 1.1;
  color: #CFA24A;
  padding: 10rem 0 7rem;
}
@media (max-width: 992px) {
  main.our-universe section.intro {
    font-size: 4.6428571429rem;
  }
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.intro {
    font-size: 3.9285714286rem;
  }
}
@media (max-width: 576px) {
  main.our-universe section.intro {
    font-size: 3.2142857143rem;
  }
}
main.our-universe section.intro p {
  opacity: 0;
  transform: scale(0.7);
  transition: transform 5s cubic-bezier(0, 0.59, 0.18, 1.01), opacity 5s cubic-bezier(0, 0.59, 0.18, 1.01);
}
main.our-universe section.intro.anim-on p {
  opacity: 1;
  transform: scale(1);
}
main.our-universe section.intro.anim-off p {
  opacity: 0;
  transform: scale(1.4);
}
main.our-universe section.bloque {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  width: 85%;
  max-width: 992px;
  padding-bottom: 7rem;
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque {
    align-items: center;
    padding-bottom: 5rem;
  }
}
@media (max-width: 576px) {
  main.our-universe section.bloque {
    padding-bottom: 2rem;
  }
}
main.our-universe section.bloque h2 {
  font-size: 5.7142857143rem;
  margin-bottom: 2rem;
  line-height: 7rem;
  text-transform: uppercase;
  letter-spacing: 2rem;
}
main.our-universe section.bloque h2.separate {
  overflow: visible;
}
main.our-universe section.bloque h2 > span {
  letter-spacing: 2rem;
  line-height: 7rem;
}
main.our-universe section.bloque h2 > span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 0s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 0s);
}
main.our-universe section.bloque h2 > span:nth-of-type(3) {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 0s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 0s);
}
main.our-universe section.bloque h2 > span:nth-of-type(4) {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 0s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 0s);
}
@media (max-width: 1200px) {
  main.our-universe section.bloque h2 {
    font-size: 3.9285714286rem;
    line-height: 6rem;
  }
}
@media (max-width: 992px) {
  main.our-universe section.bloque h2 {
    letter-spacing: 1.5rem;
    font-size: 3.1428571429rem;
    line-height: 4rem;
  }
  main.our-universe section.bloque h2 > span {
    line-height: 4rem;
  }
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque h2 {
    text-align: center;
    letter-spacing: 1rem;
  }
}
main.our-universe section.bloque p {
  font-size: 1.1428571429rem;
  width: 100%;
  max-width: calc(480px - 75px);
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque p {
    text-align: center;
  }
}
main.our-universe section.bloque p:nth-of-type(1) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.15s + 0.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.15s + 0.7s);
}
main.our-universe section.bloque p:nth-of-type(1) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.15s + 0.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.15s + 0.7s);
}
main.our-universe section.bloque p:nth-of-type(1) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.15s + 0.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.15s + 0.7s);
}
main.our-universe section.bloque p:nth-of-type(1) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.15s + 0.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.15s + 0.7s);
}
main.our-universe section.bloque p:nth-of-type(1) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.15s + 0.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.15s + 0.7s);
}
main.our-universe section.bloque p:nth-of-type(1) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.15s + 0.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.15s + 0.7s);
}
main.our-universe section.bloque p:nth-of-type(1) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.15s + 0.7s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.15s + 0.7s);
}
main.our-universe section.bloque p:nth-of-type(2) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.15s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.15s + 1.2s);
}
main.our-universe section.bloque p:nth-of-type(2) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.15s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.15s + 1.2s);
}
main.our-universe section.bloque p:nth-of-type(2) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.15s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.15s + 1.2s);
}
main.our-universe section.bloque p:nth-of-type(2) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.15s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.15s + 1.2s);
}
main.our-universe section.bloque p:nth-of-type(2) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.15s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.15s + 1.2s);
}
main.our-universe section.bloque p:nth-of-type(2) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.15s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.15s + 1.2s);
}
main.our-universe section.bloque p:nth-of-type(2) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.15s + 1.2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.15s + 1.2s);
}
main.our-universe section.bloque p:nth-of-type(3) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.15s + 2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.15s + 2s);
}
main.our-universe section.bloque p:nth-of-type(3) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.15s + 2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.15s + 2s);
}
main.our-universe section.bloque p:nth-of-type(3) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.15s + 2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.15s + 2s);
}
main.our-universe section.bloque p:nth-of-type(3) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.15s + 2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.15s + 2s);
}
main.our-universe section.bloque p:nth-of-type(3) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.15s + 2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.15s + 2s);
}
main.our-universe section.bloque p:nth-of-type(3) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.15s + 2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.15s + 2s);
}
main.our-universe section.bloque p:nth-of-type(3) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.15s + 2s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.15s + 2s);
}
main.our-universe section.bloque.scroll-up h2 > span:nth-of-type(3) {
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((3 - 3) * 0.2s + 1.2s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc((3 - 3) * 0.2s + 1.2s);
}
main.our-universe section.bloque.scroll-up h2 > span:nth-of-type(2) {
  transition: transform 1.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((3 - 2) * 0.2s + 1.2s), opacity 2s cubic-bezier(0, 0.59, 0.18, 1.01) calc((3 - 2) * 0.2s + 1.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.065s + 0.4s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.065s + 0.4s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.065s + 0.4s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.065s + 0.4s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.065s + 0.4s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.065s + 0.4s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.065s + 0.4s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.065s + 0.4s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.065s + 0.4s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.065s + 0.4s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.065s + 0.4s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.065s + 0.4s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.065s + 0.4s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.065s + 0.4s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.065s + 0.2s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.065s + 0.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.065s + 0.2s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.065s + 0.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.065s + 0.2s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.065s + 0.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.065s + 0.2s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.065s + 0.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.065s + 0.2s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.065s + 0.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.065s + 0.2s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.065s + 0.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(2) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.065s + 0.2s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.065s + 0.2s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.065s + 0s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.065s + 0s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.065s + 0s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.065s + 0s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.065s + 0s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.065s + 0s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.065s + 0s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.065s + 0s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.065s + 0s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.065s + 0s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.065s + 0s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.065s + 0s);
}
main.our-universe section.bloque.scroll-up > p:nth-of-type(3) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.065s + 0s), opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.065s + 0s);
}
main.our-universe section.bloque.anim-on h2 > span:not(.original) {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1200px) {
  main.our-universe section.bloque.anim-on h2 > span:not(.original) {
    left: 53%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1200px) {
  main.our-universe section.bloque.anim-on h2 > span:not(.original) {
    left: 50%;
  }
}
main.our-universe section.bloque.anim-on > p:nth-of-type(1) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.our-universe section.bloque.anim-on > p:nth-of-type(2) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.our-universe section.bloque.anim-on > p:nth-of-type(3) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.our-universe section.bloque.anim-off h2 > span:not(.original) {
  opacity: 0;
  transform: translateX(-100%);
}
main.our-universe section.bloque.anim-off > p:nth-of-type(1) span:not(.original) {
  opacity: 0;
  transform: translateY(-2rem);
}
main.our-universe section.bloque.anim-off > p:nth-of-type(2) span:not(.original) {
  opacity: 0;
  transform: translateY(-2rem);
}
main.our-universe section.bloque.anim-off > p:nth-of-type(3) span:not(.original) {
  opacity: 0;
  transform: translateY(-2rem);
}
main.our-universe section.bloque.b1 p:nth-of-type(3) {
  align-self: flex-end;
  text-align: right;
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque.b1 p:nth-of-type(3) {
    text-align: center;
    align-self: center;
  }
}
main.our-universe section.bloque.b1 .circle {
  top: 75%;
  left: 110%;
  width: 76rem;
  height: 76rem;
  max-width: initial;
  max-height: initial;
  min-width: initial;
  min-height: initial;
  transition: width 2s cubic-bezier(0, 0.59, 0.18, 1.01), height 2s cubic-bezier(0, 0.59, 0.18, 1.01);
}
@media (max-width: 992px) {
  main.our-universe section.bloque.b1 .circle {
    top: 60%;
    width: 65rem;
    height: 65rem;
  }
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque.b1 .circle {
    top: 55%;
    left: 115%;
    width: 50rem;
    height: 50rem;
  }
}
@media (max-width: 576px) {
  main.our-universe section.bloque.b1 .circle {
    top: 45%;
    left: 120%;
    width: 40rem;
    height: 40rem;
  }
}
main.our-universe section.bloque.b2 {
  align-items: flex-end;
  text-align: right;
  margin-bottom: 0 !important;
  padding-bottom: 2rem;
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque.b2 {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 576px) {
  main.our-universe section.bloque.b2 {
    margin-bottom: 5rem;
  }
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque.b2 h2 {
    letter-spacing: 0.5rem;
  }
  main.our-universe section.bloque.b2 h2 > span {
    letter-spacing: 0.5rem;
  }
}
@media (max-width: 576px) {
  main.our-universe section.bloque.b2 h2 {
    letter-spacing: 0.2rem;
  }
  main.our-universe section.bloque.b2 h2 > span {
    letter-spacing: 0.2rem;
  }
}
main.our-universe section.bloque.b2 h2 > span:nth-of-type(2) {
  transform: translateX(100%);
}
@media (max-width: 1200px) {
  main.our-universe section.bloque.b2 h2 > span:nth-of-type(2) {
    left: 50%;
  }
}
main.our-universe section.bloque.b2 h2 > span:nth-of-type(3) {
  transform: translateX(100%);
}
@media (max-width: 1200px) {
  main.our-universe section.bloque.b2 h2 > span:nth-of-type(3) {
    left: 50%;
  }
}
main.our-universe section.bloque.b2 p {
  z-index: 11;
}
main.our-universe section.bloque.b2::after {
  width: 200vw;
  transform: translateX(-50%);
}
main.our-universe section.bloque.b2 .circle2 {
  top: 50%;
  left: -20%;
  width: 50rem;
  height: 50rem;
  max-width: initial;
  max-height: initial;
  min-width: initial;
  min-height: initial;
  transition: width 2s cubic-bezier(0, 0.59, 0.18, 1.01), height 2s cubic-bezier(0, 0.59, 0.18, 1.01), top 2s cubic-bezier(0, 0.59, 0.18, 1.01);
  z-index: 100;
}
@media (max-width: 992px) {
  main.our-universe section.bloque.b2 .circle2 {
    top: 40%;
  }
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.bloque.b2 .circle2 {
    top: 30%;
    left: -15%;
    width: 30rem;
    height: 30rem;
  }
}
main.our-universe section.bloque.b2.anim-on h2 > span:not(.original) {
  transform: translateX(0);
}
@media (max-width: 1200px) {
  main.our-universe section.bloque.b2.anim-on h2 > span:not(.original) {
    transform: translateX(-50%);
  }
}
main.our-universe section.bloque.b2.anim-off h2 > span:not(.original) {
  transform: translateX(100%);
}
main.our-universe section.imago {
  margin-bottom: 7rem;
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.imago {
    margin-bottom: 3rem;
  }
}
@media (max-width: 576px) {
  main.our-universe section.imago {
    margin-bottom: 1rem;
  }
}
main.our-universe section.imago img {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 50%;
  max-width: 25rem;
}
@media (max-width: 576px) {
  main.our-universe section.imago img {
    width: 60%;
  }
}
main.our-universe section.our-universe {
  position: relative;
  background: #0b0b0b;
  padding-top: 3.5rem;
}
main.our-universe section.our-universe .imago {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  main.our-universe section.our-universe .imago {
    width: 100%;
  }
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.our-universe .imago {
    width: 110%;
    margin-top: 0rem;
  }
}
main.our-universe section.our-universe p {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 1.1428571429rem;
  width: 85%;
  max-width: calc(calc(768px + 100px) - 200px);
  letter-spacing: 0.1rem;
  line-height: 1.5rem;
  text-align: center;
}
@media (max-width: calc(768px + 100px)) {
  main.our-universe section.our-universe p {
    position: relative;
    top: -4.8rem;
  }
}
main.our-universe section.our-universe p:nth-of-type(1) span:not(.original):nth-of-type(2) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(2 * 0.1s + 1.1s);
}
main.our-universe section.our-universe p:nth-of-type(1) span:not(.original):nth-of-type(3) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(3 * 0.1s + 1.1s);
}
main.our-universe section.our-universe p:nth-of-type(1) span:not(.original):nth-of-type(4) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(4 * 0.1s + 1.1s);
}
main.our-universe section.our-universe p:nth-of-type(1) span:not(.original):nth-of-type(5) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(5 * 0.1s + 1.1s);
}
main.our-universe section.our-universe p:nth-of-type(1) span:not(.original):nth-of-type(6) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(6 * 0.1s + 1.1s);
}
main.our-universe section.our-universe p:nth-of-type(1) span:not(.original):nth-of-type(7) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(7 * 0.1s + 1.1s);
}
main.our-universe section.our-universe p:nth-of-type(1) span:not(.original):nth-of-type(8) {
  opacity: 0;
  transform: translateY(1rem);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 1.1s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc(8 * 0.1s + 1.1s);
}
main.our-universe section.our-universe.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(8) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 8) * 0.075s + 0.4s);
}
main.our-universe section.our-universe.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(7) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 7) * 0.075s + 0.4s);
}
main.our-universe section.our-universe.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(6) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 6) * 0.075s + 0.4s);
}
main.our-universe section.our-universe.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(5) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 5) * 0.075s + 0.4s);
}
main.our-universe section.our-universe.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(4) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 4) * 0.075s + 0.4s);
}
main.our-universe section.our-universe.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(3) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 3) * 0.075s + 0.4s);
}
main.our-universe section.our-universe.scroll-up > p:nth-of-type(1) span:not(.original):nth-of-type(2) {
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.4s), opacity 1s cubic-bezier(0, 0.59, 0.18, 1.01) calc((8 - 2) * 0.075s + 0.4s);
}
main.our-universe section.our-universe.anim-on > p:nth-of-type(1) span:not(.original) {
  opacity: 1;
  transform: translateY(0);
}
main.our-universe section.our-universe.anim-off > p:nth-of-type(1) span:not(.original) {
  opacity: 0;
  transform: translateY(-100%);
}
main.legal {
  max-width: 1200px;
  width: 90%;
}
main.legal h1 {
  text-align: center;
  font-family: "gotham-medium", sans-serif;
  margin: 2rem 0 3rem;
  color: #CFA24A;
}
main.legal h2 {
  font-family: "gotham-medium", sans-serif;
  margin: 2rem 0 1rem;
  color: #CFA24A;
}
main.legal h3 {
  font-family: "gotham-book", sans-serif;
  color: #CFA24A;
  margin: 2rem 0 1rem;
}
main.legal h4 {
  font-family: "gotham-medium", sans-serif;
  padding-left: 0.5rem;
  color: #CFA24A;
}
main.legal p {
  padding-left: 1rem;
}
main.legal ul {
  padding-left: 3rem;
  list-style: disc;
}
main.legal ul li {
  line-height: 1.5;
  margin-bottom: 1rem;
}
main.legal div.table {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: calc(768px + 100px);
}
main.legal div.table div {
  display: flex;
  flex-direction: column;
}
main.legal div.table div span {
  width: 100%;
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}
main.legal div.table div:nth-of-type(1) {
  white-space: nowrap;
}
main.legal div.table div:nth-of-type(2) span {
  border-left: 1px solid #DECAA2;
}
main.legal a {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 3rem 3%;
}
footer .logo-footer {
  text-align: center;
  font-family: "gotham-medium", sans-serif;
  letter-spacing: 0.15rem;
  color: #CFA24A;
  font-size: 0.8571428571rem;
  margin-bottom: 2rem;
}
footer .logo-footer img {
  width: 13rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  footer .logo-footer {
    margin-bottom: 1.5rem;
  }
}
footer nav {
  font-family: "gotham-book", sans-serif;
  color: #CFA24A;
  font-size: 0.7857142857rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  62% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes parpadeo2 {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  26% {
    opacity: 0;
  }
  27% {
    opacity: 1;
  }
  32% {
    opacity: 0;
  }
  38% {
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  43% {
    opacity: 0;
  }
  44% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.separate {
  position: relative;
  overflow: hidden;
}
.separate span {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
}
.separate span.original {
  position: relative;
  opacity: 0;
  transform: translate(0%, 0%);
}
.separate span:nth-of-type(1) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 50%);
}
.separate.lines2 span:nth-of-type(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 50%);
}
.separate.lines2 span:nth-of-type(3) {
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}
.separate.lines3 span:nth-of-type(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
          clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.separate.lines3 span:nth-of-type(3) {
  -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 66%, 0 66%);
          clip-path: polygon(0 33%, 100% 33%, 100% 66%, 0 66%);
}
.separate.lines3 span:nth-of-type(4) {
  -webkit-clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
          clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}
.separate.lines4 span:nth-of-type(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%);
          clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%);
}
.separate.lines4 span:nth-of-type(3) {
  -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 50%, 0 50%);
          clip-path: polygon(0 25%, 100% 25%, 100% 50%, 0 50%);
}
.separate.lines4 span:nth-of-type(4) {
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
          clip-path: polygon(0 50%, 100% 50%, 100% 75%, 0 75%);
}
.separate.lines4 span:nth-of-type(5) {
  -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
          clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
}
.separate.lines5 span:nth-of-type(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
          clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
}
.separate.lines5 span:nth-of-type(3) {
  -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
          clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
}
.separate.lines5 span:nth-of-type(4) {
  -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
          clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
}
.separate.lines5 span:nth-of-type(5) {
  -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
          clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}
.separate.lines5 span:nth-of-type(6) {
  -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
          clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
}
.separate.lines6 span:nth-of-type(2) {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 16.66%, 0 16.66%);
          clip-path: polygon(0 0, 100% 0, 100% 16.66%, 0 16.66%);
}
.separate.lines6 span:nth-of-type(3) {
  -webkit-clip-path: polygon(0 16.66%, 100% 16.66%, 100% 33.32%, 0 33.32%);
          clip-path: polygon(0 16.66%, 100% 16.66%, 100% 33.32%, 0 33.32%);
}
.separate.lines6 span:nth-of-type(4) {
  -webkit-clip-path: polygon(0 33.32%, 100% 33.32%, 100% 49.98%, 0 49.98%);
          clip-path: polygon(0 33.32%, 100% 33.32%, 100% 49.98%, 0 49.98%);
}
.separate.lines6 span:nth-of-type(5) {
  -webkit-clip-path: polygon(0 49.98%, 100% 49.98%, 100% 66.64%, 0 66.64%);
          clip-path: polygon(0 49.98%, 100% 49.98%, 100% 66.64%, 0 66.64%);
}
.separate.lines6 span:nth-of-type(6) {
  -webkit-clip-path: polygon(0 66.64%, 100% 66.64%, 100% 83.3%, 0 83.3%);
          clip-path: polygon(0 66.64%, 100% 66.64%, 100% 83.3%, 0 83.3%);
}
.separate.lines6 span:nth-of-type(7) {
  -webkit-clip-path: polygon(0 83.3%, 100% 83.3%, 100% 100%, 0 100%);
          clip-path: polygon(0 83.3%, 100% 83.3%, 100% 100%, 0 100%);
}/*# sourceMappingURL=estilos.css.map */