/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
.hamburger {
  padding: 0.3rem 0.3rem;
  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: black;
}

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 2rem;
  height: 3px;
  background-color: black;
  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: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * 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, 9px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 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, 9px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 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, 9px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 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, 9px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 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, 9px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 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, 9px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 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: -18px;
  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, -9px, 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: -18px;
  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, -9px, 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.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 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, -18px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 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, -18px, 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: 9px;
  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: 9px;
  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.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 18px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-0.2857142857rem, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 18px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(0.2857142857rem, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 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.5px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 9px;
  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: 18px;
  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, 9px, 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, 9px, 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: -18px;
  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, -9px, 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: "book";
  src: url("fonts/satoshi-regular-webfont.woff2") format("woff2"), url("fonts/satoshi-regular-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "medium";
  src: url("fonts/satoshi-medium-webfont.woff2") format("woff2"), url("fonts/satoshi-medium-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "bold";
  src: url("fonts/satoshi-bold-webfont.woff2") format("woff2"), url("fonts/satoshi-bold-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "black";
  src: url("fonts/satoshi-black-webfont.woff2") format("woff2"), url("fonts/satoshi-black-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
body, html {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  font-family: "book", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 14px;
  color: white;
  background: black;
  scroll-behavior: smooth;
  letter-spacing: 0;
  overflow-x: clip;
}

* {
  box-sizing: border-box !important;
}

a {
  text-decoration: none;
  color: inherit;
}

p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}
p strong {
  font-family: "medium";
}
p b {
  font-family: "medium";
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, p {
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 1rem;
  line-height: 1.2;
}

input[type=submit]:not(.search-submit), input[type=submit].wpcf7-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0px solid transparent;
  outline: 0px solid transparent;
  background: white;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: black;
  font-family: "book", sans-serif !important;
  font-weight: 100 !important;
  font-style: normal;
  font-size: 1.14rem !important;
  padding: 0.133rem 0.45rem;
  border-radius: 1rem;
  border: 1px solid white;
}
input[type=submit]:not(.search-submit):hover, input[type=submit].wpcf7-submit:hover {
  background: black;
  color: white;
}
input[type=text], input[type=search], input[type=email], input[type=tel], input[type=number] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: block;
  width: 100%;
  color: black;
  background: white;
  padding: 0.2em 0.75em;
  border: 1px solid black;
  outline: 0px solid transparent;
  border-radius: 3em;
}
@media (max-width: 576px) {
  input[type=text], input[type=search], input[type=email], input[type=tel], input[type=number] {
    padding: 0.15em 0.75em;
  }
}
@media (max-width: 468px) {
  input[type=text], input[type=search], input[type=email], input[type=tel], input[type=number] {
    padding: 0.1em 0.75em;
  }
}
input[type=search] {
  font-family: "Abril Fatface", serif;
}
input[type=search]::-ms-clear, input[type=search]::-ms-reveal {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none !important;
}
input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: grid;
  place-content: center;
  background-color: transparent;
  margin: 0;
  width: 1.57rem;
  height: 1.57rem;
  cursor: pointer;
  border-radius: 0.25rem;
  border: 1px solid white;
}
input[type=checkbox]::before {
  content: "";
  width: 0.86rem;
  height: 0.86rem;
  transform: scale(0);
  transition: transform 0.1s ease-in-out;
  border-radius: 100%;
  box-shadow: inset 1em 1em white;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: block;
  width: 100%;
  color: black;
  background: white;
  padding: 0.2em 0.75em;
  border: 0px solid transparent;
  outline: 0px solid transparent;
  border-radius: 1em;
  resize: none;
}
@media (max-width: 576px) {
  textarea {
    padding: 0.15em 0.75em;
  }
}
@media (max-width: 468px) {
  textarea {
    padding: 0.1em 0.75em;
  }
}

select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid white;
  outline: none;
  font-family: "book", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.43rem;
  background: transparent;
  padding: 0.33rem 2rem 0.33rem 0.8rem;
  border-radius: 1rem;
  color: white;
  background: black;
}

.d-none {
  display: none !important;
}
.d-block {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media (max-width: 468px) {
  .d-xs-none {
    display: none !important;
  }
}
@media (max-width: 468px) {
  .d-xs-block {
    display: block !important;
  }
}

.menu-rrss {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.menu-rrss li {
  position: relative;
  width: 2rem;
  height: 2rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s cubic-bezier(0, 0.91, 0.72, 1.15), filter 0.5s linear;
  cursor: pointer;
}
.menu-rrss li.fb {
  background-image: url("../images/ic_fb.svg");
}
.menu-rrss li.inst {
  background-image: url("../images/ic_inst.svg");
}
.menu-rrss li.wsp {
  background-image: url("../images/ic_wsp.svg");
}
.menu-rrss li.vim {
  background-image: url("../images/ic_vimeo.svg");
}
.menu-rrss li.yt {
  background-image: url("../images/ic_yt.svg");
}
.menu-rrss li.x {
  background-image: url("../images/ic_x.svg");
}
.menu-rrss li.tt {
  background-image: url("../images/ic_tiktok.svg");
}
.menu-rrss li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
}

:root {
  --borderRadius: 2rem;
}

.f-title {
  font-family: "Abril Fatface", serif;
}

.c-white {
  color: white;
}
.c-black {
  color: black;
}
.c-red {
  color: red;
}

.t-title85 {
  font-size: 6.07rem;
}
@media (max-width: 768px) {
  .t-title85 {
    font-size: 5.36rem;
  }
}
@media (max-width: 576px) {
  .t-title85 {
    font-size: 5rem;
  }
}
.t-title {
  font-size: 3.57rem;
}
@media (max-width: 768px) {
  .t-title {
    font-size: 3.29rem;
  }
}
@media (max-width: 576px) {
  .t-title {
    font-size: 3rem;
  }
}
.t-title41 {
  font-size: 2.93rem;
}
@media (max-width: 768px) {
  .t-title41 {
    font-size: 2.71rem;
  }
}
.t-title36 {
  font-size: 2.57rem;
}
@media (max-width: 768px) {
  .t-title36 {
    font-size: 2.43rem;
  }
}
.t-title28 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .t-title28 {
    font-size: 1.86rem;
  }
}
.t-text24 {
  font-size: 1.71rem;
}
.t-text20 {
  font-size: 1.43rem;
}
.t-text18 {
  font-size: 1.29rem;
}
.t-text16 {
  font-size: 1.14rem;
}
.t-text12 {
  font-size: 0.86rem;
}
.t-text10 {
  font-size: 0.71rem;
}
.t-bold {
  font-family: "bold", sans-serif;
}
.t-medium {
  font-family: "medium", sans-serif;
}
.t-black {
  font-family: "black", sans-serif;
}
.t-upper {
  text-transform: uppercase;
}
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.t-cap {
  text-transform: capitalize;
}

.t-bg,
.btn-bg > a {
  border: 2px solid black;
  background: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: calc(0.45em - 2px) calc(1.2em - 2px);
  border-radius: 1em;
}
.t-bg-w,
.btn-bg > a-w {
  background: white;
  color: black;
}
.t-bg-g,
.btn-bg > a-g {
  background: #02af3e;
  border: 2px solid #02af3e;
}

.t-bg2 {
  border: 2px solid black;
  background: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 0.7em 0.2em 0.7em;
  border-radius: 1em;
}
.t-bg2-w {
  background: white;
  color: black;
}
.t-bg2-g {
  background: #02af3e;
  border: 2px solid #02af3e;
}

.t-bg3 {
  border: 2px solid black;
  background: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1em 0.4em 0.2em 0.4em;
  border-radius: 1em;
}
.t-bg3-w {
  background: white;
  color: black;
}
.t-bg3-g {
  background: #02af3e;
  border: 2px solid #02af3e;
}

.t-bg--w {
  background: white;
  color: black;
}

.t-bg--g {
  background: #02af3e;
}

.t-bg--border {
  border: 2px solid white;
}

.bg-white {
  background: white;
  color: black;
}
.bg-grey {
  background: #f3f3f3;
  color: black;
}
.bg-black {
  background: black;
  color: white;
}

.ls-0 {
  letter-spacing: 0;
}
.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}

