/*
Theme Name: Kia Exclusivos v0.1
Theme URI: http://exclusivosonline.com.ar
Author: Estudio Fogliazza
Author URI: http://estudiofogliazza.com/
Description: Sitio web para Exclusivos Online.
Version: 1
License: GNU General Public License v2 or later
License URI: LICENSE
*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 0;
  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: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #C51625;
}

.hamburger-box {
  width: 48px;
  height: 34px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -3px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 48px;
  height: 6px;
  background-color: #C51625;
  border-radius: 0;
  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: -14px;
}
.hamburger-inner::after {
  bottom: -14px;
}

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

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

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

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

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

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

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

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

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

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 3px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 14px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 28px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 14px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(6.8571428571px, -8px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -28px, 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: 3px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 14px;
  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: 28px;
  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, 14px, 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, 14px, 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: -28px;
  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, -14px, 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);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

@font-face {
  font-family: "KIA";
  src: url("assets/fonts/KIAL.eot");
  src: local("KIA Light"), local("KIAL"), url("assets/fonts/KIAL.eot?#iefix") format("embedded-opentype"), url("assets/fonts/KIAL.woff2") format("woff2"), url("assets/fonts/KIAL.woff") format("woff"), url("assets/fonts/KIAL.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "KIA";
  src: url("assets/fonts/KIAM.eot");
  src: local("KIA Medium"), local("KIAM"), url("assets/fonts/KIAM.eot?#iefix") format("embedded-opentype"), url("assets/fonts/KIAM.woff2") format("woff2"), url("assets/fonts/KIAM.woff") format("woff"), url("assets/fonts/KIAM.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "KIA";
  src: url("assets/fonts/KIAB.eot");
  src: local("KIA Bold"), local("KIAB"), url("assets/fonts/KIAB.eot?#iefix") format("embedded-opentype"), url("assets/fonts/KIAB.woff2") format("woff2"), url("assets/fonts/KIAB.woff") format("woff"), url("assets/fonts/KIAB.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
:root {
  --dark: #1A1818;
  --light: #f9f9f9;
  --brand: #131C28;
  --grey: #777777;
  --title: "KIA", sans-serif;
  --body: "Nunito Sans", sans-serif;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
}

body {
  font-family: "KIA";
}

.block {
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.block--fluid {
  max-width: 100%;
  width: 100%;
}
.block--dark {
  background-color: var(--dark);
}
.block--black {
  background-color: var(--black);
}
.block--brand {
  background-color: var(--brand);
}
.block--space {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.block .block__title {
  margin-top: 2rem;
  font-family: var(--title);
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  margin-bottom: 1.2rem;
}
.block .block__title::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background-color: var(--brand);
  margin-bottom: 10px;
}

.social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.social a {
  background-color: var(--brand);
  padding: 0.8rem;
  margin-bottom: 5px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: var(--light);
  font-size: 1.4rem;
  line-height: 1.4rem;
  transition: all 0.35s ease-in-out;
  display: inline-block;
}
.social a:last-of-type {
  margin-bottom: 0;
}
.social a:hover, .social a:focus {
  filter: brightness(1.2);
}

.block--top {
  background-color: #f9f9f9;
  padding-top: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid #eee;
}
.block--top .box:first-of-type {
  display: none;
}
@media screen and (min-width: 992px) {
  .block--top .box:first-of-type {
    display: flex;
  }
}
.block--top .box:last-of-type {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .block--top .box:last-of-type {
    justify-content: flex-end;
    width: auto;
  }
}
.block--top .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.block--top .top .top__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: var(--grey);
}
.block--top .top .top__text a {
  color: var(--brand);
}
.block--top .top .top__dato {
  margin-left: 8px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 13px;
  color: var(--grey);
  display: inline-block;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .block--top .top .top__dato {
    margin-left: 16px;
    text-align: left;
  }
}
.block--top .top .top__dato:hover, .block--top .top .top__dato:focus {
  color: var(--dark);
}
.block--top .top .abierto {
  color: mediumseagreen;
}
.block--top .top .cerrado {
  color: var(--brand);
}

.block--breadcrumbs {
  background-color: var(--brand);
  padding-top: 10px;
  padding-bottom: 10px;
}
.block--breadcrumbs p {
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--title);
}
.block--breadcrumbs p a {
  color: white;
  text-decoration: none;
}

.block--slider {
  border-top: 3px solid var(--brand);
  background-color: var(--brand);
}
.block--slider .slider {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 22rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .block--slider .slider {
    height: 32rem;
  }
}
@media screen and (min-width: 1200px) {
  .block--slider .slider {
    height: 42rem;
  }
}
.block--slider .slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(59, 71, 87);
  background: linear-gradient(90deg, rgb(59, 71, 87) 0%, rgba(59, 71, 87, 0.1516981793) 35%, rgba(59, 71, 87, 0.1516981793) 65%, rgb(59, 71, 87) 100%);
}
.block--slider .slider > .block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  z-index: 2;
}
.block--slider .slider__title {
  margin-top: 4rem;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--title);
  font-weight: bolder;
  color: white;
  display: block;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 5px;
  text-shadow: 0 0 12px black;
}
.block--slider .slider__text {
  text-align: center;
  font-family: var(--title);
  font-weight: normal;
  color: white;
  display: block;
  font-size: 14px;
  line-height: 14px;
  text-transform: capitalize;
  text-shadow: 0 0 6px black;
}

.block--navegation {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  position: relative;
  z-index: 99;
}
.block--navegation .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .block--navegation .block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.block--navegation .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 17px;
  font-family: var(--title);
  font-weight: 400;
  color: var(--grey);
  z-index: 999;
}
.block--navegation .brand__image {
  display: block;
  height: 3rem;
  width: auto;
  margin-right: 10px;
}
.block--navegation .brand span {
  display: none;
}
@media screen and (min-width: 992px) {
  .block--navegation .brand span {
    display: none;
    text-transform: uppercase;
    font-weight: lighter;
    color: var(--dark);
    font-size: 21px;
    line-height: 21px;
    margin-bottom: 2px;
  }
  .block--navegation .brand span strong {
    font-weight: bold;
  }
}
.block--navegation .hamburger {
  font-size: 2rem;
  color: var(--brand);
  z-index: 999;
  margin-left: auto;
  margin-right: 10px;
}
@media screen and (min-width: 992px) {
  .block--navegation .hamburger {
    display: none;
  }
}
.block--navegation .menu {
  display: none;
  flex-direction: column;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .block--navegation .menu {
    display: flex;
    flex-direction: row;
  }
}
.block--navegation .menu .menu-item {
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  margin-right: 1.2rem;
  text-transform: uppercase;
}
.block--navegation .menu .menu-item a {
  padding-top: 6px;
  color: var(--dark);
  padding-bottom: 4px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.block--navegation .menu .menu-item a:hover, .block--navegation .menu .menu-item a:focus {
  color: var(--brand);
}
.block--navegation .menu .menu-item:last-of-type {
  margin-right: 0;
}
.block--navegation .menu-mobile {
  z-index: 99;
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  bottom: 0;
  left: -100%;
  right: auto;
  background-color: white;
  display: flex;
  align-items: center;
  padding: 1rem;
  transition: all 0.35s ease-in-out;
}
.block--navegation .menu-mobile .menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.block--navegation .menu-mobile .menu .menu-item {
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.block--navegation .menu-mobile .menu .menu-item a {
  padding-top: 6px;
  color: var(--dark);
  padding-bottom: 4px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.block--navegation .menu-mobile .menu .menu-item a:hover, .block--navegation .menu-mobile .menu .menu-item a:focus {
  color: var(--brand);
  border-color: var(--brand);
}
.block--navegation .left {
  left: 0;
}

.block--sidebar {
  background-color: #3B4757;
  margin-top: 0px;
}
.block--sidebar .block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 992px) {
  .block--sidebar .block {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }
}
.block--sidebar .box {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  background-position: center center;
  text-decoration: none;
}
.block--sidebar .box:first-of-type {
  min-height: 12rem;
}
.block--sidebar i {
  color: var(--light);
  font-size: 2rem;
  line-height: 2rem;
  display: block;
  margin-bottom: 20px;
}
.block--sidebar .sidebar__title, .block--sidebar .sidebar__text {
  font-family: var(--title);
  color: var(--light);
  text-align: center;
}
.block--sidebar .sidebar__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 5px;
}
.block--sidebar .sidebar__text {
  font-weight: 400;
  opacity: 0.7;
  font-size: 13px;
  line-height: 13px;
}

.block--footer {
  border-top: 3px solid var(--brand);
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.block--footer .block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.block--footer .block .box:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .block--footer .block {
    flex-direction: row;
  }
  .block--footer .block .box:first-of-type {
    flex-direction: row;
  }
}
.block--footer .footer {
  font-family: "KIA";
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--grey);
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .block--footer .footer {
    text-align: left;
  }
}
.block--footer .footer .footer__text {
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .block--footer .footer .footer__text {
    margin-top: 0;
  }
}
.block--footer .footer .footer__firm {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .block--footer .footer .footer__firm {
    margin-top: 12px;
  }
}
.block--footer .footer .footer__firm img {
  height: 25px;
  width: auto;
}
.block--footer .brand__image {
  display: block;
  height: 3rem;
  width: auto;
  margin-right: 1rem;
}

.block--modelos {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.block--modelos .block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 8px;
}
@media screen and (min-width: 992px) {
  .block--modelos .block {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.block--modelos .block .modelo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-out;
}
.block--modelos .block .modelo__perfil img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-out;
}
.block--modelos .block .modelo__title {
  font-size: 1.5rem;
  line-height: 100%;
  font-family: var(--title);
  font-weight: bold;
  color: var(--dark);
  display: block;
  margin-bottom: 10px;
}
.block--modelos .block .modelo__link {
  display: block;
  font-size: 14px;
  line-height: 100%;
  font-family: var(--title);
  font-weight: normal;
  color: var(--brand);
  text-decoration: none;
  text-transform: uppercase;
}
.block--modelos .block .modelo:hover, .block--modelos .block .modelo:focus {
  background-color: #efefef;
}
.block--modelos .block .modelo:hover .modelo__perfil img, .block--modelos .block .modelo:focus .modelo__perfil img {
  transform: scale(1.1);
}

.block--page {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #eee;
}
.block--page .page__title {
  background-color: var(--brand);
  padding: 1rem;
  font-family: var(--title);
  font-size: 2rem;
  line-height: 2rem;
  font-weight: bold;
  color: white;
}
.block--page .page__header {
  height: 10rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: grayscale(100);
}
.block--page .page__content {
  padding: 2rem 2rem 4rem 2rem;
  border: 1px solid var(--brand);
  background-color: white;
}
.block--page .page__content p {
  font-family: var(--title);
  font-size: 18px;
  line-height: 135%;
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 2rem;
  max-width: 720px;
}

form input, form textarea, form select {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  margin-top: 5px;
  font-size: 17px;
  line-height: 17px;
}
form label {
  font-family: var(--title);
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
form input[type=submit] {
  border: none;
  background-color: var(--dark);
  padding: 1.5rem;
  color: white;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
}
form input[type=submit]:hover, form input[type=submit]:focus {
  cursor: pointer;
  background-color: var(--brand);
}

.block--header {
  height: 21rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.block--actions {
  transform: translateY(-2rem);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media screen and (min-width: 992px) {
  .block--actions {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  }
}
.block--actions .action {
  background-color: white;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--title);
  font-weight: 700;
  font-size: 15px;
}
@media screen and (min-width: 992px) {
  .block--actions .action {
    border-top: 10px solid var(--brand);
  }
  .block--actions .action:hover, .block--actions .action:focus {
    border-top: 10px solid var(--dark);
    background-color: #f4f4f4;
  }
}
.block--actions .action__logo {
  height: 40px;
  width: auto;
  display: block;
}
.block--actions .action:hover, .block--actions .action:focus {
  background-color: #f4f4f4;
}
.block--actions a.action:last-of-type {
  padding-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .block--actions a.action:last-of-type {
    padding-bottom: 0.5rem;
  }
}

.block--colors {
  padding-bottom: 2rem;
}
.block--colors .colors {
  margin: 0 auto;
  position: relative;
}
.block--colors .colors__image {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 1rem;
}
@media screen and (min-width: 992px) {
  .block--colors .colors__image {
    padding-top: 0;
    width: 60%;
  }
}
.block--colors .colors .box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .block--colors .colors .box {
    top: 2rem;
    left: 20%;
  }
}
.block--colors .colors__name {
  font-family: var(--title);
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: var(--dark);
}
.block--colors .colors__color {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  margin-right: 8px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}

.block--exterior .destacada, .block--interior .destacada {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  padding: 3rem;
  margin-bottom: 1px;
}
.block--exterior .destacada__seccion, .block--interior .destacada__seccion {
  font-family: var(--title);
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
  display: block;
  margin-bottom: 1.2rem;
}
.block--exterior .destacada__seccion::before, .block--interior .destacada__seccion::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background-color: var(--brand);
  margin-bottom: 10px;
}
.block--exterior .destacada__title, .block--interior .destacada__title {
  font-family: var(--title);
  font-weight: bold;
  font-size: 36px;
  color: white;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
  margin-bottom: 10px;
  display: block;
}
.block--exterior .destacada__text, .block--interior .destacada__text {
  font-family: var(--title);
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: white;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
  display: block;
  width: 65%;
}
.block--exterior .galeria .elemento, .block--interior .galeria .elemento {
  position: relative;
}
.block--exterior .galeria .elemento__imagen, .block--interior .galeria .elemento__imagen {
  height: 18rem;
  background-size: cover;
  background-position: center center;
}
.block--exterior .galeria .elemento__text, .block--interior .galeria .elemento__text {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  font-family: var(--title);
  font-weight: 700;
  font-size: 19px;
  line-height: 24px;
  color: white;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
}
.block--exterior .galeria--exterior, .block--interior .galeria--exterior {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-bottom: 1px;
}
@media screen and (min-width: 992px) {
  .block--exterior .galeria--exterior, .block--interior .galeria--exterior {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.block--exterior .galeria--interior, .block--interior .galeria--interior {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-bottom: 4px;
}
@media screen and (min-width: 992px) {
  .block--exterior .galeria--interior, .block--interior .galeria--interior {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.block--exterior .galeria--interior .elemento__imagen, .block--interior .galeria--interior .elemento__imagen {
  height: 14rem;
}
.block--exterior .galeria--interior .elemento__text, .block--interior .galeria--interior .elemento__text {
  width: 75%;
}

.block--cta {
  padding-top: 6rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .block--cta {
    grid-template-columns: 1fr 2fr;
  }
}
.block--cta .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.block--cta .cta__image {
  width: 100%;
  height: auto;
}
.block--cta .cta__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.block--cta .cta__whatsapp {
  background-color: #128c7e;
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-family: var(--title);
  font-weight: bold;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  color: white;
  text-align: center;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .block--cta .cta__whatsapp {
    margin-bottom: 0;
  }
}
.block--cta .cta__whatsapp span {
  font-size: 12px;
  line-height: 12px;
  font-weight: normal;
  text-transform: uppercase;
}

/*# sourceMappingURL=style.css.map */
