/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  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: #414141;
}

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

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

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 6rem;
}
.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, 8px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 6rem;
}
.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, 8px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 6rem;
}
.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, 8px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 6rem;
}
.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, 8px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 6rem;
}
.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, 8px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 6rem;
}
.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, 8px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

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

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(0.6rem, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(0.6rem, 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.6rem, -0.75rem, 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.6rem, 0.75rem, 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.6rem, -0.75rem, 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.6rem, 0.75rem, 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: -16px;
  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, -8px, 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: -16px;
  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, -8px, 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: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 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, -16px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

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

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(0.4285714286rem, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 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: 1px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  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: 16px;
  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, 8px, 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, 8px, 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: -16px;
  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, -8px, 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: "wotfard-light";
  src: url("fonts/wotfard-light.woff2") format("woff2"), url("fonts/wotfard-light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "wotfard-regular";
  src: url("fonts/wotfard-regular.woff2") format("woff2"), url("fonts/wotfard-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "wotfard-medium";
  src: url("fonts/wotfard-medium.woff2") format("woff2"), url("fonts/wotfard-medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "wotfard-bold";
  src: url("fonts/wotfard-bold.woff2") format("woff2"), url("fonts/wotfard-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body, html {
  position: relative;
  margin: 0 !important;
  padding: 0;
  font-family: "wotfard-regular", sans-serif;
  font-size: 12px;
  color: #414141;
}

html.scrolled-down header {
  background: transparent;
}
html.scroll-top header {
  background: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover, a:visited {
  color: inherit;
  text-decoration: underline;
}
a:not(.link):not(.link):not(.logo):not(.not-scale) {
  transition: transform 0.35s cubic-bezier(0.03, 0.47, 0.4, 1.39);
}
a:not(.link):not(.link):not(.logo):not(.not-scale) img {
  transition: border 0.35s cubic-bezier(0.03, 0.47, 0.4, 1.39);
}
a:not(.link):not(.link):not(.logo):not(.not-scale):hover {
  transform: scale(0.98);
}
a:not(.link):not(.link):not(.logo):not(.not-scale):hover img {
  border: 1rem solid white;
}
a.link {
  position: relative;
  color: #d06305;
  font-size: 1.33rem;
  transition: color 0.2s cubic-bezier(0, 0.59, 0.18, 1.01);
}
a.link.border {
  border: 1px solid #d06305;
  padding: 1rem 2rem;
  text-decoration: none;
}
a.link.border::after {
  content: "";
  display: block;
  position: absolute;
  width: 102%;
  height: 0%;
  background-color: #d06305;
  left: -1%;
  bottom: -1%;
  transition: height 0.35s cubic-bezier(0.03, 0.47, 0.4, 1.39);
  z-index: -1;
}
a.link.border:hover {
  color: white;
}
a.link.border:hover::after {
  height: 102%;
}
a.center {
  margin: 1rem auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
a.work, a.new {
  transition: opacity 0.5s cubic-bezier(0, 0.59, 0.18, 1.01) !important;
}

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

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

h1 {
  font-size: 2.33rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.91rem;
  }
}

* {
  box-sizing: border-box;
}

.d-none {
  display: none !important;
}
@media (max-width: 1075px) {
  .d-lg-none {
    display: none !important;
  }
}
@media (max-width: 1075px) {
  .d-lg-block {
    display: block !important;
  }
}
@media (max-width: 1075px) {
  .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;
  }
}

.container {
  position: relative;
  width: 90%;
  max-width: 1075px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: clip;
}

.grid {
  position: relative;
}
.grid .grid-item {
  position: relative;
  display: block;
  font-size: 2rem;
  width: calc(33.333% - 1.3333333333rem);
  margin-right: 2rem;
}
.grid .grid-item:hover, .grid .grid-item:visited {
  text-decoration: none !important;
}
.grid .grid-item:nth-of-type(3n) {
  margin-right: 0;
}
.grid .grid-item > article {
  position: relative;
  width: 100%;
  display: block;
}
.grid .grid-item > article img {
  width: 100%;
  display: block;
  min-height: 5rem;
  background: #e9e0e0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 768px) {
  .grid .grid-item {
    width: 42.5%;
    margin-right: 15%;
  }
  .grid .grid-item:nth-of-type(3n) {
    margin-right: 15%;
  }
  .grid .grid-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .grid .grid-item {
    width: 100%;
  }
  .grid .grid-item:nth-of-type(1n) {
    margin-right: 0;
  }
}
.grid.works {
  width: calc(100% + 6rem);
}
.grid.works .grid-item {
  width: calc(1075px / 2.01);
  margin: 0% 3rem 3rem 0;
}
@media (max-width: 1205px) {
  .grid.works .grid-item {
    width: 43vw;
  }
}
@media (max-width: 480px) {
  .grid.works .grid-item {
    width: 100%;
  }
  .grid.works .grid-item:nth-of-type(1n) {
    margin-right: 0;
  }
}
.grid.thoughts .grid-item {
  width: 100%;
  margin-right: 0;
}

.image-header {
  position: relative;
  display: flex;
  width: 100%;
  height: 768px;
  max-height: 90vh;
}
.image-header > img.back, .image-header > video.back {
  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;
}

.section_title {
  font-size: 1.66rem;
  border-bottom: 1px solid #414141;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  font-family: "wotfard-medium", sans-serif;
}

.filters {
  position: relative;
  margin-bottom: 4rem;
  border-bottom: 1px solid #414141;
  padding-bottom: 0.5rem;
  background: white;
}
@media (max-width: 768px) {
  .filters {
    margin-bottom: 5rem;
  }
}
.filters::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5rem;
  background-color: white;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .filters::after {
    height: 6rem;
  }
}
.filters > span {
  background-image: url(../images/arrow-filter.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
}
.filters.on {
  margin-bottom: 7rem;
}
.filters.on li > ul.sub {
  top: 2.75rem !important;
}
.filters.on > span {
  background-image: url("../images/cierre-filter.svg");
  width: 1rem;
  height: 1rem;
}
.filters li {
  display: inline;
}
.filters li:hover > span.title_filter, .filters li.on > span.title_filter {
  color: #d06305;
}
.filters li span.title_filter {
  text-transform: capitalize;
  font-size: 1.33rem;
  margin-right: 2rem;
  cursor: pointer;
}
@media (max-width: 480px) {
  .filters li span.title_filter {
    margin-right: 1rem;
  }
}
.filters li > ul.sub {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0;
  top: 0;
  border-bottom: 1px solid #414141;
  padding-bottom: 0.5rem;
  z-index: -1;
  transition: top 0.33s cubic-bezier(0, 0.59, 0.18, 1.01);
}
.filters li > ul.sub li {
  font-size: 1.33rem;
  margin-right: 2rem;
  cursor: pointer;
}
@media (max-width: 480px) {
  .filters li > ul.sub li {
    margin-right: 1rem;
  }
}
.filters li > ul.sub li:hover, .filters li > ul.sub li.on {
  color: #d06305;
}

.two-columns {
  display: flex !important;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }
}
.two-columns > * {
  width: 44%;
  height: auto;
}
@media (max-width: 768px) {
  .two-columns > * {
    width: 100%;
    height: auto;
  }
}

ul#menu-principal {
  display: flex;
  position: fixed;
  top: 0;
  left: 50%;
  width: 90%;
  max-width: 1075px;
  height: 12rem;
  background: white;
  padding: 0;
  justify-content: space-around;
  align-items: flex-end;
  transform: translate(-50%, -100%);
  transition: transform 0.5s cubic-bezier(0, 0.59, 0.18, 1.01);
  z-index: 100;
}
ul#menu-principal::before {
  content: "";
  display: block;
  position: absolute;
  width: 200vw;
  height: 100%;
  background-color: white;
  top: 0;
  left: -50%;
}
@media (max-width: 768px) {
  ul#menu-principal::before {
    display: none;
  }
}
@media (max-width: 768px) {
  ul#menu-principal {
    left: auto;
    right: 0;
    width: 100vw;
    min-height: 100vh;
    background: white;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
  }
}
ul#menu-principal.is-active {
  transform: translate(-50%, 0%);
}
@media (max-width: 768px) {
  ul#menu-principal.is-active {
    transform: translateX(0%);
  }
}
ul#menu-principal.is-active > li:nth-of-type(1) {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.15s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.15s;
  transform: translate(0%, 0%);
}
ul#menu-principal.is-active > li:nth-of-type(2) {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.3s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.3s;
  transform: translate(0%, 0%);
}
ul#menu-principal.is-active > li:nth-of-type(3) {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.45s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.45s;
  transform: translate(0%, 0%);
}
ul#menu-principal.is-active > li:nth-of-type(4) {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.6s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.6s;
  transform: translate(0%, 0%);
}
ul#menu-principal.is-active > li:nth-of-type(5) {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.75s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.75s;
  transform: translate(0%, 0%);
}
ul#menu-principal.is-active > li:nth-of-type(6) {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.9s, opacity 0.35s cubic-bezier(0, 0.59, 0.18, 1.01) 0.9s;
  transform: translate(0%, 0%);
}
ul#menu-principal > li {
  width: 15%;
  max-width: 20rem;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-size: 1.08rem;
  text-transform: uppercase;
  transform: translateX(100%);
  transition: color 0.35s cubic-bezier(0, 0.59, 0.18, 1.01);
  opacity: 0;
}
ul#menu-principal > li a {
  text-decoration: none;
}
@media (max-width: 768px) {
  ul#menu-principal > li {
    width: 80%;
    font-size: 1.25rem;
    border-bottom: 1px solid #414141;
  }
}
ul#menu-principal > li::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #d06305;
  left: 0;
  bottom: -3em;
  opacity: 0;
  transition: bottom 0.4s cubic-bezier(0.03, 0.47, 0.4, 1.39), opacity 0.4s cubic-bezier(0.03, 0.47, 0.4, 1.39);
  display: none;
}
ul#menu-principal > li:hover, ul#menu-principal > li.current-menu-item {
  color: #d06305;
}
ul#menu-principal > li:hover::after, ul#menu-principal > li.current-menu-item::after {
  bottom: 0em;
  opacity: 1;
}