.lh-05 {
  line-height: 0.5;
}
.lh-1 {
  line-height: 1;
}
.lh-125 {
  line-height: 1.25;
}
.lh-15 {
  line-height: 1.5;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-05 {
  margin-bottom: 0.5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-15 {
  margin-bottom: 1.5rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-25 {
  margin-bottom: 2.5rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.m-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-05 {
  margin-top: 0.5rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-15 {
  margin-top: 1.5rem;
}
.mt-2 {
  margin-top: 2rem;
}

.p-0 {
  padding: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 1em !important;
}
.pb-2 {
  padding-bottom: 2em !important;
}

.btn {
  cursor: pointer;
  letter-spacing: 0;
  text-decoration: none;
}
.btn--t-bg {
  display: block;
  overflow: hidden;
  border: 2px solid black;
  background: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: calc(0.45em - 2px) calc(1.2em - 2px);
  border-radius: 1em;
}
.btn--t-bg-w {
  background: white;
  color: black;
}
.btn--t-bg-g {
  background: #02af3e;
  border: 2px solid #02af3e;
}
.btn--t-bg span {
  position: relative;
  display: block;
}
.btn--bg-w {
  background: white;
  color: black;
}
.btn--bg-g {
  background: #02af3e;
}
.btn--bg-border {
  background: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: calc(0.33em - 2px) calc(0.66em - 2px);
  border-radius: 1em;
}
.btn--bg-border-w {
  background: white;
  color: black;
}
.btn--bg-border-g {
  background: #02af3e;
  border: 2px solid #02af3e;
}
.btn--bg-border {
  background: transparent !important;
  border: 2px solid white !important;
}
.btn--bg-border-w {
  border: 2px solid white !important;
}
.btn--arrow {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  z-index: 1;
  transition: color 0.25s cubic-bezier(0, 0.91, 0.72, 1.15), transform 0.25s cubic-bezier(0.68, 0, 0.32, 1.06), padding 0.25s cubic-bezier(0.68, 0, 0.32, 1.06);
}
.btn--arrow::before {
  content: "";
  display: block;
  position: relative;
  width: 1.43rem;
  height: 1.43rem;
  top: 0;
  left: 0;
  background: transparent;
  background-image: url(../images/arrow-circle-b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  transition: left 0.25s cubic-bezier(0, 0.91, 0.72, 1.15), margin 0.25s cubic-bezier(0, 0.91, 0.72, 1.15);
  z-index: 1;
}
.btn--arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 1.1rem;
  background: white;
  border-radius: var(--borderRadius);
  z-index: -1;
  transition: width 0.25s cubic-bezier(0, 0.91, 0.72, 1.15);
}
@media (hover: hover) {
  .btn--arrow:hover {
    color: black;
    transform: translateX(-1em);
  }
  .btn--arrow:hover::before {
    left: calc(100% + 0.5rem);
  }
  .btn--arrow:hover::after {
    width: calc(100% + 1.1rem);
  }
}
.btn--arrow-inv::before {
  transform: scaleX(1) !important;
}
.btn--arrow-w::before {
  background-image: url(../images/arrow-circle.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--arrow-inverse {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  z-index: 1;
  transition: color 0.25s;
}
.btn--arrow-inverse::after {
  content: "";
  display: block;
  position: relative;
  width: 1.43rem;
  height: 1.43rem;
  top: 0;
  left: 0;
  background: transparent;
  background-image: url(../images/arrow-circle.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: left 0.25s cubic-bezier(0, 0.91, 0.72, 1.15), margin 0.25s cubic-bezier(0, 0.91, 0.72, 1.15);
  z-index: 1;
}
.btn--arrow-inverse::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 100%;
  background: white;
  border-radius: var(--borderRadius);
  z-index: -1;
  transition: width 0.25s cubic-bezier(0, 0.91, 0.72, 1.15), left 0.25s cubic-bezier(0, 0.91, 0.72, 1.15);
}
@media (hover: hover) {
  .btn--arrow-inverse:hover {
    color: black;
    transform: translateX(1rem);
  }
  .btn--arrow-inverse:hover::after {
    left: calc(-100% - 0.35rem);
  }
  .btn--arrow-inverse:hover::before {
    width: calc(100% + 1.1rem);
  }
}

.flex {
  display: flex !important;
  align-items: center;
  gap: 1rem;
}
.flex--center {
  justify-content: center;
}
.flex--nowrap {
  flex-wrap: nowrap;
}
.flex--column {
  flex-direction: column;
}

.ic::before {
  content: "";
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  top: auto;
  left: auto;
  background: transparent;
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
  transform: translateY(0.15em);
  margin-right: 0.5em;
}
.ic--map::before {
  background-image: url(../images/ic_map.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ic--time::before {
  background-image: url(../images/ic_time.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ic--tel::before {
  background-image: url(../images/ic_tel.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ic--date::before {
  background-image: url(../images/ic_date.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ic--arrow::before {
  content: "";
  display: block;
  position: relative;
  width: 0.93rem;
  height: 0.79rem;
  top: auto;
  left: auto;
  background: transparent;
  display: inline-block;
  background-image: url(../images/arrow-down-b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ic--circle::before {
  content: "";
  display: block;
  position: relative;
  width: 1rem;
  height: 1rem;
  top: auto;
  left: auto;
  background: green;
  display: inline-block;
  border-radius: 100%;
}
.ic--circle-red::before {
  background-color: red;
  border-radius: 100%;
}
.ic--circle-green::before {
  background-color: green;
  border-radius: 100%;
}

.times_mobile {
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.times_mobile .btn {
  order: 2;
}
@media (max-width: 468px) {
  .times_mobile {
    padding: 1rem;
  }
  .times_mobile div:nth-of-type(2) {
    display: none;
  }
}
.times_mobile > * {
  white-space: nowrap;
}

.wrapper {
  width: 90%;
  max-width: calc(992px + 100px);
  margin-left: auto;
  margin-right: auto;
}
.wrapper-md {
  width: 100%;
  max-width: calc(768px + 50px);
}
.wrapper-sm {
  width: 100%;
  max-width: 576px;
}

.header {
  padding: 1.93rem 1.93rem 0;
  background: white;
  z-index: 10;
}
.header.close {
  padding-bottom: -5px;
}
.header.close .header__ribbon {
  height: 0;
  padding: 0;
}
.header .header__desktop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
}
.header__ribbon {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  line-height: 1em;
  padding: 0.5em 3rem;
  opacity: 0;
  margin-top: 1.93rem;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.15s ease;
}
@media (max-width: 576px) {
  .header__ribbon {
    padding: 0.5em 3rem 0.5em 2em;
    text-align: left;
  }
}
.header__ribbon__close {
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__ribbon__close {
    right: 1em;
  }
}
.header #menu-principal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -0.15em;
  gap: 2rem;
}
@media (max-width: 992px) {
  .header #menu-principal {
    gap: 1rem;
  }
}
.header #menu-principal li {
  flex: 0;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "medium", sans-serif;
  white-space: nowrap;
}
.header #menu-principal li:not(.btn-bg)::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 1px;
  top: auto;
  left: 50%;
  background: black;
  bottom: -3px;
  transition: width 0.33s cubic-bezier(0, 0.91, 0.72, 1.15);
  transform: translateX(-50%);
}
.header #menu-principal li:not(.btn-bg):hover::before {
  width: 75%;
}
.header #menu-principal li:not(.btn-bg).current_page_item::before {
  width: 75%;
}
@media (max-width: 992px) {
  .header #menu-principal li {
    display: none;
  }
}
.header #menu-principal li.horarios .ic {
  margin-bottom: 0.1em;
}
.header #menu-principal li.horarios::before {
  display: none;
}
.header #menu-principal li.horarios:hover .ic {
  background: black;
  color: white;
}
.header #menu-principal li.logo {
  text-align: center;
  color: transparent;
  flex: 1;
  transition: background 0.5s ease;
}
@media (max-width: 992px) {
  .header #menu-principal li.logo {
    margin-left: calc(-2rem - 2em);
    display: flex;
  }
}
.header #menu-principal li.logo a {
  position: relative;
  display: block;
  content: "";
  display: block;
  position: relative;
  width: 9.64rem;
  height: 2.36rem;
  top: auto;
  left: auto;
  background: transparent;
  background-image: url(../images/logo_arena.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.header #menu-principal li.logo::before {
  display: none;
}
.header #menu-principal li.kids_xperience a {
  display: flex;
  align-items: center;
  gap: 0.33em;
}
@media (max-width: 992px) {
  .header #menu-principal li.kids_xperience a {
    display: none;
  }
}
.header #menu-principal li.btn-bg > a span {
  position: relative;
  display: block;
}
.header .menu-rrss {
  justify-content: flex-start;
  margin-top: 5rem;
}
.header__menu {
  position: relative;
  align-self: center;
  width: 100%;
}
.header__menu .menu {
  display: flex;
  gap: 0.33rem;
}
.header__menu--mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 468px;
  min-height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.68, 0, 0.32, 1.06);
  color: black;
  z-index: 100;
  background: black;
  gap: 0.5rem;
}
.header__menu--mobile.is-active {
  transform: translateX(0%);
  position: absolute;
  height: 100%;
}
.header__menu--mobile .wrap-mobile {
  position: absolute;
  top: 7.14rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
}
.header__menu--mobile .menu {
  color: white;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.header__menu--mobile .menu li {
  font-family: "Abril Fatface", serif;
  text-transform: none;
  font-size: 2.36rem;
  white-space: nowrap;
}
.header__menu--mobile .menu li.separador {
  font-family: "medium", sans-serif;
  font-size: 1.14rem;
  margin-top: 2rem;
}
.header__menu--mobile .menu li.kids_xperience img {
  height: 0.9em;
  transform: translateY(2px);
}
.header__menu--mobile .btn-bg {
  font-family: inherit !important;
  font-size: 1.57rem !important;
  margin-top: 1rem;
}
.header__menu--mobile .btn-bg > a {
  position: relative;
  display: block;
  background: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 0.7em 0.2em 0.7em;
  border-radius: 1em;
}
.header__menu--mobile .btn-bg > a-w {
  background: white;
  color: black;
}
.header__menu--mobile .btn-bg > a-g {
  background: #02af3e;
  border: 2px solid #02af3e;
}
.header__menu--mobile .btn-bg > a {
  color: black;
  background: white;
  font-family: "medium", sans-serif;
}
.header__menu--mobile .btn-bg > a span {
  position: relative;
  display: block;
  white-space: nowrap;
}
.header .header__hamburger {
  position: relative;
  z-index: 1000;
}
.header .header__hamburger.is-active .hamburger-inner,
.header .header__hamburger.is-active .hamburger-inner::before,
.header .header__hamburger.is-active .hamburger-inner::after {
  background: white;
}

.footer {
  padding: 3.57rem 0;
}
.footer__logos {
  position: relative;
  display: block;
  max-width: 26.79rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75em;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 468px) {
  .footer__logos {
    max-width: 90%;
  }
}
.footer .menu-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 576px) {
  .footer .menu-legal {
    flex-direction: column;
  }
}
.footer .menu-legal li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .menu-legal li:not(:last-of-type)::after {
  content: "";
  display: block;
  position: relative;
  width: 1.25px;
  height: 0.8em;
  top: auto;
  left: 0.5rem;
  background: white;
}
@media (max-width: 576px) {
  .footer .menu-legal li:not(:last-of-type)::after {
    display: none;
  }
}
.footer .menu-legal li:not(:last-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 1px;
  top: auto;
  left: 50%;
  background: white;
  bottom: -3px;
  transition: width 0.33s cubic-bezier(0, 0.91, 0.72, 1.15);
  transform: translateX(-50%);
}
.footer .menu-legal li:not(:last-of-type):hover::before {
  width: 75%;
}
.footer .menu-legal li:not(:last-of-type).current_page_item::before {
  width: 75%;
}
.footer .menu-legal li a {
  font-size: 1rem;
}