.orange {
  color: #d06305;
}

.featured {
  font-size: 1.5rem;
}

.media {
  cursor: pointer;
}
.media .media__source,
.media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.media.auto-height .media__source,
.media.auto-height iframe {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  -o-object-fit: unset;
     object-fit: unset;
  -o-object-position: unset;
     object-position: unset;
}

.video-block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + var(--gap));
  margin-bottom: 3.5rem;
  --gap: 30px;
}
.video-block__header {
  width: calc(100% - var(--gap));
  margin: 0;
}
.video-block__header__title {
  width: 100%;
  margin-bottom: 3rem;
}
.video-block__header__link {
  float: right;
  margin-bottom: 1rem;
}
.video-block__header__text {
  width: 100%;
  margin-bottom: 3.5rem;
}
.video-block__header__text p, .video-block__header__text ul {
  font-size: 1.33rem;
}
.video-block__videos {
  position: relative;
  width: 100%;
}
.video-block__videos__video {
  --maxHeight: 850px;
  position: relative;
  width: calc(33.3% * var(--width) - var(--gap));
  height: calc(var(--maxHeight) / 3 * var(--height) + var(--gap) * 1.5 * (var(--height) - 1));
  margin: 0 var(--gap) calc(var(--gap) * 1.5) 0;
}
@media (max-width: 1075px) {
  .video-block__videos__video {
    --maxHeight: 90vw;
  }
}
@media (max-width: 480px) {
  .video-block__videos__video {
    width: 100%;
  }
}
.video-block__videos__video .media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.video-block__videos__video .media__source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.video-block__videos__video .media__text {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  height: 20px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 102;
}
.modal .sliders__pagination {
  text-align: center;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
.modal::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
}
.modal .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal .swiper-slide .text {
  color: white;
  font-size: 1.33rem;
  padding: 1rem;
}
.modal .swiper-slide .media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 80%;
  max-height: 80%;
}
@media (max-width: 480px) {
  .modal .swiper-slide .media {
    max-width: 100%;
  }
}
.modal .swiper-slide .media__wrap-source {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal .swiper-slide .embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 80%;
}
@media (max-width: 480px) {
  .modal .swiper-slide .embed-container {
    max-width: 100%;
  }
}
.modal .swiper-slide .embed-container iframe,
.modal .swiper-slide .embed-container object,
.modal .swiper-slide .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal .slider {
  font-size: 2.0833333333rem;
}
.modal .slider__close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 50;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.03, 0.47, 0.4, 1.39), filter 0.5s linear;
  transform-origin: center;
  cursor: pointer;
}
.modal .slider__close:hover {
  transform: scale(0.95) rotate(90deg);
}
.modal .slider__close::after {
  content: "";
  display: block;
  position: relative;
  width: 1.9166666667rem;
  height: 1.9166666667rem;
  top: auto;
  left: auto;
  background: transparent;
  background-image: url(../images/ic_close.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 5;
}
.modal .slider__pagination {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
}
.modal .slider__pagination .swiper-pagination-bullet {
  background: white;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 0;
}
@media (max-width: 480px) {
  .modal .slider__pagination .swiper-pagination-bullet {
    width: 2rem;
  }
}

.swiper-button-prev {
  left: 3rem;
  background-image: url("../images/arrow-slider2.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  right: 3rem;
  background-image: url("../images/arrow-slider1.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper-button-next::after {
  display: none;
}

header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 2rem;
  z-index: 101;
  transition: transform 0.8s cubic-bezier(0.58, 0.01, 0.44, 1), background 0.4s cubic-bezier(0.58, 0.01, 0.44, 1);
}
header.bg-white {
  background: white;
}
header.header--white {
  position: fixed;
  left: 0;
  color: white;
}
header.header--white a.logo img.logo_n {
  display: none;
}
header.header--white a.logo img.logo_b {
  display: block;
}
header.header--white .hamburger .hamburger-inner, header.header--white .hamburger .hamburger-inner::before, header.header--white .hamburger .hamburger-inner::after {
  background-color: white !important;
}
header.is-active {
  top: 0;
  z-index: 101;
  color: #414141 !important;
}
header.is-active a.logo img.logo_n {
  display: block !important;
}
header.is-active a.logo img.logo_b {
  display: none !important;
}
header.is-active .hamburger .hamburger-inner, header.is-active .hamburger .hamburger-inner::before, header.is-active .hamburger .hamburger-inner::after {
  background-color: #414141 !important;
}
header a.logo {
  position: relative;
}
header a.logo img {
  position: relative;
  display: block;
  width: 10rem;
}
header a.logo img.logo_b {
  display: none;
}
header div.location {
  font-family: "wotfard-light", sans-serif;
  text-transform: uppercase;
  font-size: 1.08rem;
}
@media (max-width: 380px) {
  header div.location {
    display: none;
  }
}
header .hamburger {
  padding: 10px 0 7px;
  margin-left: 3rem;
}

main {
  margin-top: 7.5rem;
  overflow: hidden;
}
main section {
  margin-bottom: 5rem;
}
main.home {
  margin-top: 0;
}
main.home section.swiper-container-header {
  height: 100vh !important;
  max-height: 100vh !important;
}
main.home section.swiper-container-header::before {
  background-image: url(../images/arrow-slider1.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1.5rem;
  background-color: transparent;
  transform: rotate(90deg);
  bottom: 5rem;
  left: 3rem;
  z-index: 10;
}
main.home section.swiper-container-header .swiper-slide {
  position: relative;
  display: block;
  width: 100%;
}
main.home section.swiper-container-header .swiper-slide > .container-text {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  width: 100%;
  padding-right: 3rem;
  transform: translateX(-50%);
  z-index: 10;
}
main.home section.swiper-container-header .swiper-slide > .container-text h3 {
  position: relative;
  float: right;
  width: 100%;
  max-width: 50%;
  color: white;
  text-transform: uppercase;
  font-size: 1.33rem;
  display: flex;
  justify-content: space-between;
}
main.home section.swiper-container-header .swiper-slide > .container-text h3 span {
  display: inline-block;
}
main.home section.swiper-container-header .swiper-slide img, main.home section.swiper-container-header .swiper-slide 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;
}
main.home section.featured-works {
  margin-bottom: 8rem;
}
main.home section.featured-works a.link {
  position: relative;
  z-index: 10;
}
main.home section.featured-works .swiper-container {
  margin: 0 auto 5rem;
}
@media (max-width: 1075px) {
  main.home section.featured-works .swiper-container {
    width: 100%;
    margin-left: 5% !important;
  }
}
main.home section.featured-works .swiper-container a.swiper-slide:hover, main.home section.featured-works .swiper-container a.swiper-slide:visited {
  text-decoration: none !important;
}
main.home section.featured-works .swiper-container a.swiper-slide article img {
  width: 100%;
  height: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  margin-bottom: 0.75rem;
}
main.home section.featured-works .swiper-container a.swiper-slide article h3 {
  font-size: 1.08rem;
}
main.home section.featured-works div.container:not(.swiper-container) {
  margin: 0 auto;
}
main.home section.featured-works div.container:not(.swiper-container) a.link {
  float: right;
  margin-bottom: 1rem;
}
main.home section.featured-works a.grid-item > article {
  font-size: 1.08rem;
}
main.home section.featured-works a.grid-item > article img {
  margin-bottom: 0.5rem;
}
main.home section.featured-works a.grid-item > article p.date {
  color: #a5a5a5;
  margin-bottom: 0.5rem;
  font-family: "wotfard-light", sans-serif;
}
main.home section.featured-works a.grid-item > article h3 {
  margin-bottom: 2rem;
}
main.works .intro {
  position: relative;
  font-size: 1.66rem;
  padding: 8rem 0 10rem;
  left: 48%;
  width: 44%;
}
@media (max-width: 768px) {
  main.works .intro {
    left: 0%;
    width: 100%;
  }
}
main.works .intro p {
  font-size: inherit;
}
main.works .masonry.grid .grid-item {
  margin-bottom: 2.5rem;
}
main.works .masonry.grid .grid-item img {
  margin-bottom: 0.25rem;
}
main.works .masonry.grid .grid-item h3 {
  margin-bottom: 0.25rem;
}
main.studio, main.studio-2 {
  margin-top: 7.5rem;
}
main.studio section, main.studio-2 section {
  margin-bottom: 4rem;
}
main.studio section.header, main.studio-2 section.header {
  position: relative;
  display: flex;
  justify-content: flex-start;
  font-size: 1.66rem;
  padding: 6rem 0 4rem;
}
main.studio section.header h2, main.studio-2 section.header h2 {
  font-size: 2.33rem;
  margin-bottom: 2rem;
}
main.studio section.header p, main.studio-2 section.header p {
  font-size: inherit;
}
main.studio section.contenido .texto, main.studio-2 section.contenido .texto {
  font-size: 1.33rem;
}
@media (max-width: 768px) {
  main.studio section.contenido .texto, main.studio-2 section.contenido .texto {
    margin-bottom: 2rem;
  }
}
main.studio section.contenido .texto h2, main.studio-2 section.contenido .texto h2 {
  font-size: 1.66rem;
  border-bottom: 1px solid #414141;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  font-family: "wotfard-medium", sans-serif;
}
main.studio section.contenido .texto p, main.studio-2 section.contenido .texto p {
  font-size: inherit;
}
main.studio section.image-header, main.studio-2 section.image-header {
  justify-content: flex-end;
  align-content: flex-end;
}
main.studio section.texto_destacado, main.studio-2 section.texto_destacado {
  font-size: 2.33rem;
  text-align: center;
  max-width: 768px;
}
@media (max-width: 768px) {
  main.studio section.texto_destacado, main.studio-2 section.texto_destacado {
    font-size: 1.91rem;
  }
}
main.studio section.texto_destacado p, main.studio-2 section.texto_destacado p {
  font-size: inherit;
}
main.studio section.texto_imagen, main.studio-2 section.texto_imagen {
  position: relative;
}
main.studio section.texto_imagen .texto, main.studio-2 section.texto_imagen .texto {
  font-size: 1.33rem;
}
@media (max-width: 768px) {
  main.studio section.texto_imagen .texto, main.studio-2 section.texto_imagen .texto {
    margin-bottom: 2rem;
  }
}
main.studio section.texto_imagen .texto p, main.studio-2 section.texto_imagen .texto p {
  font-size: inherit;
}
main.studio section.texto_imagen .texto p:last-child, main.studio-2 section.texto_imagen .texto p:last-child {
  margin-bottom: 0;
}
main.studio section.texto_imagen .imagen, main.studio-2 section.texto_imagen .imagen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
main.studio section.texto_imagen .imagen > img, main.studio-2 section.texto_imagen .imagen > 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;
}
@media (max-width: 768px) {
  main.studio section.texto_imagen .imagen > img, main.studio-2 section.texto_imagen .imagen > img {
    position: relative;
  }
}
main.studio section.texto_imagen .imagen > span, main.studio-2 section.texto_imagen .imagen > span {
  position: relative;
  display: block;
  font-size: 1.16rem;
}
@media (max-width: 768px) {
  main.studio section.texto_imagen .imagen > span, main.studio-2 section.texto_imagen .imagen > span {
    margin-top: 1.25rem;
  }
}
main.studio section.texto_imagen .imagen.with-caption > img, main.studio-2 section.texto_imagen .imagen.with-caption > img {
  height: calc(100% - 2.5rem);
}
main.studio section.texto_sobre_imagen, main.studio-2 section.texto_sobre_imagen {
  position: relative;
  min-height: 768px;
}
main.studio section.texto_sobre_imagen .texto, main.studio-2 section.texto_sobre_imagen .texto {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 4rem;
  font-size: 2.33rem;
  text-align: left;
  min-height: 768px;
  z-index: 2;
  color: white;
}
@media (max-width: 768px) {
  main.studio section.texto_sobre_imagen .texto, main.studio-2 section.texto_sobre_imagen .texto {
    font-size: 1.91rem;
  }
}
main.studio section.texto_sobre_imagen .texto p, main.studio-2 section.texto_sobre_imagen .texto p {
  font-size: inherit;
}
main.studio section.texto_sobre_imagen .texto a, main.studio-2 section.texto_sobre_imagen .texto a {
  color: #d06305;
  text-decoration: underline;
}
main.studio section.texto_sobre_imagen > img, main.studio-2 section.texto_sobre_imagen > img {
  z-index: 1;
  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.studio section.solo_imagen, main.studio section.solo_video, main.studio-2 section.solo_imagen, main.studio-2 section.solo_video {
  text-align: center;
}
main.studio section.solo_imagen .media, main.studio section.solo_video .media, main.studio-2 section.solo_imagen .media, main.studio-2 section.solo_video .media {
  width: 100%;
  margin: 0 auto;
}
main.studio section.solo_imagen .media__text, main.studio section.solo_video .media__text, main.studio-2 section.solo_imagen .media__text, main.studio-2 section.solo_video .media__text {
  font-size: 1.16rem;
  margin-top: 1rem;
  text-align: left;
}
main.studio section.solo_video, main.studio-2 section.solo_video {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  main.studio section.solo_video, main.studio-2 section.solo_video {
    flex-direction: column;
  }
}
main.studio section.solo_video .media:nth-of-type(1), main.studio-2 section.solo_video .media:nth-of-type(1) {
  flex: 66.66%;
}
@media (max-width: 768px) {
  main.studio section.solo_video .media:nth-of-type(1), main.studio-2 section.solo_video .media:nth-of-type(1) {
    width: 100%;
    flex: auto;
  }
}
main.studio section.solo_video .media:nth-of-type(2), main.studio-2 section.solo_video .media:nth-of-type(2) {
  position: relative;
  flex: 33.33%;
}
@media (max-width: 768px) {
  main.studio section.solo_video .media:nth-of-type(2), main.studio-2 section.solo_video .media:nth-of-type(2) {
    width: 100%;
    flex: auto;
  }
}
main.studio section.solo_video .media:nth-of-type(2) .media__wrap-source, main.studio-2 section.solo_video .media:nth-of-type(2) .media__wrap-source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 768px) {
  main.studio section.solo_video .media:nth-of-type(2) .media__wrap-source, main.studio-2 section.solo_video .media:nth-of-type(2) .media__wrap-source {
    position: relative;
  }
}
main.studio section.solo_video .media:nth-of-type(2) .media__source, main.studio-2 section.solo_video .media:nth-of-type(2) .media__source {
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% - 2.5rem);
}
@media (max-width: 768px) {
  main.studio section.solo_video .media:nth-of-type(2) .media__source, main.studio-2 section.solo_video .media:nth-of-type(2) .media__source {
    position: relative;
    height: auto;
  }
}
main.studio section.awards, main.studio-2 section.awards {
  margin-bottom: 10rem;
}
main.studio section.awards h2, main.studio-2 section.awards h2 {
  font-size: 1.66rem;
}
main.studio section.awards ul li, main.studio-2 section.awards ul li {
  display: flex;
  padding: 1.2rem 0 0.2rem;
  border-bottom: 1px solid #414141;
}
@media (max-width: 768px) {
  main.studio section.awards ul li, main.studio-2 section.awards ul li {
    flex-direction: column;
  }
}
main.studio section.awards ul li span, main.studio-2 section.awards ul li span {
  display: none;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 3rem;
  height: 2rem;
  color: #000000;
}
main.studio section.awards ul li p, main.studio-2 section.awards ul li p {
  width: 22%;
  font-size: 1.08rem;
  padding: 0 3%;
}
main.studio section.awards ul li p:nth-of-type(1), main.studio-2 section.awards ul li p:nth-of-type(1) {
  padding-left: 0;
}
main.studio section.awards ul li p:nth-of-type(2), main.studio-2 section.awards ul li p:nth-of-type(2) {
  width: 35%;
}
main.studio section.awards ul li p:nth-of-type(3), main.studio-2 section.awards ul li p:nth-of-type(3) {
  color: #d06305;
}
main.studio section.awards ul li p:nth-of-type(4), main.studio-2 section.awards ul li p:nth-of-type(4) {
  padding-right: 0;
}
@media (max-width: 768px) {
  main.studio section.awards ul li p:nth-of-type(4) img, main.studio-2 section.awards ul li p:nth-of-type(4) img {
    max-width: 15rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  main.studio section.awards ul li p, main.studio-2 section.awards ul li p {
    padding: 0 2rem !important;
    width: 100% !important;
  }
}
main.design-in-action .intro {
  position: relative;
  display: flex;
  justify-content: flex-start;
  font-size: 1.66rem;
  padding: 6rem 0 4rem;
}
main.design-in-action .intro h2 {
  font-size: 2.33rem;
  margin-bottom: 2rem;
}
main.design-in-action .intro p {
  font-size: inherit;
}
main.news .intro {
  position: relative;
  font-size: 1.66rem;
  padding: 6rem 0 4rem;
}
main.news .intro h2 {
  font-size: 2.33rem;
  margin-bottom: 2rem;
}
main.news .intro p {
  font-size: inherit;
}
main.news .masonry.grid a.grid-item > article {
  font-size: 1.08rem;
}
main.news .masonry.grid a.grid-item > article img {
  margin-bottom: 0.5rem;
}
main.news .masonry.grid a.grid-item > article p.date {
  color: #a5a5a5;
  margin-bottom: 0.5rem;
  font-family: "wotfard-light", sans-serif;
}
main.news .masonry.grid a.grid-item > article h3 {
  margin-bottom: 2rem;
}
main.news .masonry.grid .grid-item {
  margin-bottom: 2.5rem;
}
main.news .masonry.grid .grid-item img {
  margin-bottom: 0.25rem;
}
main.news .masonry.grid .grid-item h3 {
  margin-bottom: 0.25rem;
}
main.thoughts .masonry.grid a.grid-item > article {
  border-top: 1px solid #414141;
  padding: 3rem 0;
}
main.thoughts .masonry.grid a.grid-item > article h3 {
  font-size: 2.33rem;
  max-width: 480px;
}
main.thoughts .masonry.grid a.grid-item > article img {
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 768px) {
  main.contact .content {
    margin-bottom: 2rem;
  }
}
main.general div.general {
  margin-bottom: 7rem;
}
main.general div.general h1 {
  padding: 2.5rem 0 0.5rem;
}
main.general div.general p {
  font-size: 1.08rem;
}
main.single {
  margin-top: 0;
}
main.single.work section.image-header {
  justify-content: flex-end;
  align-content: flex-end;
  height: 100vh !important;
  max-height: 100vh;
}
main.single.work section.image-header::before {
  background-image: url(../images/arrow-slider1.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  width: 3rem;
  height: 1.5rem;
  background-color: transparent;
  transform: rotate(90deg);
  bottom: 5rem;
  left: 3rem;
  z-index: 10;
}
@media (max-width: calc(480px + 100px)) {
  main.single.work section.image-header::before {
    left: auto;
    right: 2rem;
    bottom: 3rem;
  }
}
main.single.work section.image-header > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  color: white;
  z-index: 1;
  padding: 4rem 0;
}
@media (max-width: calc(480px + 100px)) {
  main.single.work section.image-header > div {
    align-items: center;
  }
}
main.single.work section.image-header > div.darkText {
  color: #000000;
}
main.single.work section.image-header > div.darkText::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  background-color: transparent;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(25, 25, 25, 0.5), rgba(25, 25, 25, 0));
  z-index: 10;
}
main.single.work section.image-header > div h3 {
  font-size: 2.33rem;
  font-weight: bold;
  width: 20%;
  min-width: 480px;
  text-align: left;
}
@media (max-width: calc(480px + 100px)) {
  main.single.work section.image-header > div h3 {
    min-width: 90%;
  }
}
main.single.work section.image-header > div p {
  font-size: 1.16rem;
  margin-bottom: 0.25rem;
  width: 20%;
  min-width: 480px;
  text-align: left;
}
@media (max-width: calc(480px + 100px)) {
  main.single.work section.image-header > div p {
    min-width: 90%;
  }
}
main.single.work section.content .intro {
  position: relative;
  font-size: 1.66rem;
  padding: 4rem 0 7rem;
  font-family: "wotfard-medium", sans-serif;
}
main.single.work section.content .intro > div {
  position: relative;
}
main.single.work section.content .intro img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
main.single.work section.content .intro p {
  font-size: inherit;
}
main.single.work section.content .intro a.readmore {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3rem;
  font-family: "wotfard-regular", sans-serif;
}
main.single.work section.content .content-text {
  position: absolute;
  top: -5rem;
  right: calc((1075px - 100vw) / 2);
  background: #F7F5EF;
  font-size: 1.08rem;
  max-width: calc(1075px - 100px + (100vw - 1075px) / 2);
  box-sizing: border-box;
  z-index: 10;
}
@media (max-width: calc(1075px + 100px)) {
  main.single.work section.content .content-text {
    right: -5.6%;
    width: 95%;
  }
}
@media (max-width: 768px) {
  main.single.work section.content .content-text {
    right: -5.6%;
    width: 100%;
  }
}
main.single.work section.content .content-text p {
  font-size: inherit;
}
main.single.work section.content .content-text .cerrar {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1.5rem;
  cursor: pointer;
  z-index: 100;
}
main.single.work section.content .content-text.collapse {
  overflow: hidden;
  height: 0;
  margin-bottom: 0;
  transition: height 0.5s cubic-bezier(0, 0.59, 0.18, 1.01), margin-bottom 0.5s cubic-bezier(0, 0.59, 0.18, 1.01);
}
main.single.work section.content .content-text.collapse.on {
  margin-bottom: inherit;
}
main.single.work section.content .content-text.collapse .collapse-content {
  position: relative;
  display: block;
  padding: 6rem 3rem 6rem;
  padding-right: calc((100vw - 1075px) / 2);
}
@media (max-width: 1075px) {
  main.single.work section.content .content-text.collapse .collapse-content {
    padding-right: 3rem;
  }
}
main.single.work section.content .content-text.collapse .collapse-content .tit {
  font-size: 1.5rem;
  font-family: "wotfard-medium", sans-serif;
}
main.single.work section.content .gallery .media {
  position: relative;
  margin-bottom: 3rem;
}
main.single.work section.content .gallery .media img {
  width: 100%;
  margin-bottom: 0.25rem;
}
main.single.work section.content .gallery .media__text {
  font-size: 1.33rem;
}
main.single.work section.content .gallery .media.size33 {
  width: 30.53%;
  margin-left: 1.4%;
  margin-right: 1.4%;
}
@media (max-width: 480px) {
  main.single.work section.content .gallery .media.size33 {
    width: 97.2%;
    margin-left: 1.4%;
    margin-right: 1.4%;
  }
}
main.single.work section.content .gallery .media.size100 {
  width: 97.2%;
  margin-left: 1.4%;
  margin-right: 1.4%;
}
main.single.work section.content .gallery .media.size80 {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}
main.single.work section.content .gallery .media.size50 {
  width: 47.2%;
  margin-left: 1.4%;
  margin-right: 1.4%;
}
@media (max-width: 480px) {
  main.single.work section.content .gallery .media.size50 {
    width: 97.2%;
    margin-left: 1.4%;
    margin-right: 1.4%;
  }
}
main.single.new {
  margin-bottom: 6rem;
}
main.single.new section.content {
  position: relative;
  border-top: 1px solid #414141;
  margin-top: 1rem;
  padding: 5rem 0 1rem;
}
main.single.new section.content > a {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 1.25rem;
}
main.single.new section.content .title-date h1 {
  font-size: 2.33rem;
}
main.single.new section.content .title-date p.date {
  font-size: 1.08rem;
  font-family: "wotfard-light", sans-serif;
}
main.single.new section.content .text {
  padding-top: 1rem;
  font-size: 1.08rem;
}
main.single.new section.content .text p {
  font-size: inherit;
}
main.single.new section.content .text a {
  text-decoration: underline;
  color: #d06305;
}
main.single.new section.image {
  text-align: center;
}
main.single.new section.image img {
  width: 100%;
  max-width: 768px;
}
main.single.thought > .container div.intro {
  margin: 2rem 0 3rem;
}
main.single.thought > .container div.intro h1 {
  font-size: 2.33rem;
}
main.single.thought > .container div.intro p {
  padding-top: 1rem;
  font-size: 1.33rem;
}
main.single.thought > .container > img {
  margin-bottom: 3rem;
}
main.single.thought > .container > .content {
  margin-bottom: 7rem;
  font-size: 1.08rem;
}
main.single.thought > .container > .content p {
  font-size: inherit;
}

footer {
  background: #F7F5EF;
}
footer > .container {
  display: flex;
  justify-content: space-between;
  font-size: 1.16rem;
  line-height: 1.8;
  padding: 5rem 0 4rem;
}
@media (max-width: 768px) {
  footer > .container {
    flex-wrap: wrap;
  }
}
footer > .container a.logo {
  flex-basis: 33%;
}
@media (max-width: 768px) {
  footer > .container a.logo {
    flex-basis: 100%;
    margin-bottom: 3rem;
  }
}
footer > .container a.logo img {
  position: relative;
  display: block;
  width: 10rem;
}
@media (max-width: 480px) {
  footer > .container ul.menu {
    display: flex;
    justify-content: space-between;
    flex-basis: 100%;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
}
footer > .container p.direccion strong {
  display: block;
}
footer > .container div.rrss a {
  margin-right: 1rem;
}
footer > .container div.rrss a img {
  height: 2.5rem;
}/*# sourceMappingURL=estilos.css.map */