main.servicios section {
  padding: 2.14rem 0 !important;
}
main section {
  padding: 5.36rem 0;
}
main section.pt-0 {
  padding-bottom: 7.14rem !important;
}
main .card {
  --padd: 1.5em;
  position: relative;
  display: block;
  border-radius: var(--borderRadius);
  overflow: hidden;
  box-shadow: 0px 0.5em 0.5em rgba(0, 0, 0, 0.15);
}
main .card__image {
  position: relative;
  display: block;
  width: 100%;
  height: 14.29rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main .card__content {
  padding: var(--padd);
}
main .card__content > * {
  z-index: 5;
}
main .card__content__bg {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 468px) {
  main .card__wrap-btns {
    flex-direction: column;
  }
}
main .card--block {
  --padd: 2em;
}
main .card--block .card__cats {
  display: flex;
  gap: 0.5em;
  justify-content: center;
}
main .card--block .card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
main .card--block .card__content {
  position: relative;
  height: 100%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main .card--block .card__content::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.33);
  z-index: -1;
}
main .card--content-block {
  display: flex;
  justify-content: center;
  box-shadow: none;
}
main .card--content-block .card__text > p {
  font-size: 1.29rem;
  line-height: 1.33;
}
main .card--content-block .card__text > p:last-of-type {
  margin-bottom: 0;
}
main .card--content-block.normal {
  background: white;
  margin-bottom: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  main .card--content-block.normal {
    align-items: initial;
  }
}
@media (max-width: 768px) {
  main .card--content-block.normal {
    flex-direction: column !important;
  }
}
main .card--content-block.normal:nth-of-type(even) {
  flex-direction: row-reverse;
}
main .card--content-block.normal:nth-of-type(even) .card__wrap-image {
  justify-content: flex-start;
}
main .card--content-block.normal:nth-of-type(even) .card__content {
  padding-right: 2.5rem;
  padding-left: 5rem;
}
@media (max-width: 768px) {
  main .card--content-block.normal:nth-of-type(even) .card__content {
    padding-left: 2.5rem;
  }
}
main .card--content-block.normal:nth-of-type(even) .card__title, main .card--content-block.normal:nth-of-type(even) .card__text > p {
  text-align: right;
}
@media (max-width: 768px) {
  main .card--content-block.normal:nth-of-type(even) .card__title, main .card--content-block.normal:nth-of-type(even) .card__text > p {
    text-align: left;
  }
}
main .card--content-block.normal .card__wrap-image {
  position: relative;
  width: 30%;
  height: auto;
  min-height: 25rem;
}
@media (max-width: 768px) {
  main .card--content-block.normal .card__wrap-image {
    width: 100%;
    min-height: 14.29rem;
  }
}
main .card--content-block.normal .card__image {
  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 .card--content-block.normal .card__content {
  width: 70%;
  padding: 2.5rem;
  padding-right: 5rem;
}
@media (max-width: 768px) {
  main .card--content-block.normal .card__content {
    width: 100%;
    padding-right: 2.5rem;
  }
}
main .card--content-block.line {
  border-radius: 0;
  gap: 5rem;
  padding: 3rem 0;
}
main .card--content-block.line::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: black;
}
@media (max-width: 768px) {
  main .card--content-block.line::after {
    display: none;
  }
}
@media (max-width: 768px) {
  main .card--content-block.line {
    flex-direction: column !important;
    gap: 2rem;
    padding: 2rem 0;
  }
}
main .card--content-block.line:nth-of-type(odd) {
  flex-direction: row-reverse;
}
main .card--content-block.line:nth-of-type(odd) .card__wrap-image {
  justify-content: flex-start;
}
main .card--content-block.line:nth-of-type(odd) .card__title, main .card--content-block.line:nth-of-type(odd) .card__text > p {
  text-align: right;
}
@media (max-width: 768px) {
  main .card--content-block.line:nth-of-type(odd) .card__title, main .card--content-block.line:nth-of-type(odd) .card__text > p {
    text-align: left;
  }
}
main .card--content-block.line .card__wrap-image {
  width: calc(50% - 2.5rem);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  main .card--content-block.line .card__wrap-image {
    width: 100%;
  }
}
main .card--content-block.line .card__image {
  width: 100%;
  max-width: 25.71rem;
  height: auto;
  border-radius: var(--borderRadius);
}
@media (max-width: 768px) {
  main .card--content-block.line .card__image {
    max-width: 100%;
    max-height: 14.29rem;
  }
}
main .card--content-block.line .card__content {
  width: calc(50% - 2.5rem);
  padding: 0;
}
@media (max-width: 768px) {
  main .card--content-block.line .card__content {
    width: 100%;
  }
}
main .card--service {
  width: calc((100% - 22rem) / 12 * 6 + 10rem);
  justify-content: space-between;
  align-items: normal;
  gap: 0;
}
main .card--service .card__wrap-image {
  position: relative;
  width: 30%;
  height: auto;
  min-height: 11.43rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .card--service .card__image {
  position: absolute;
  display: block;
  max-width: 55%;
  max-height: 55%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
main .card--service .card__content {
  width: 70%;
}
main .card--service .card__content p:last-of-type {
  margin-bottom: 0;
}
main .card--shop {
  transition: transform 0.33s ease;
}
main .card--shop .card__logo {
  width: 9.64rem;
  height: 6rem;
  transform: translateY(-50%);
  transform-origin: top center;
  background: white;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0%;
  border-radius: var(--borderRadius);
  box-shadow: 0px 0.5em 0.5em rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
main .card--shop .card__logo__img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 95%;
  max-height: 95%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
main .card--shop .card__image {
  transition: transform 0.2s ease;
}
main .card--shop .card__content {
  margin-top: -3rem;
}
main .card--shop:hover {
  transform: scale(0.95);
}
main .card--shop:hover .card__image {
  transform: scale(1.1) translateY(-5%);
}
main .card--shop:hover .card__logo {
  transform: scale(1.1) translateY(-50%);
}
main .card--new {
  height: auto;
  display: flex;
  flex-direction: column;
  transition: transform 0.33s ease;
}
main .card--new.is_old .card__image {
  filter: grayscale(100%);
}
main .card--new .card__image {
  width: 100%;
  height: 17.86rem;
  transition: transform 0.25s ease;
}
main .card--new .card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main .card--new .card__title {
  flex: 1;
}
main .card--new .card__wrap-image {
  position: relative;
}
main .card--new .card__cat {
  position: absolute;
  bottom: var(--padd);
  left: var(--padd);
}
main .card--new:hover {
  transform: scale(0.95);
}
main .card--new:hover .card__image {
  transform: scale(1.1) translateY(-5%);
}
main .card--alert {
  padding: 2em;
  gap: 2rem;
  box-shadow: 0px 0.25em 0.75em rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  main .card--alert {
    flex-direction: column;
    padding: 2em 3em;
  }
}
main .card--alert .card__image {
  width: 8.57rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main .card--alert .card__text p {
  font-size: 1.29rem;
}
main .card--alert .card__text p:not(:last-of-type) {
  margin-bottom: 0.5em;
}
main .card--blocKids {
  filter: none;
  height: auto;
  flex: 1;
}
main .card--blocKids.with-img .card__image {
  height: 16.43rem;
}
@media (max-width: 768px) {
  main .card--blocKids {
    width: 100%;
    max-width: 18.57rem;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
main .card--blocKids .card__title {
  width: 100%;
  background: #006222;
  text-align: center;
  color: white;
  padding: 0.25em;
}
main .card--blocKids .card__content {
  padding: 0 1.5rem 1.5rem;
}
main .card--club {
  padding: 5.71rem;
  gap: 2rem;
  width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}
main .card--club .card__image {
  width: 3.57rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main .slider {
  padding: 1rem 0 0 0;
}
@media (max-width: 992px) {
  main .slider .swiper-wrapper {
    width: 90%;
  }
}
main .slider__slide {
  height: 32.14rem;
  border-radius: var(--borderRadius);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 5rem;
  overflow: hidden;
}
main .slider__slide > * {
  z-index: 10;
}
@media (max-width: 768px) {
  main .slider__slide {
    height: auto;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1rem;
  }
}
main .slider__slide__wrap-img {
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  main .slider__slide__wrap-img {
    width: 100%;
  }
}
main .slider__slide__img {
  height: 100%;
}
@media (max-width: 768px) {
  main .slider__slide__img {
    max-width: 100%;
    max-height: 70vw;
  }
}
@media (max-width: 576px) {
  main .slider__slide__img {
    max-height: 80vw;
  }
}
main .slider__slide__content {
  width: 50%;
  z-index: 3;
}
main .slider__slide__content.only-text {
  align-items: center !important;
}
main .slider__slide__content.only-text .slider__slide__content__titulo {
  text-align: center !important;
}
@media (max-width: 768px) {
  main .slider__slide__content {
    width: 100%;
    text-align: center !important;
  }
}
main .slider__slide__content .t-bg {
  position: relative;
  display: inline-block;
  padding: 0 0.33em;
}
main .slider__slide__content__pre.t-bg {
  border: 0.15em solid white;
  padding: 0.1em 0.4em;
}
@media (max-width: 768px) {
  main .slider__slide__content__titulo {
    text-align: center !important;
  }
  main .slider__slide__content__titulo br {
    display: none;
  }
}
main .slider__slide__content__titulo .t-bg {
  border: 0.15em solid black;
  margin: 0 0.5rem 0.75rem 0;
}
@media (max-width: 768px) {
  main .slider__slide__content .btn {
    margin-left: auto;
    margin-right: auto;
  }
}
main .slider__slide__bg {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main .slider__slide.inverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  main .slider__slide.inverse {
    flex-direction: column;
  }
}
main .slider__slide.inverse .slider__slide__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 768px) {
  main .slider__slide.inverse .slider__slide__content {
    justify-content: center;
    align-items: center;
  }
}
main .slider__slide.inverse .slider__slide__content__titulo {
  text-align: right;
}
main .slider__slide.inverse .slider__slide__content__titulo .t-bg {
  margin: 0 0 0.75rem 0.5rem;
}
main .buscador {
  position: relative;
  background: black;
  padding: 5.14rem 0 3.14rem;
}
main .buscador select {
  font-size: 1.14rem !important;
  font-family: "medium", sans-serif !important;
}
main .buscador__content {
  padding: 0 7vw;
}
@media (max-width: 576px) {
  main .buscador__content {
    padding: 0 0;
  }
}
main .buscador .search-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../images/arrow-b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  transform-origin: 0% -50%;
  width: 2.14rem;
  height: 1.57rem;
  z-index: 8;
  cursor: pointer;
  border: 0;
  outline: 0;
  transition: transform 0.25s cubic-bezier(0, 0.91, 0.72, 1.15), filter 0.5s linear;
  filter: blur(0px);
}
main .buscador .search-submit:hover {
  transform: scale(1) translate(20%, -50%);
  filter: blur(1px);
}
main .buscador .search-field {
  position: relative;
}
main .buscador .search-check {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
main .buscador .search-wrap-input {
  position: relative;
}
main .buscador .search-wrap-input::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.86rem;
  height: 2.86rem;
  top: 50%;
  left: 2em;
  background: transparent;
  transform: translateY(-50%);
  background-image: url(../images/search-b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}
@media (max-width: 768px) {
  main .buscador .search-wrap-input::before {
    content: "";
    display: block;
    position: absolute;
    width: 2.36rem;
    height: 2.36rem;
    top: 50%;
    left: 1.5em;
    background: transparent;
    background-image: url(../images/search-b.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
main .buscador .search-wrap-input input[type=search] {
  font-size: 2.86rem;
  padding-left: 2.25em;
  padding-right: 2em;
  width: 100%;
}
@media (max-width: 768px) {
  main .buscador .search-wrap-input input[type=search] {
    font-size: 2.5rem;
    padding-left: 2em;
    padding-right: 1.85em;
  }
}
main .buscador .search-wrap-selects {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2.5vw;
}
@media (max-width: 468px) {
  main .buscador .search-wrap-selects {
    padding: 0 1vw;
    gap: 0;
  }
}
@media (max-width: 576px) {
  main .buscador .search-wrap-selects > span {
    width: 100%;
  }
}
main .buscador .search-wrap-selects span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 468px) {
  main .buscador .search-wrap-selects span {
    flex-direction: column;
    align-items: center;
  }
}
main .buscador .search-wrap-selects span:nth-of-type(2) {
  align-items: flex-end;
}
@media (max-width: 468px) {
  main .buscador .search-wrap-selects span:nth-of-type(2) {
    align-items: center;
  }
}
main .buscador .search-wrap-selects select {
  flex: 0;
}
main .buscador .search-wrap-select {
  position: relative;
}
@media (max-width: 992px) {
  main .buscador .search-wrap-select {
    width: -moz-fit-content;
    width: fit-content;
  }
}
main .buscador .search-wrap-select::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.86rem;
  height: 0.57rem;
  top: 50%;
  left: auto;
  background: transparent;
  background-image: url(../images/arrow-down.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0.75em;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 768px) {
  main .buscador .search-wrap-select::after {
    right: 0.5em;
  }
}
main .buscador .search-wrap-select.on select {
  color: black;
  background: white;
}
main .buscador .search-wrap-select.on::after {
  background-image: url(../images/arrow-down-b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
main .buscador .search-wrap-check {
  flex: 1;
  display: flex;
}
@media (max-width: 992px) {
  main .buscador .search-wrap-check .search-check span {
    order: 0;
    white-space: nowrap;
  }
  main .buscador .search-wrap-check .search-check input {
    order: 1;
  }
}
@media (max-width: 768px) {
  main .buscador .search-wrap-check {
    justify-content: flex-end;
  }
}
main .buscador__carousel__group {
  position: absolute;
  top: 45%;
  white-space: nowrap;
  display: flex;
  gap: 0.5em;
}
main .buscador__carousel__group span {
  position: relative;
  display: inline;
  font-size: 1em;
  margin: 0;
}
main .buscador__carousel__group:nth-of-type(1) {
  animation: carousel 100s linear infinite;
}
@keyframes carousel {
  0% {
    transform: translateX(0%) translateY(-120%);
  }
  100% {
    transform: translateX(-53.5%) translateY(-120%);
  }
}
main .buscador__carousel__group:nth-of-type(2) {
  right: 0;
  animation: carousel2 100s linear infinite;
}
@keyframes carousel2 {
  0% {
    transform: translateX(0%) translateY(20%);
  }
  100% {
    transform: translateX(52.5%) translateY(20%);
  }
}
main .listado {
  padding: 3.93rem 0 0.25rem;
}
main .listado__wrap #ajax-load-more {
  margin-top: 2rem;
}
main .listado__wrap #ajax-load-more[data-total-posts="0"] {
  margin-top: 0rem;
}
main .listado__wrap #ajax-load-more .alm-listing {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
main .listado__wrap #ajax-load-more .alm-listing .card {
  width: calc((100% - 16.5rem) / 12 * 3 + 3rem);
}
@media (max-width: 992px) {
  main .listado__wrap #ajax-load-more .alm-listing .card {
    width: calc((100% - 16.5rem) / 12 * 6 + 7.5rem);
  }
}
@media (max-width: 576px) {
  main .listado__wrap #ajax-load-more .alm-listing .card {
    width: calc((100% - 16.5rem) / 12 * 12 + 16.5rem);
  }
}
main .single-header__wrap {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  main .single-header__wrap {
    flex-direction: column;
    max-width: 468px;
    margin-left: auto;
    margin-right: auto;
  }
}
main .single-header__image {
  --padd: 1.5em;
  position: relative;
  width: 40%;
  height: auto;
  border-radius: var(--borderRadius);
  overflow: hidden;
}
@media (max-width: 768px) {
  main .single-header__image {
    width: 100%;
    max-width: 50vh;
    margin-left: auto;
    margin-right: auto;
  }
}
main .single-header__image > img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
main .single-header__image > img.is_old {
  filter: grayscale(100%);
}
main .single-header__image > .cat {
  position: absolute;
  bottom: var(--padd);
  left: var(--padd);
  z-index: 2;
}
main .single-header__content {
  width: 60%;
}
@media (max-width: 768px) {
  main .single-header__content {
    width: 100%;
  }
}
main .single-header__content__text > p {
  font-size: 1.14rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
main .single-header__content .horario__time {
  padding-left: 1.65rem;
}
main .novedades__text {
  max-width: 468px;
  margin-left: auto;
  margin-right: auto;
}
main .novedades__content {
  display: flex;
}
@media (max-width: 576px) {
  main .novedades__content {
    justify-content: flex-start !important;
  }
}
main .kidsXperience .wrapper {
  position: relative;
}
main .kidsXperience__image {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}
main .kidsXperience__content {
  position: absolute;
  bottom: 6%;
  left: 3%;
  z-index: 10;
  max-width: 55%;
}
@media (max-width: 768px) {
  main .kidsXperience__content {
    max-width: 75%;
    left: 6%;
  }
}
@media (max-width: 576px) {
  main .kidsXperience__content {
    max-width: 90%;
    left: 5%;
  }
}
@media (max-width: 576px) {
  main .como_llegar__wrap-btns {
    flex-direction: column;
  }
}
main .como_llegar__map {
  height: 28.57rem;
  border-radius: var(--borderRadius);
  box-shadow: 0px 0.5em 0.5em rgba(0, 0, 0, 0.15);
}
main .como_llegar__medios {
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 992px) {
  main .como_llegar__medios {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  main .como_llegar__medios {
    gap: 2rem;
  }
}
main .como_llegar__medios__medio {
  width: calc((100% - 11rem) / 12 * 2.65 + 1.65rem);
}
@media (max-width: 992px) {
  main .como_llegar__medios__medio {
    width: calc((100% - 44rem) / 12 * 5.5 + 18rem);
  }
}
@media (max-width: 576px) {
  main .como_llegar__medios__medio {
    width: calc((100% - 22rem) / 12 * 10 + 18rem);
  }
}
main .shop__floor__image {
  position: relative;
  display: block;
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
main .cabecera-kids {
  position: relative;
  padding: 0;
}
main .cabecera-kids .wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 0;
}
@media (max-width: 576px) {
  main .cabecera-kids__title {
    font-size: 2.86rem;
  }
}
@media (max-width: 468px) {
  main .cabecera-kids__title {
    font-size: 2.5rem;
  }
  main .cabecera-kids__title br {
    display: none;
  }
}
main .cabecera-kids__logo {
  max-width: 12.86rem;
  width: 46%;
}
main .cabecera-kids__bg {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70%;
     object-position: 70%;
  height: 32.86rem;
}
@media (max-width: 768px) {
  main .cabecera-kids__bg {
    height: 28.57rem;
  }
}
@media (max-width: 576px) {
  main .cabecera-kids__bg {
    height: 26.79rem;
  }
}
main .bloques__content {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  main .bloques__content {
    flex-direction: column;
    align-items: center;
  }
}
main .bloques__content .card {
  width: calc((100% - 16.5rem) / 12 * 6 + 7.5rem);
}
@media (max-width: 992px) {
  main .bloques__content .card {
    width: 100%;
    max-width: 576px;
  }
}
main .bloques-kids__texto p {
  font-size: 1.29rem;
}
main .bloques-kids__texto-inferior p {
  font-size: 0.86rem;
}
main .bloques-kids__bloques {
  align-items: initial;
}
@media (max-width: 768px) {
  main .bloques-kids__bloques {
    flex-direction: column;
    gap: 2rem;
  }
}
main .servicios_cabecera__enlaces {
  gap: 0 !important;
}
@media (max-width: 576px) {
  main .servicios_cabecera__enlaces {
    flex-direction: column;
    gap: 0.5rem !important;
  }
}
main .servicios_cabecera__enlace {
  position: relative;
  display: block;
  padding: 0 0.75rem;
  line-height: 1;
}
main .servicios_cabecera__enlace::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 1px;
  top: auto;
  left: 50%;
  background: black;
  bottom: -3px;
  transition: width 0.33s cubic-bezier(0, 0.91, 0.72, 1.15);
  transform: translateX(-50%);
}
main .servicios_cabecera__enlace:hover::before {
  width: 75%;
}
main .servicios_cabecera__enlace.current_page_item::before {
  width: 75%;
}
main .servicios_cabecera__enlace:not(:last-of-type) {
  border-right: 2px solid black;
}
@media (max-width: 576px) {
  main .servicios_cabecera__enlace:not(:last-of-type) {
    border-right: none;
  }
}
main .servicios_bloques {
  padding: 1.79rem 0 !important;
}
main .servicios_bloques:last-of-type {
  padding-bottom: 5.36rem !important;
}
main .servicios_bloques__content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
main .servicios_bloques__content.swiper-servicios .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  height: auto;
}
main .servicios_bloques__content.swiper-servicios .card--service {
  width: 100%;
}
main .horarios__header {
  position: relative;
  padding: 0;
}
main .horarios__header__time {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  padding: 0.1em 0.33em;
  line-height: 1.3;
  letter-spacing: -0.75px;
  border: 0.15em solid black;
  display: flex;
}
main .horarios__header__time span {
  white-space: nowrap;
}
@media (max-width: 576px) {
  main .horarios__header__time {
    font-size: 2.14rem;
  }
}
@media (max-width: 468px) {
  main .horarios__header__time {
    font-size: 1.71rem;
    white-space: wrap;
    text-align: center;
    line-height: 1;
    padding-left: 0.33em;
    padding-right: 0.33em;
  }
  main .horarios__header__time::before {
    transform: translateY(0);
  }
}
main .horarios__header__time::before {
  margin-right: 0.2em;
}
main .horarios__header__img {
  position: relative;
  display: block;
  width: 100%;
  height: 17.86rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 1;
}
main .horarios__select {
  position: relative;
  padding: 1.79rem 0;
  overflow: hidden;
}
main .horarios__select .flex {
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  main .horarios__select .flex {
    flex-direction: column;
    align-items: center;
  }
}
main .horarios__select__select {
  display: flex;
  overflow: hidden;
}
@media (max-width: 768px) {
  main .horarios__select__select {
    margin-bottom: 0.5rem;
  }
}
main .horarios__select__select span {
  margin-right: 0.2em;
}
main .horarios__select__today {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  main .horarios__select__today {
    text-align: center;
  }
}
main .horarios__select__today::first-letter {
  text-transform: uppercase;
}
@media (max-width: 768px) {
  main .horarios__select__today::before {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 50%;
    left: 50%;
    background: white;
    transform: translate(-50%, -50%);
    padding: 1.75rem;
    z-index: -1;
  }
}
main .horarios__select .wrap-select {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.33rem;
}
@media (max-width: 768px) {
  main .horarios__select .wrap-select {
    align-items: center;
    margin-bottom: 2rem;
  }
}
main .horarios__select .wrap-select p {
  margin: 0;
  text-align: right;
}
@media (max-width: 768px) {
  main .horarios__select .wrap-select p {
    text-align: center;
  }
}
main .horarios__select form {
  position: relative;
  margin-top: 5px;
}
main .horarios__select form::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 0;
  left: 0;
  background: white;
  z-index: 1;
  border-radius: 2em;
  border: 1px solid black;
}
main .horarios__select input[type=datetime-local] {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font-family: "book", sans-serif;
  font-size: 1.14rem;
  outline: none;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  padding-left: 2em;
  margin-right: -1.33em;
  z-index: 2;
}
@media (max-width: 768px) {
  main .horarios__select input[type=datetime-local].input_ios {
    margin-right: initial;
  }
}
@media (max-width: 768px) {
  main .horarios__select input[type=datetime-local] {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
main .horarios__select input[type=datetime-local]::-webkit-inner-spin-button, main .horarios__select input[type=datetime-local]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0.5em;
  content: url("../images/ic_date2.svg");
}
@media (max-width: 768px) {
  main .horarios__select input[type=datetime-local]::-webkit-inner-spin-button, main .horarios__select input[type=datetime-local]::-webkit-calendar-picker-indicator {
    display: none;
  }
}
main .horarios .wrapper {
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 992px) {
  main .horarios .wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 2rem;
  }
}
@media (max-width: 992px) {
  main .horarios .wrapper .horario {
    width: calc((100% - 22rem) / 12 * 5 + 8rem);
  }
}
@media (max-width: 768px) {
  main .horarios .wrapper .horario {
    width: calc((100% - 22rem) / 12 * 6 + 10rem);
  }
}
@media (max-width: 576px) {
  main .horarios .wrapper .horario {
    width: calc((100% - 22rem) / 12 * 9 + 16rem);
  }
}
@media (max-width: 468px) {
  main .horarios .wrapper .horario {
    width: calc((100% - 22rem) / 12 * 11 + 20rem);
  }
}
main .horarios .wrapper .open-close_horario {
  position: relative;
  cursor: pointer;
}
main .horarios .wrapper .open-close_horario .open {
  position: absolute;
  left: 1.65em;
  opacity: 0;
}
main .horarios .wrapper .open-close_horario .close {
  opacity: 1;
}
main .horarios .wrapper .open-close_horario.open .open {
  opacity: 1;
}
main .horarios .wrapper .open-close_horario.open .close {
  opacity: 0;
}
main .horarios .wrapper .open-close_horario.open::before {
  transform: scaleY(-1);
}
main .horarios .wrapper .horario__times {
  position: relative;
  transition: height 0.2s ease;
  width: 100%;
  height: 0;
  overflow: hidden;
}
main .horarios .wrapper .horario__times span {
  white-space: nowrap;
}
main .horarios .wrapper .horario__times.open {
  height: 10.75em;
}
main .horario__time {
  display: flex;
  margin-bottom: 0.33rem;
}
main .horario__time span {
  position: relative;
  display: block;
}
main .horario__time span:nth-of-type(1) {
  width: 6.75em;
}
main .form form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
main .form-check span {
  margin: 0;
}
main .form-check__text {
  margin-left: 0.5rem !important;
}
main .form label {
  display: block;
}
main .form input:not([type=checkbox]), main .form input:not([type=radio]), main .form textarea {
  font-size: 1.29rem;
  font-family: "book", sans-serif;
  font-weight: 200;
  font-style: normal;
}
main .form input[type=submit] {
  padding: 0.3em 1em;
}
main .form .group-alquiler {
  width: calc((100% - 11rem) / 12 * 12 + 11rem);
  display: flex;
  justify-content: space-between;
}
main .form .wpcf7 {
  width: 100%;
}
main .form .wpcf7-not-valid-tip {
  font-size: 0.86rem;
  margin-top: 0.5rem;
}
main .form .wpcf7-list-item {
  margin: 0;
}
main .form .wpcf7-response-output {
  border: 0px solid transparent !important;
  font-size: 0.86rem !important;
  margin: 0 !important;
  text-align: center !important;
  padding: 0 5vw !important;
}
main .form .wpcf7-checkbox .wpcf7-list-item-label {
  display: none;
}
main .col1 {
  width: calc((100% - 11rem) / 12 * 1 + 1rem * (1 - 1)) !important;
}
main .col2 {
  width: calc((100% - 11rem) / 12 * 2 + 1rem * (2 - 1)) !important;
}
main .col3 {
  width: calc((100% - 11rem) / 12 * 3 + 1rem * (3 - 1)) !important;
}
main .col4 {
  width: calc((100% - 11rem) / 12 * 4 + 1rem * (4 - 1)) !important;
}
main .col5 {
  width: calc((100% - 11rem) / 12 * 5 + 1rem * (5 - 1)) !important;
}
main .col6 {
  width: calc((100% - 11rem) / 12 * 6 + 1rem * (6 - 1)) !important;
}
main .col7 {
  width: calc((100% - 11rem) / 12 * 7 + 1rem * (7 - 1)) !important;
}
main .col8 {
  width: calc((100% - 11rem) / 12 * 8 + 1rem * (8 - 1)) !important;
}
main .col9 {
  width: calc((100% - 11rem) / 12 * 9 + 1rem * (9 - 1)) !important;
}
main .col10 {
  width: calc((100% - 11rem) / 12 * 10 + 1rem * (10 - 1)) !important;
}
main .col11 {
  width: calc((100% - 11rem) / 12 * 11 + 1rem * (11 - 1)) !important;
}
main .col12 {
  width: calc((100% - 11rem) / 12 * 12 + 1rem * (12 - 1)) !important;
}
main .formulario.claro {
  background: white !important;
  color: black;
}
main .formulario.claro label {
  font-family: "Regular", sans-serif;
}
main .formulario.claro input[type=submit], main .formulario.claro input[type=submit].wpcf7-submit {
  background: black;
  color: white;
}
main .formulario.claro input[type=checkbox], main .formulario.claro input[type=radio] {
  border: 1.5px solid black;
}
main .formulario.claro input[type=checkbox]::before, main .formulario.claro input[type=radio]::before {
  box-shadow: inset 1em 1em black;
}
main .formulario.claro input select {
  font-family: "book", sans-serif !important;
}
main .formulario .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  main .formulario .wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
main .formulario__wrap-image {
  position: relative;
  width: 30%;
}
@media (max-width: 992px) {
  main .formulario__wrap-image {
    width: 100%;
  }
}
main .formulario__image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + (100vw - (992px + 100px)) / 2 + 0.2rem);
  height: 100%;
  border-radius: 0 var(--borderRadius) var(--borderRadius) 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: calc(992px + 100px + 992px * 0.1)) {
  main .formulario__image {
    width: calc(110% + 1.9rem);
  }
}
@media (max-width: 992px) {
  main .formulario__image {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 17.86rem;
    border-radius: var(--borderRadius);
  }
}
main .formulario__content {
  width: 70%;
}
@media (max-width: 992px) {
  main .formulario__content {
    width: 100%;
  }
}
main .formulario__form {
  width: 100%;
}
main .formulario__form .form-check {
  padding: 0 0.5em;
  display: flex;
}
main .formulario__form .form-check__text {
  padding-top: 0.33em;
}
main .formulario__form .form-group {
  width: 100%;
}
main .formulario__form .form-group label {
  padding-left: 0.5em;
}
@media (max-width: 768px) {
  main .formulario__form .form-group {
    width: calc((100% - 11rem) / 12 * 12 + 11rem) !important;
  }
  main .formulario__form .form-group.col3:not(:nth-of-type(3)) {
    width: calc((100% - 11rem) / 12 * 6 + 5rem) !important;
  }
}
@media (max-width: 576px) {
  main .formulario__form .form-group.col3:not(:nth-of-type(3)) {
    width: calc((100% - 11rem) / 12 * 12 + 11rem) !important;
  }
}
main .formulario__form .form-w100 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
main .formulario__form .form-w100 label {
  width: 100%;
}
main .formulario__form .form-w100 > div {
  white-space: nowrap;
}
@media (max-width: 768px) {
  main .formulario__form .form-w100 > div {
    width: calc((100% - 11rem) / 12 * 6 + 5rem) !important;
  }
}
@media (max-width: 576px) {
  main .formulario__form .form-w100 > div {
    width: calc((100% - 11rem) / 12 * 5 + 4rem) !important;
  }
}
main .formulario__form .form-w100 .form-check__text {
  position: relative;
  padding-top: 0;
  top: -0.15em;
}
main .formulario__form input[type=checkbox],
main .formulario__form input[type=radio] {
  border-radius: 1rem;
}
main .error404 .t-error {
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
}
main .cabecera {
  padding: 2.71rem 0 2.14rem;
}
main .contenido-texto h2 {
  font-size: 2.29rem;
}
@media (max-width: 576px) {
  main .contenido-texto h2 {
    font-size: 2.07rem;
  }
}
main .contenido-texto h3 {
  font-size: 1.71rem;
}
@media (max-width: 576px) {
  main .contenido-texto h3 {
    font-size: 1.57rem;
  }
}
main .contenido-texto h4 {
  font-size: 1.43rem;
}
main .contenido-texto h5 {
  font-size: 1.29rem;
}
main .contenido-texto h2, main .contenido-texto h3, main .contenido-texto h4, main .contenido-texto h5 {
  font-family: "medium", sans-serif;
  padding-top: 0.5rem;
}
main .contenido-texto p {
  line-height: 1.33;
  font-size: 1.14rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  main .contenido-texto p {
    font-size: 1rem;
  }
}
main .contenido-texto ul {
  list-style: disc;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
main .contenido-texto strong {
  font-family: "book", sans-serif;
}
main .contenido-texto .gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
main .contenido-texto .gallery-item {
  position: relative;
  width: calc((100% - 11rem) / 12 * 4 + 3rem);
  margin: 0;
}
main .contenido-texto .gallery-item img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.grecaptcha-badge {
  display: none;
}/*# sourceMappingURL=style.css.map */