@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: "Hanken Grotesk";
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  overflow-x: hidden;
}

strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: all 0.2s;
  color: #101848;
}

a:hover {
  opacity: 0.7;
}

h1 {
  font-family: "Hanken Grotesk";
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #101848;
  line-height: 110%;
}

h2 {
  font-family: "Hanken Grotesk";
  font-size: clamp(1rem, 6vw, 3.5rem);
  font-weight: 600;
  color: #101848;
  line-height: 100%;
}

h3 {
  font-family: "Hanken Grotesk";
  font-size: clamp(1rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #101848;
  line-height: 100%;
}

p {
  font-family: "Hanken Grotesk";
  font-size: 16px;
  color: #101848;
  line-height: 120%;
}

ul li {
  font-family: "Hanken Grotesk";
  font-style: normal;
  line-height: 120%;
}

.numero-move {
  font-weight: 700;
}

.max-widht-header {
  max-width: 88rem;
  margin: auto;
}

.max-widht {
  max-width: 90rem;
  margin: auto;
}

.max-widht-2 {
  max-width: 97rem;
  margin: auto;
}

p.title {
  font-size: clamp(1rem, 7vw, 6rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 100%;
}

.general-padding {
  padding: 3vw;
}

.general-margin {
  margin: 3vw;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.radius {
  border-radius: 15px;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-corporate {
  background-color: #0091FF;
}

.bg-grey {
  background-color: #f5f5f5;
}

a.default-btn {
  background-color: #0091FF;
  display: flex;
  width: fit-content;
  border-radius: 200px;
  padding: 5px 15px;
}
a.default-btn p {
  font-size: 14px;
  color: white;
  margin-right: 10px;
}

.white-btn {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  display: block;
  border-radius: 200px;
  width: fit-content;
  padding: 5px 15px;
}
.white-btn p {
  font-size: 14px;
}

.general-mt {
  margin-top: 85px;
}

.white-btn:hover {
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

a.social-btn {
  background-color: #0091FF;
  display: flex;
  width: fit-content;
  border-radius: 200px;
  width: 2rem;
  height: 2rem;
}
a.social-btn img {
  padding: 7px;
  width: 2rem;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.border {
  border: 1px solid black;
}

.shadow {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.p-10 {
  padding: 8px;
}

.page-active {
  border-bottom: 3px solid #0091FF;
}

.link-menu.page-active {
  border-bottom: 0px solid #0091FF;
  position: relative;
}
.link-menu.page-active .link-hover {
  opacity: 1;
}
.link-menu.page-active .link-hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0091FF;
  transform: scaleX(1);
  transform-origin: left;
  transition: none;
}
.link-menu.page-active .link-hover:hover::after, .link-menu.page-active .link-hover.active::after {
  transform: none;
}
.link-menu:not(.page-active) .link-hover {
  opacity: 1;
}
.link-menu:not(.page-active) .link-hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0091FF;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
}
.link-menu:not(.page-active) .link-hover:hover::after, .link-menu:not(.page-active) .link-hover.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

div.enviado-ok {
  position: absolute;
  background-color: #FFFFFF;
  padding: 2rem;
  border: 1px solid #0091FF;
  display: none;
}
div.enviado-ok div {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
div.enviado-ok div a {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
div.enviado-ok div a p {
  margin-right: 7px;
  font-size: 1rem;
}
div.enviado-ok p {
  font-size: 1.3rem;
}

@media only screen and (max-width: 1024px) {
  .general-mt {
    margin-top: 105px;
  }

  .link-menu.page-active {
    border-bottom: 0px solid #0091FF;
  }
  .link-menu.page-active .link-hover::after {
    transform: scaleX(0);
  }
  .link-menu.page-active .link-hover:hover::after, .link-menu.page-active .link-hover.active::after {
    transform: none;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 2rem;
  }

  .general-mt {
    margin-top: 85px;
  }
}
.grecaptcha-badge {
  visibility: collapse !important;
}

.flickity-viewport {
  transition: height 0.3s ease;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: fill-available;
  height: -webkit-fill-available;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #FFF;
}

body {
  min-height: 100vh;
  min-height: fill-available;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background-color: #FFF;
  margin: 0 auto;
}

/* ------------------------ */
.rotate {
  transform: rotate(90deg);
  transition: 0.5s;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.novisible {
  display: none;
}

.no-desktop {
  display: none;
}

.no-responsive {
  display: initial;
}

.no-mobile {
  display: initial;
}

.only-mobile {
  display: none;
}

.no-touch {
  display: initial;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.fleft {
  float: left;
  text-align: left;
}

.fright {
  float: right;
  text-align: right;
}

.acenter {
  text-align: center;
}

.wfull {
  width: 100%;
}

.up {
  transform: rotate(180deg);
}

.down {
  transform: rotate(180deg);
}

.ofcover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ofcontain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.vcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* siempre dentro de un relative */
.slider .flickity-page-dots {
  bottom: 20px;
}

.flickity-page-dot {
  background: white;
}

.flickity-page-dot.is-selected {
  background: #0091FF;
}

.slider .flickity-page-dots .dot {
  background: none;
  border: solid 1px #000000;
}

.slider.dots-dentro .flickity-page-dots {
  bottom: 20px;
}

.slider.dots-dentro .flickity-page-dots .dot {
  background: none;
  border: solid 1px #FFFFFF;
}

.mt-1 {
  margin-top: 20vh;
}

.transitionall {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.overflowhidden {
  overflow: hidden;
}

.visuallyhidden {
  position: fixed;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  padding: 0;
  border: 0;
}

.arrow-togle {
  transition: transform 0.3s ease;
}

.arrow-togle.up {
  transform: rotate(0deg);
  /* Flecha hacia la derecha (posición inicial) */
}

.arrow-togle.down {
  transform: rotate(90deg);
  /* Flecha hacia abajo */
}

.flickity-button.flickity-prev-next-button.next {
  box-shadow: 2px 2px 5px 1px #0000003f;
}

.flickity-button.flickity-prev-next-button.next svg {
  fill: #0091FF;
}

.flickity-button.flickity-prev-next-button.previous {
  box-shadow: 2px 2px 5px 1px #0000003f;
}

.flickity-button.flickity-prev-next-button.previous svg {
  fill: #0091FF;
}

@media (max-width: 767px) {
  .w80 {
    width: 90%;
    margin: auto;
  }
}
@media (max-width: 1279px) {
  .no-desktop {
    display: initial;
  }

  .no-responsive {
    display: none;
  }
}
@media (max-width: 767px) {
  .no-mobile {
    display: none;
  }

  .only-mobile {
    display: initial;
  }
}
@media (hover: none) {
  .no-touch {
    display: none;
  }
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Italic.woff2") format("woff2"), url("../fonts/HankenGrotesk-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-ExtraLightItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-BoldItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-SemiBoldItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-ThinItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Regular.woff2") format("woff2"), url("../fonts/HankenGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-LightItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-ExtraBoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-MediumItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-ExtraBold.woff2") format("woff2"), url("../fonts/HankenGrotesk-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Medium.woff2") format("woff2"), url("../fonts/HankenGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-BlackItalic.woff2") format("woff2"), url("../fonts/HankenGrotesk-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Thin.woff2") format("woff2"), url("../fonts/HankenGrotesk-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Light.woff2") format("woff2"), url("../fonts/HankenGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-ExtraLight.woff2") format("woff2"), url("../fonts/HankenGrotesk-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-SemiBold.woff2") format("woff2"), url("../fonts/HankenGrotesk-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Bold.woff2") format("woff2"), url("../fonts/HankenGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Black.woff2") format("woff2"), url("../fonts/HankenGrotesk-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
div.header {
  background-color: #fff;
  position: fixed;
  height: 80px;
  width: 100%;
  top: 0;
  z-index: 9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.117);
  /* Icon 3 */
}
div.header div.popup-menu {
  position: absolute;
  height: 21rem;
  width: 25rem;
  background-color: #fff;
  transform: translateX(-50%);
  border-radius: 25px;
  left: 75%;
  display: none;
  top: calc($altomenu + 10px);
  z-index: 999;
  padding: 1.4rem;
  box-shadow: 0 4px 15px rgba(1, 1, 0, 0.4);
}
div.header div.popup-menu div.head {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  height: 10%;
}
div.header div.popup-menu div.head a {
  display: flex;
  align-items: center;
}
div.header div.popup-menu div.head a P {
  padding-right: 1vw;
  font-size: 18px;
}
div.header div.popup-menu div.head a img {
  width: 1.5rem;
}
div.header div.popup-menu div.content {
  height: 60%;
}
div.header div.popup-menu div.content ul li {
  padding-top: 14px;
}
div.header div.popup-menu div.content ul li a {
  font-size: 26px;
}
div.header div.popup-menu div.content ul li a.blue {
  color: #0091FF;
  font-size: 26px;
}
div.header div.popup-menu div.bottom {
  display: flex;
  padding-top: 2.5rem;
}
div.header div.popup-menu div.bottom div.left {
  width: 50%;
}
div.header div.popup-menu div.bottom div.left a {
  display: flex;
  margin-bottom: 10px;
}
div.header div.popup-menu div.bottom div.left a p {
  font-size: 16px;
  margin-right: 10px;
}
div.header div.popup-menu div.bottom div.right {
  width: 50%;
}
div.header div.popup-menu div.bottom div.right a {
  display: flex;
  margin-bottom: 10px;
}
div.header div.popup-menu div.bottom div.right a p {
  font-size: 16px;
  margin-right: 10px;
}
div.header .wrap {
  display: flex;
  justify-content: center;
  height: 80px;
}
div.header section.w-95 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
div.header section.w-95 .logo-responsive {
  display: none;
}
div.header section.w-95 nav.menu {
  height: 80px;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 99;
}
div.header section.w-95 nav.menu ul.links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
}
div.header section.w-95 nav.menu ul.links .left {
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 3%;
}
div.header section.w-95 nav.menu ul.links .left .link-menu {
  border-right: none;
  height: 100%;
  border-left: 1px solid black;
  width: 40%;
}
div.header section.w-95 nav.menu ul.links .left .logo a.link-hover {
  display: flex;
}
div.header section.w-95 nav.menu ul.links .left .logo a.link-hover img {
  width: 6rem;
}
div.header section.w-95 nav.menu ul.links .left .logo a.logo-lemu {
  margin-top: 5px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}
div.header section.w-95 nav.menu ul.links .left .logo a.logo-lemu svg {
  transition: transform 0.3s ease-out;
  transform-origin: center;
}
div.header section.w-95 nav.menu ul.links .left .logo a.logo-lemu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 30%;
  height: 100%;
  background: white;
  transform: skewX(-25deg);
  transition: left 0.6s ease-out;
  pointer-events: none;
}
div.header section.w-95 nav.menu ul.links .left .logo a.logo-lemu:hover::before {
  left: 120%;
}
div.header section.w-95 nav.menu ul.links .left .logo a.logo-lemu:hover svg {
  transform: scale(1.02) translateZ(0);
  /* Evita el salto vertical */
}
div.header section.w-95 nav.menu ul.links .left .logo a.logo-lemu:hover {
  opacity: 1 !important;
}
div.header section.w-95 nav.menu ul.links .right {
  display: flex;
  align-items: center;
  width: 70%;
  height: 100%;
  justify-content: flex-end;
}
div.header section.w-95 nav.menu ul.links li.link-menu {
  display: flex;
  justify-content: center;
  width: auto;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0px 15px;
  border-right: 1px solid #CCC;
}
div.header section.w-95 nav.menu ul.links li.link-menu a.action-submenu {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
div.header section.w-95 nav.menu ul.links li.link-menu a.action-submenu img {
  width: 8px;
  margin-left: 7px;
  transition: 0.6s;
}
div.header section.w-95 nav.menu ul.links li.link-menu a.link-hover {
  transition: 0.2s;
  width: max-content;
}
div.header section.w-95 nav.menu ul.links li.link-menu a.link-hover img {
  width: 14px;
}
div.header section.w-95 nav.menu ul.links li.link-menu a:hover {
  opacity: 1 !important;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu {
  display: none;
  position: fixed;
  top: 350px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 60rem;
  height: fit-content;
  background-color: #fff;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(1, 1, 0, 0.4);
  overflow: hidden;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .headline {
  width: 100%;
  padding: 1rem;
  padding-bottom: 0;
  display: flex;
  justify-content: flex-end;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .headline a {
  display: flex;
  align-items: center;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .headline a img {
  height: 30px;
  margin-left: 10px;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0rem 1rem;
  flex-wrap: wrap;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia {
  width: 25%;
  border-radius: 15px;
  padding: 1rem;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header {
  padding: 10px;
  padding-bottom: 0;
  font-weight: 600;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header a {
  display: flex;
  align-items: center;
  width: 100%;
  transition: 0, 2s;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header a h3 {
  color: #0091FF;
  font-size: 18px;
  margin-right: 10px;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header a img {
  width: 40px;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header a:hover h3 {
  color: #0091ffbc;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header.divisiones {
  border-radius: 15px;
  background-color: #fff;
  transition: 0, 2s;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header.divisiones h3 {
  color: #0091FF;
  line-height: 130%;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header.divisiones img {
  width: 25px;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia div.content {
  background-color: #fff;
  padding: 10px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia div.content a {
  display: block;
  margin-bottom: 10px;
  transition: 0.2s;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia div.content a p {
  font-size: 16px;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia div.content a:hover p {
  color: #0091FF;
}
div.header section.w-95 nav.menu ul.links li.link-menu ul.submenu.active {
  display: flex;
}
div.header section.w-95 nav.menu ul.links .link-menu.idiomas {
  border-right: none;
}
div.header section.w-95 nav.menu ul.links .link-menu.big {
  width: auto;
}
div.header section.w-95 nav.menu ul.links .link-menu:first-child {
  border-left: 1px solid #CCC;
}
div.header section.w-95 nav.menu .idiomas {
  border-left: 1px solid #CCC;
  width: auto;
}
div.header section.w-95 nav.menu .idiomas .idioma-select {
  display: flex;
  width: 100%;
}
div.header section.w-95 nav.menu .idiomas .idioma-select p {
  cursor: pointer;
  font-size: 16px;
  text-align: right;
}
div.header section.w-95 nav.menu .idiomas .idioma-select img {
  width: 15px;
  margin-left: 10px;
  transition: 0.5s;
}
div.header section.w-95 nav.menu .idiomas .desplegable-idiomas {
  display: none;
  background-color: #0091FF;
  flex-direction: column;
  position: absolute;
  left: 0%;
  top: 100%;
  width: 100%;
  border-bottom: 1px solid #0091FF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px;
  border-radius: 0 0 25px 25px;
}
div.header section.w-95 nav.menu .idiomas .desplegable-idiomas li a {
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}
div.header section.w-95 nav.menu .idiomas .desplegable-idiomas li a:hover {
  color: #101848;
  opacity: 1;
}
div.header section.w-95 nav.menu .idiomas .desplegable-idiomas.active {
  display: flex;
}
div.header section.w-95 nav.menu li.link-btn {
  background-color: #0091FF;
  padding: 5px 15px;
  border-radius: 200px;
  height: fit-content;
  margin: 0px 10px;
}
div.header section.w-95 nav.menu li.link-btn a {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
div.header section.w-95 nav.menu ul.foot-responsive {
  display: none;
}
div.header section.w-95 .menu.active {
  display: flex;
}
div.header .action-nav-mov {
  width: 42px;
  height: 39px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
div.header .action-nav-mov span {
  display: block;
  position: absolute;
  height: 1px;
  width: 80%;
  background: #101848;
  border-radius: 5px;
  opacity: 1;
  left: 20%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
div.header .action-nav-mov span:nth-child(1) {
  top: 7px;
}
div.header .action-nav-mov span:nth-child(2), div.header .action-nav-mov span:nth-child(3) {
  top: 18px;
}
div.header .action-nav-mov span:nth-child(4) {
  top: 29px;
}
div.header .action-nav-mov.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
div.header .action-nav-mov.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
div.header .action-nav-mov.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
div.header .action-nav-mov.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media only screen and (max-width: 1024px) {
  div.header div.popup-menu {
    left: 50%;
  }

  div.header {
    height: 100px !important;
  }
  div.header div.wrap {
    display: flex;
    justify-content: center;
    height: 100px;
  }
  div.header div.wrap .popup-menu {
    left: 50%;
  }
  div.header div.wrap section.w-95 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  div.header div.wrap section.w-95 .logo-responsive {
    width: 83%;
    display: block;
  }
  div.header div.wrap section.w-95 .logo-responsive img {
    width: 6rem;
  }
  div.header div.wrap section.w-95 nav.menu {
    position: absolute;
    height: 70vh;
    width: 100%;
    margin-top: 100px;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
    display: none;
    justify-content: center;
    overflow-y: none;
  }
  div.header div.wrap section.w-95 nav.menu ul.links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    overflow-y: auto;
    border-top: 1px solid black;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .left, div.header div.wrap section.w-95 nav.menu ul.links .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: fit-content;
    margin-left: 0px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .left .logo, div.header div.wrap section.w-95 nav.menu ul.links .right .logo {
    display: none;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .right .link-menu {
    border-top: none;
    border-bottom: 1px solid #101848;
    height: fit-content;
    min-height: 10vw;
    padding: 0;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu, div.header div.wrap section.w-95 nav.menu ul.links .link-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid #101848;
    height: 10vw;
    border-right: none;
    border-left: none;
    border-radius: 0;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu a.action-submenu, div.header div.wrap section.w-95 nav.menu ul.links .link-btn a.action-submenu {
    font-size: 20px;
    line-height: 140%;
    display: flex;
    align-items: center;
    width: 15%;
    min-height: 10vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu a.action-submenu img.arrow-rotate, div.header div.wrap section.w-95 nav.menu ul.links .link-btn a.action-submenu img.arrow-rotate {
    width: 15%;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-hover, div.header div.wrap section.w-95 nav.menu ul.links .link-btn a.link-hover {
    line-height: 130%;
    font-size: 20px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu {
    display: none;
    flex-direction: column;
    position: relative;
    width: 100%;
    overflow-y: auto;
    padding-left: 0vw;
    box-shadow: none;
    top: 0;
    left: 0;
    transform: translate(0%);
    border-radius: 0px;
    height: 70vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .headline, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .headline {
    display: none;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub {
    flex-wrap: nowrap;
    flex-direction: column;
    background-color: #fff;
    padding: 0px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia {
    width: 100%;
    max-width: none;
    margin: 0px;
    border-radius: 0px;
    padding: 10px 0px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia header {
    border-radius: 0;
    justify-content: center;
    border-bottom: 1px solid black;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header a, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia header a {
    width: fit-content;
    padding-bottom: 3vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header a h3, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia header a h3 {
    margin-right: 1rem;
    font-size: 20px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia .content, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia .content {
    border-radius: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia .content a, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia .content a {
    padding: 2vw 0vw;
    border-bottom: 1px solid #101848;
    width: 100%;
    margin-bottom: 0px !important;
    display: flex;
    justify-content: center;
    background-color: rgba(227, 244, 254, 0.478);
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia .content a p, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia .content a p {
    font-size: 20px !important;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu .submenu.active, div.header div.wrap section.w-95 nav.menu ul.links .link-btn .submenu.active {
    display: flex;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .link-menu.big {
    border-top: none;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas {
    border-bottom: 1px solid black;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .idioma-select {
    height: fit-content;
    min-height: 10vw;
    padding-left: 0vw;
    justify-content: center;
    align-items: center;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .idioma-select p {
    font-size: 20px;
    font-weight: 400;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas {
    top: 0;
    left: 0%;
    padding-left: 0vw;
    background-color: transparent;
    box-shadow: none;
    border-bottom: none;
    width: fit-content;
    height: auto;
    margin-top: -4vw;
    position: relative;
    padding-top: 1vh;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas li a {
    font-size: 20px;
    margin-left: 0;
    line-height: 180%;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas.active {
    display: flex;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas.link-menu {
    height: fit-content;
    min-height: 10vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas.link-menu ul {
    text-align: center;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas.link-menu ul li a {
    color: #000;
    text-align: center;
  }
  div.header div.wrap section.w-95 nav.menu ul.foot-responsive {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0091FF;
    min-height: 25vh;
  }
  div.header div.wrap section.w-95 nav.menu ul.foot-responsive li p {
    font-family: 16px;
    font-size: 20px;
  }
  div.header div.wrap section.w-95 .menu.active {
    display: flex;
  }
  div.header div.wrap .action-nav-mov {
    margin-right: 5%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  div.header {
    height: 80px !important;
  }
  div.header div.popup-menu {
    height: 90vw;
    max-height: 25rem;
    width: 94vw;
    max-width: 25rem;
    top: 100%;
  }
  div.header div.popup-menu .bottom .left a p, div.header div.popup-menu .bottom .right a p {
    font-size: 14px !important;
  }
  div.header div.wrap {
    height: 80px;
  }
  div.header div.wrap section.w-95 .logo-responsive {
    width: 78%;
  }
  div.header div.wrap section.w-95 .logo-responsive img {
    width: 5.5rem;
  }
  div.header div.wrap section.w-95 nav.menu {
    margin-top: 80px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .left .link-menu {
    min-height: 15vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu, div.header div.wrap section.w-95 nav.menu ul.links .link-btn {
    height: 15vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu a.action-submenu, div.header div.wrap section.w-95 nav.menu ul.links .link-btn a.action-submenu {
    font-size: 16px;
    min-height: 15vw;
    width: 25%;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu a.link-hover, div.header div.wrap section.w-95 nav.menu ul.links .link-btn a.link-hover {
    font-size: 16px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia .divisiones, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia .divisiones {
    border-top: 1px solid #0091FF;
    background-color: #e4e4e4;
    max-height: 15vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia .divisiones img, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia .divisiones img {
    width: 2vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia header a h3, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia header a h3 {
    font-size: 16px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links li.link-menu ul.submenu .wrap-sub div.familia .content a p, div.header div.wrap section.w-95 nav.menu ul.links .link-btn ul.submenu .wrap-sub div.familia .content a p {
    font-size: 16px !important;
    text-align: center;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .link-menu.big {
    height: 15vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .idioma-select p {
    font-size: 16px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas {
    height: fit-content;
    left: -2.3%;
    padding-top: 3.5vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas .desplegable-idiomas li a {
    font-size: 16px;
  }
  div.header div.wrap section.w-95 nav.menu ul.links .idiomas.link-menu {
    min-height: 15vw;
  }
  div.header div.wrap section.w-95 nav.menu ul.foot-responsive {
    background-color: #0091FF;
  }
  div.header div.wrap section.w-95 nav.menu ul.foot-responsive li p {
    font-family: 16px;
    font-size: 16px;
  }
}
footer div.wrap {
  margin: 3vw;
  border-radius: 25px;
  padding: 3vw;
  display: flex;
  flex-direction: column;
}
footer div.wrap div.head div.logo img {
  width: 6rem;
}
footer div.wrap div.content {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
footer div.wrap div.content div.left div.text p {
  font-size: 16px;
}
footer div.wrap div.content div.left a.default-btn {
  margin-top: 1rem;
}
footer div.wrap div.content div.left div.social {
  display: flex;
  margin-top: 1rem;
}
footer div.wrap div.content div.left div.social a.social-btn {
  margin-right: 5px;
}
footer div.wrap div.content div.right {
  width: 35%;
  display: flex;
  justify-content: space-between;
}
footer div.wrap div.content div.right div.col {
  display: flex;
  flex-direction: column;
}
footer div.wrap div.content div.right div.col a {
  line-height: 150%;
}
footer div.wrap div.foot {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer div.wrap div.foot div.legal {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
footer div.wrap div.foot p {
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  footer div.wrap div.content {
    flex-direction: column;
  }
  footer div.wrap div.content div.left {
    width: 100%;
  }
  footer div.wrap div.content div.left div.text p {
    font-size: 16px;
  }
  footer div.wrap div.content div.left div.social a.social-btn {
    margin-right: 5px;
  }
  footer div.wrap div.content div.right {
    width: 70%;
    margin-top: 2rem;
  }
  footer div.wrap div.content div.right div.col a {
    line-height: 180%;
  }
  footer div.wrap div.foot div.legal {
    width: 100%;
    flex-direction: column;
  }
  footer div.wrap div.foot div.legal a {
    line-height: 180%;
  }
  footer div.wrap div.foot p {
    font-size: 16px;
    align-self: flex-end;
    margin-bottom: 4px;
  }
}
section.home-hero {
  margin-top: 80px;
}
section.home-hero div.content {
  position: relative;
  height: 37vw;
  max-height: 40rem;
  overflow: hidden;
}
section.home-hero div.content .slider {
  height: 37vw;
  max-height: 40rem;
  width: 100%;
}
section.home-hero div.content .slider .slide {
  height: 100%;
  width: 100%;
}
section.home-hero div.content div.absolute {
  position: absolute;
  top: 0;
  left: 0;
}
section.home-hero div.content div.absolute div.text {
  padding-top: 4vw;
}
section.home-hero div.content div.absolute div.text p.title span {
  color: #0091FF;
}
section.home-hero div.content div.absolute div.text h1 {
  color: #fff;
  width: 80%;
  max-width: 50rem;
  padding-top: 1vw;
}
section.home-hero div.content div.absolute div.text .default-btn {
  margin-top: 2vw;
}
@media (max-width: 820px) {
  section.home-hero {
    margin-top: 100px;
  }
  section.home-hero div.content {
    height: 34vh;
  }
  section.home-hero div.content .slider {
    height: 34vh;
    width: 100%;
  }
  section.home-hero div.content .slider .slide {
    height: 100%;
    width: 100%;
  }
  section.home-hero div.content div.absolute div.text p.title span {
    color: #0091FF;
  }
}
@media (max-width: 767px) {
  section.home-hero {
    margin-top: 85px;
  }
  section.home-hero div.content {
    height: 55vh;
  }
  section.home-hero div.content .slider {
    height: 55vh;
    width: 100%;
  }
  section.home-hero div.content .slider .slide {
    height: 100%;
    width: 100%;
  }
  section.home-hero div.content div.absolute div.text {
    margin-top: 7vw;
  }
  section.home-hero div.content div.absolute div.text p.title {
    font-size: 2.5rem;
  }
  section.home-hero div.content div.absolute div.text p.title span {
    color: #0091FF;
  }
  section.home-hero div.content div.absolute div.text h1 {
    margin-top: 3vw;
  }
  section.home-hero div.content div.absolute div.text .default-btn {
    margin-top: 2rem;
  }
}
section.home-section-grupo {
  padding-top: 1vw;
}
section.home-section-grupo div.content {
  display: flex;
}
section.home-section-grupo div.content div.left {
  width: 50%;
  padding-right: 2vw;
}
section.home-section-grupo div.content div.left h2 {
  margin-bottom: 1vw;
}
section.home-section-grupo div.content div.left p {
  max-width: 30rem;
}
section.home-section-grupo div.content div.left div.datos {
  display: flex;
  display: flex;
  flex-wrap: wrap;
}
section.home-section-grupo div.content div.left div.datos div.dato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-right: 1.5vw;
}
section.home-section-grupo div.content div.left div.datos div.dato p.number {
  font-size: 3vw;
}
section.home-section-grupo div.content div.left div.datos div.dato p.number strong {
  font-weight: 700;
}
section.home-section-grupo div.content div.right {
  width: 50%;
  padding-right: 2vw;
}
section.home-section-grupo div.content div.right div.conocenos {
  display: flex;
  margin-top: 2vw;
  margin-bottom: 2vw;
  align-items: center;
  position: relative;
}
section.home-section-grupo div.content div.right div.conocenos a {
  width: 6vw;
  max-width: 5rem;
  margin-right: 7px;
}
section.home-section-grupo div.content div.right div.conocenos a img {
  height: 100%;
  width: 100%;
  border-radius: 300px;
}
section.home-section-grupo div.content div.right div.conocenos div.boton {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 5px 15px;
  height: 1.6rem;
}
section.home-section-grupo div.content div.right div.conocenos div.boton p {
  margin-left: 10px;
  margin-bottom: 1px;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos {
  position: absolute;
  right: -2vw;
  width: 30rem;
  height: 20rem;
  border-radius: 25px;
  display: none;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona {
  height: 100%;
  width: 100%;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona div.close-popup-conocenos {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: absolute;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona div.close-popup-conocenos a {
  width: 1.5rem;
  margin: 10px;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona .text {
  background-color: #fff;
  position: absolute;
  width: 27.9rem;
  height: fit-content;
  left: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 1rem;
  margin: 1rem;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona .text h3 {
  color: #0091FF;
  font-size: 1.2rem;
  margin-bottom: 7px;
}
section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona .text p {
  font-size: 13px;
}
section.home-section-grupo div.content div.right a.default-btn {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  section.home-section-grupo div.content {
    flex-direction: column;
  }
  section.home-section-grupo div.content div.left {
    width: 100%;
  }
  section.home-section-grupo div.content div.left h2 {
    margin-bottom: 1vw;
  }
  section.home-section-grupo div.content div.left p {
    max-width: 30rem;
  }
  section.home-section-grupo div.content div.left div.datos {
    justify-content: center;
  }
  section.home-section-grupo div.content div.left div.datos div.dato {
    margin: 10px;
    margin-top: 0px;
  }
  section.home-section-grupo div.content div.left div.datos div.dato p.number {
    font-size: 2.5rem;
  }
  section.home-section-grupo div.content div.right {
    width: 100%;
    margin-top: 1.5rem;
  }
  section.home-section-grupo div.content div.right div.conocenos {
    margin-top: 2rem;
  }
  section.home-section-grupo div.content div.right div.conocenos a {
    width: 3rem;
  }
  section.home-section-grupo div.content div.right div.conocenos a img {
    height: 100%;
    width: 100%;
  }
  section.home-section-grupo div.content div.right div.conocenos .popup-conocenos {
    width: 90vw;
    height: 65vh;
    right: 0vw;
  }
  section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona {
    height: 100%;
    width: 100%;
  }
  section.home-section-grupo div.content div.right div.conocenos .popup-conocenos .persona .text {
    width: 90%;
    height: fit-content;
  }
}
section.home-section-desplegable {
  padding-top: 1vw;
}
section.home-section-desplegable div.content {
  display: flex;
}
section.home-section-desplegable div.content div.left {
  width: 50%;
  padding-right: 2vw;
}
section.home-section-desplegable div.content div.right {
  width: 50%;
  padding-right: 2vw;
}
section.home-section-desplegable div.content div.right ul {
  width: 100%;
}
section.home-section-desplegable div.content div.right ul li {
  width: 100%;
  border-bottom: 1px solid black;
  padding: 5px 0px;
}
section.home-section-desplegable div.content div.right ul li a {
  display: flex;
  justify-content: space-between;
}
section.home-section-desplegable div.content div.right ul li a div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.home-section-desplegable div.content div.right ul li a div p {
  margin-right: 1rem;
  font-size: 27px;
}
section.home-section-desplegable div.content div.right ul li a div img {
  padding: 5px;
  height: 3rem;
}
section.home-section-desplegable div.content div.right ul li a img.arrow-togle {
  width: 1.5rem;
}
section.home-section-desplegable div.content div.right ul li div.desplegable {
  margin-bottom: 1rem;
  display: none;
}
section.home-section-desplegable div.content div.right ul li div.desplegable .default-btn {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  section.home-section-desplegable {
    padding-top: 5vw;
  }
  section.home-section-desplegable div.content {
    flex-direction: column;
  }
  section.home-section-desplegable div.content div.left {
    width: 100%;
    margin-bottom: 1rem;
  }
  section.home-section-desplegable div.content div.right {
    width: 100%;
  }
  section.home-section-desplegable div.content div.right ul {
    width: 100%;
  }
  section.home-section-desplegable div.content div.right ul li div.desplegable .default-btn {
    margin-top: 1rem;
  }
}
section.default-hero {
  margin-top: 80px;
  position: relative;
}
section.default-hero div.content {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
section.default-hero div.content h1 {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
}
section.default-hero div.content div.bottom {
  display: flex;
  align-items: center;
}
section.default-hero div.content div.bottom .left {
  width: 30%;
}
section.default-hero div.content div.bottom .center {
  text-align: center;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.default-hero div.content div.bottom .center .default-btn {
  margin-top: 1rem;
}
section.default-hero div.content div.bottom .center .default-btn p {
  margin-right: 0;
}
section.default-hero div.content div.bottom .right {
  width: 30%;
}
section.default-hero div.cards-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
section.default-hero div.cards-wrap div.cards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 80%;
  flex-wrap: wrap;
}
section.default-hero div.cards-wrap div.cards a.card {
  width: 15vw;
  max-width: 10rem;
  height: 7vw;
  max-height: 5rem;
  margin: 1rem;
  padding: 4px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.default-hero div.cards-wrap div.cards a.card p {
  font-size: 16px;
  text-align: center;
}
section.default-hero div.cards-wrap div.cards .card:hover {
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

@media (max-width: 820px) {
  section.default-hero {
    margin-top: 12vw;
  }
}
@media (max-width: 767px) {
  section.default-hero {
    margin-top: 22vw;
  }
  section.default-hero div.content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  section.default-hero div.content h1 {
    line-height: 100%;
  }
  section.default-hero div.content div.bottom {
    flex-direction: column;
    margin-top: 1rem;
  }
  section.default-hero div.content div.bottom .left {
    order: 2;
    width: 100%;
  }
  section.default-hero div.content div.bottom .center {
    order: 1;
    width: 100%;
  }
  section.default-hero div.content div.bottom .right {
    order: 3;
    width: 100%;
    display: none;
  }
  section.default-hero div.cards-wrap div.cards {
    top: 83%;
    border-radius: 300px;
  }
  section.default-hero div.cards-wrap div.cards a.card {
    width: 8rem;
    height: 2rem;
    margin: 3px;
    padding: 20px 4px;
  }
}
section.default-cta {
  position: relative;
  z-index: 9;
}
section.default-cta a.action-cta {
  background-color: #0091FF;
  width: 6rem;
  height: 6rem;
  border-radius: 300px;
  position: fixed;
  right: 5%;
  bottom: 5%;
  display: flex;
  trasnsition: 0.3s;
  justify-content: center;
  align-items: center;
}
section.default-cta a.action-cta img {
  transition: 0.3s;
}
section.default-cta a.action-cta.close {
  display: none;
}
section.default-cta a.action-cta.close img {
  width: 1.8rem;
}
section.default-cta a.action-cta.check {
  display: none;
}
section.default-cta a.action-cta.close.active {
  display: flex;
}
section.default-cta a.action-cta.check.active {
  display: flex;
}
section.default-cta div.form-cta {
  position: fixed;
  background-color: #fff;
  z-index: 9;
  width: 35rem;
  right: 10%;
  bottom: 16%;
  padding: 1.5rem;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  display: none;
}
section.default-cta div.form-cta form div.close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
section.default-cta div.form-cta form div.close a.action-close-cta-form {
  display: flex;
  align-items: center;
}
section.default-cta div.form-cta form div.close a.action-close-cta-form p {
  margin-right: 10px;
}
section.default-cta div.form-cta form h3 {
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 34px;
}
section.default-cta div.form-cta form div.wrap {
  display: flex;
}
section.default-cta div.form-cta form div.wrap div.left {
  width: 50%;
  margin-right: 1.5rem;
}
section.default-cta div.form-cta form div.wrap div.left label {
  display: block;
  margin: 10px 0 5px;
  font-family: "Hanken Grotesk";
  resize: none;
  font-size: 14px;
  padding: 1px 0px;
}
section.default-cta div.form-cta form div.wrap div.left input, section.default-cta div.form-cta form div.wrap div.left textarea, section.default-cta div.form-cta form div.wrap div.left select {
  width: 100%;
  border: none;
  padding: 10px 0px;
  margin-bottom: 15px;
  border-bottom: 1px solid grey;
  color: gray;
  font-family: "Hanken Grotesk";
  resize: none;
}
section.default-cta div.form-cta form div.wrap div.left input:focus, section.default-cta div.form-cta form div.wrap div.left textarea:focus, section.default-cta div.form-cta form div.wrap div.left select:focus {
  border-color: #0091FF;
  outline: none;
}
section.default-cta div.form-cta form div.wrap div.left input option, section.default-cta div.form-cta form div.wrap div.left textarea option, section.default-cta div.form-cta form div.wrap div.left select option {
  font-weight: 100;
}
section.default-cta div.form-cta form div.wrap div.right {
  width: 50%;
}
section.default-cta div.form-cta form div.wrap div.right input, section.default-cta div.form-cta form div.wrap div.right textarea, section.default-cta div.form-cta form div.wrap div.right select {
  width: 100%;
  border: none;
  padding: 10px 0px;
  margin-bottom: 15px;
  border-bottom: 1px solid grey;
  color: gray;
  font-family: "Hanken Grotesk";
  resize: none;
}
section.default-cta div.form-cta form div.wrap div.right input:focus, section.default-cta div.form-cta form div.wrap div.right textarea:focus, section.default-cta div.form-cta form div.wrap div.right select:focus {
  border-color: #0091FF;
  outline: none;
}
section.default-cta div.form-cta form div.wrap div.right input option, section.default-cta div.form-cta form div.wrap div.right textarea option, section.default-cta div.form-cta form div.wrap div.right select option {
  font-weight: 100;
}
section.default-cta div.form-cta form div.wrap div.right input[type=checkbox] {
  width: auto;
  margin-right: 10px;
}
section.default-cta div.form-cta form div.wrap div.right .checkbox-label {
  display: flex;
  align-items: center;
}
section.default-cta div.form-cta form div.wrap div.right .checkbox-label label {
  margin-top: -12px;
  font-size: 12px;
  color: black;
}
section.default-cta div.form-cta form div.wrap div.right button, section.default-cta div.form-cta form div.wrap div.right .form-envio {
  width: fit-content;
  transition: 0.3s;
  padding: 5px 15px;
  background-color: #0091FF;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}
section.default-cta div.form-cta form div.wrap div.right button:hover, section.default-cta div.form-cta form div.wrap div.right .form-envio:hover {
  opacity: 0.7;
}
section.default-cta .form-cta .active {
  display: flex;
  /* opacity:1; visibility:visible; transition:opacity 0.3s ease; */
}
section.default-cta a.action-cta:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  section.default-cta a.action-cta {
    width: 4rem;
    height: 4rem;
  }
  section.default-cta a.action-cta img {
    width: 2.6rem;
  }
  section.default-cta div.form-cta {
    width: 90vw;
    right: 5%;
    bottom: 15%;
  }
  section.default-cta div.form-cta form .close {
    margin-bottom: 0;
  }
  section.default-cta div.form-cta form h3 {
    margin-bottom: 1rem;
    font-size: 30px;
  }
  section.default-cta div.form-cta form div.wrap {
    flex-direction: column;
  }
  section.default-cta div.form-cta form div.wrap div.left {
    width: 100%;
  }
  section.default-cta div.form-cta form div.wrap div.left select {
    margin-bottom: 5px;
  }
  section.default-cta div.form-cta form div.wrap div.right {
    width: 100%;
  }
  section.default-cta div.form-cta form div.wrap div.right input {
    margin-bottom: 5px;
  }
  section.default-cta div.form-cta form div.wrap div.right .checkbox-label {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  section.default-cta div.form-cta form div.wrap div.right .checkbox-label label {
    margin-top: 0px;
  }
}
article.automatizacion section.default-hero-tarjeta {
  margin-top: 80px;
  position: relative;
}
article.automatizacion section.default-hero-tarjeta img {
  max-height: 40vw;
}
article.automatizacion section.default-hero-tarjeta div.tarjeta {
  position: absolute;
  max-width: 34rem;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2vw;
}
article.automatizacion section.default-hero-tarjeta div.tarjeta h1 {
  font-size: 50px;
  line-height: 90%;
}
article.automatizacion section.default-hero-tarjeta div.tarjeta p {
  font-size: 16px;
  margin-top: 10px;
}

@media (max-width: 820px) {
  article.automatizacion section.default-hero-tarjeta {
    margin-top: 100px;
  }
  article.automatizacion section.default-hero-tarjeta img {
    max-height: 50vw;
  }
  article.automatizacion section.default-hero-tarjeta .tarjeta {
    width: 60vw;
  }
}
@media (max-width: 767px) {
  article.automatizacion img {
    max-height: 100vw;
  }
  article.automatizacion section.default-hero-tarjeta {
    margin-top: 85px;
    height: 60vh;
  }
  article.automatizacion section.default-hero-tarjeta div.tarjeta {
    background-color: rgba(255, 255, 255, 0.824);
    width: 85vw;
  }
  article.automatizacion section.default-hero-tarjeta div.tarjeta h1 {
    font-size: 45px;
    line-height: 90%;
  }
  article.automatizacion section.default-hero-tarjeta div.tarjeta p {
    font-size: 16px;
    margin-top: 10px;
  }
}
section.default-section-blocks {
  background-color: #0091FF;
}
section.default-section-blocks div.wrap {
  display: flex;
}
section.default-section-blocks div.wrap .left {
  width: 50%;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.default-section-blocks div.wrap .left header h1 {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(1rem, 6vw, 3.5rem);
}
section.default-section-blocks div.wrap .left header h2 {
  color: white;
  margin-bottom: 20px;
}
section.default-section-blocks div.wrap .left header h3 {
  color: white;
}
section.default-section-blocks div.wrap .left p {
  color: white;
  width: 80%;
}
section.default-section-blocks div.wrap .right {
  width: 50%;
}
section.default-section-blocks div.wrap .right img {
  display: block;
}
section.default-section-blocks .wrap:nth-child(2) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  section.default-section-blocks div.wrap {
    flex-direction: column;
  }
  section.default-section-blocks div.wrap .left {
    width: 100%;
    padding: 1rem;
  }
  section.default-section-blocks div.wrap .right {
    width: 100%;
  }
  section.default-section-blocks .wrap:nth-child(2) {
    flex-direction: column;
  }
}
section div.carousel {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
section div.carousel div.marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}
section div.carousel div.slide-marquee {
  display: flex;
}
section div.carousel div.slide-marquee p {
  font-size: 20rem;
  font-weight: 600;
  color: black;
  line-height: 90%;
  margin-right: 8rem;
}
section div.carousel div.slide-marquee p.slide-lite {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  line-height: 90%;
  margin-right: 1rem;
  height: 1rem;
}
section div.carousel div.slide-marquee p.slide-lite-white {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  line-height: 90%;
  margin-right: 1rem;
  height: 1rem;
}

@media (max-width: 767px) {
  section div.carousel div.slide-marquee p {
    font-size: 14rem;
    margin-right: 6rem;
  }
}
section.default-section-automatizacion header {
  width: 50%;
}
section.default-section-automatizacion div.content {
  display: flex;
  margin-top: 1rem;
}
section.default-section-automatizacion div.content div.box {
  width: 33.3%;
  position: relative;
  height: 38vw;
  max-height: 30rem;
  border-right: 1px solid black;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
section.default-section-automatizacion div.content div.box img.pic-absol {
  position: absolute;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
section.default-section-automatizacion div.content div.box div.absolute {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
section.default-section-automatizacion div.content div.box div.absolute div.ico {
  height: 10vw;
}
section.default-section-automatizacion div.content div.box div.absolute div.ico object {
  width: 4rem;
}
section.default-section-automatizacion div.content div.box div.absolute div.ico img {
  width: 4rem;
}
section.default-section-automatizacion div.content div.box div.absolute a.action-desplegable-divisiones {
  display: flex;
  align-items: flex-start;
}
section.default-section-automatizacion div.content div.box div.absolute a.action-desplegable-divisiones p {
  width: 80%;
}
section.default-section-automatizacion div.content div.box div.absolute a.action-desplegable-divisiones img.arrow-list {
  margin-left: 2rem;
  margin-top: 5px;
  transition: 0.3s;
}
section.default-section-automatizacion div.content div.box div.absolute ul.lista-divisiones {
  display: none;
}
section.default-section-automatizacion div.content div.box div.absolute ul.lista-divisiones li a:hover {
  color: #0091FF;
}
section.default-section-automatizacion div.content div.box div.absolute ul.lista-divisiones.active {
  display: flex;
}
section.default-section-automatizacion div.content .box:hover .pic-absol {
  opacity: 1;
}
section.default-section-automatizacion div.content .box:last-child {
  border-right: none;
}
section.default-section-automatizacion div.content .box:last-child img.pic-absol {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
section.default-section-automatizacion div.content .box:nth-child(2) img.pic-absol {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
section.default-section-automatizacion div.bottom {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  section.default-section-automatizacion header {
    width: 100%;
  }
  section.default-section-automatizacion div.content {
    flex-direction: column;
  }
  section.default-section-automatizacion div.content div.box {
    width: 100%;
    min-height: 45vw;
    height: fit-content;
    border-right: 0px;
    border-bottom: 1px solid black;
  }
  section.default-section-automatizacion div.content div.box img.pic-absol {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 0px;
  }
  section.default-section-automatizacion div.content div.box div.absolute {
    position: relative;
  }
  section.default-section-automatizacion div.content div.box div.absolute div.ico {
    height: 25vw;
  }
  section.default-section-automatizacion div.content div.box div.absolute div.ico img {
    width: 4rem;
  }
  section.default-section-automatizacion div.content div.box div.absolute a.action-desplegable-divisiones p {
    width: 80%;
  }
  section.default-section-automatizacion div.content div.box div.absolute ul.lista-divisiones {
    display: none;
    margin-left: 10px;
    margin-top: 5px;
  }
  section.default-section-automatizacion div.content div.box div.absolute ul.lista-divisiones li {
    margin-top: 6px;
  }
  section.default-section-automatizacion div.content div.box div.absolute ul.lista-divisiones li a:hover {
    color: #0091FF;
  }
  section.default-section-automatizacion div.content div.box div.absolute ul.lista-divisiones.active {
    display: flex;
  }
  section.default-section-automatizacion div.content .box:hover .pic-absol {
    opacity: 1;
  }
  section.default-section-automatizacion div.content .box:last-child {
    border-bottom: 0px;
  }
  section.default-section-automatizacion div.content .box:last-child img.pic-absol {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 15px;
  }
  section.default-section-automatizacion div.content .box:nth-child(2) img.pic-absol {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  section.default-section-automatizacion div.bottom {
    margin-top: 1rem;
  }
}
section.default-section-slider {
  margin-top: 2rem;
}
section.default-section-slider div.content div.slider {
  width: 100%;
  height: 34vw;
  max-height: 22rem;
}
section.default-section-slider div.content div.slider div.slide {
  width: 47vw;
  max-width: 30rem;
  height: 34vw;
  max-height: 22rem;
  margin: 1rem;
  border-radius: 15px;
}
section.default-section-slider div.content div.slider div.slide img {
  width: 47vw;
  max-width: 30rem;
  height: 90%;
  border-radius: 20px;
}

@media (max-width: 767px) {
  section.default-section-slider {
    margin-top: 1rem;
  }
  section.default-section-slider div.content div.slider {
    width: 100%;
    height: 47vw;
    max-height: 22rem;
  }
  section.default-section-slider div.content div.slider div.slide {
    width: 60vw;
    max-width: 35rem;
    height: 100%;
    max-height: 22rem;
    margin: 1rem;
    border-radius: 15px;
  }
  section.default-section-slider div.content div.slider div.slide a img {
    width: 62vw;
    max-width: 30rem;
    height: 38vw;
    border-radius: 20px;
  }
}
section.default-section-maquinas {
  padding-top: 0;
  padding-bottom: 0;
}
section.default-section-maquinas div.maquinas {
  padding-top: 2rem;
}
section.default-section-maquinas div.maquinas header {
  text-align: center;
  width: 70%;
  justify-self: center;
}
section.default-section-maquinas div.maquinas header h2 {
  font-size: 50px;
}
section.default-section-maquinas div.maquinas div.maquinas-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1rem;
}
section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina {
  display: flex;
  flex: 1 1 calc(33.33% - 1rem);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 16rem;
  width: 26vw;
  max-width: 20rem;
  padding: 2.5vw 2vw;
}
section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.text p {
  text-align: center;
  line-height: 100%;
  margin-top: 0.5rem;
  min-height: 3rem;
}
section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.pic {
  width: 28vw;
  max-width: 23rem;
  min-height: 18rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 2rem;
}
section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.pic img {
  mix-blend-mode: multiply;
}
section.default-section-maquinas .division.none {
  display: none;
}

@media (max-width: 1024px) {
  section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.text {
    min-height: 3rem;
  }
  section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.pic {
    min-height: 15rem;
    padding: 1rem;
  }
  section.default-section-maquinas .division.none {
    display: none;
  }
}
@media (max-width: 767px) {
  section.default-section-maquinas div.maquinas header {
    width: 100%;
  }
  section.default-section-maquinas div.maquinas header h2 {
    font-size: 45px;
    line-height: 100%;
    margin-bottom: 10px;
  }
  section.default-section-maquinas div.maquinas div.maquinas-wrap {
    margin-top: 10px;
  }
  section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina {
    width: 30vw;
    margin-top: 10px;
  }
  section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.text h2 {
    font-size: 45px;
  }
  section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.text p {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 5px;
  }
  section.default-section-maquinas div.maquinas div.maquinas-wrap div.maquina div.pic {
    width: 80vw;
    padding: 0rem;
  }
}
section.default-section-form {
  padding-bottom: 0;
}
section.default-section-form header h2 {
  font-size: 27px;
  font-weight: 400;
  margin-bottom: 3vw;
}
section.default-section-form div.wrap {
  display: flex;
  width: 65vw;
}
section.default-section-form div.wrap div.left {
  width: 50%;
}
section.default-section-form div.wrap div.left form label {
  display: block;
  margin: 10px 0 5px;
  color: gray;
  font-family: "Hanken Grotesk";
  resize: none;
  font-size: 14px;
}
section.default-section-form div.wrap div.left form input, section.default-section-form div.wrap div.left form textarea, section.default-section-form div.wrap div.left form select {
  width: 100%;
  padding: 10px 0px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 1px solid grey;
  color: gray;
  font-family: "Hanken Grotesk";
  resize: none;
}
section.default-section-form div.wrap div.left form input:focus, section.default-section-form div.wrap div.left form textarea:focus, section.default-section-form div.wrap div.left form select:focus {
  border-color: #0091FF;
  outline: none;
}
section.default-section-form div.wrap div.left form input option, section.default-section-form div.wrap div.left form textarea option, section.default-section-form div.wrap div.left form select option {
  font-weight: 100;
}
section.default-section-form div.wrap div.left form textarea {
  margin-top: 0px;
  padding-top: 5px;
}
section.default-section-form div.wrap div.left form input[type=checkbox] {
  width: auto;
  margin-right: 10px;
}
section.default-section-form div.wrap div.left form .checkbox-label {
  display: flex;
  align-items: center;
}
section.default-section-form div.wrap div.left form .checkbox-label label {
  margin-top: -5px;
  font-size: 12px;
  color: black;
}
section.default-section-form div.wrap div.left form button, section.default-section-form div.wrap div.left form .form-envio {
  width: fit-content;
  transition: 0.3s;
  padding: 5px 15px;
  background-color: #0091FF;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}
section.default-section-form div.wrap div.left form button:hover, section.default-section-form div.wrap div.left form .form-envio:hover {
  opacity: 0.7;
}
section.default-section-form div.wrap div.left form .select2-container--default .select2-selection--single .select2-selection__rendered {
  width: 100% !important;
  padding: 10px 0;
  margin-bottom: 15px;
  border: 0;
  border-bottom: none;
  color: gray;
  font-family: "Hanken Grotesk";
  resize: none;
  font-size: 14px;
}
section.default-section-form div.wrap div.left form .select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 0px;
  border-radius: 4px;
}
section.default-section-form div.wrap div.left form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 14px;
}
section.default-section-form div.wrap div.left form .select2-container--open .select2-dropdown--below {
  margin-top: 11px !important;
}
section.default-section-form div.wrap div.left form .select2-container {
  line-height: 28px;
  font-size: 14px;
}
section.default-section-form div.wrap div.right {
  width: 50%;
  margin-left: 3vw;
  margin-top: 10vw;
}
section.default-section-form div.wrap div.right p {
  font-size: 27px;
}
section.default-section-form div.wrap div.right a.contact {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
section.default-section-form div.wrap div.right a.contact img {
  margin-right: 1rem;
}
section.default-section-form div.wrap div.right a.contact p {
  font-size: 16px;
}
section.default-section-form div.enviado-ok {
  position: absolute;
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #0091FF;
  display: none;
}
section.default-section-form div.enviado-ok div {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
section.default-section-form div.enviado-ok div a {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
section.default-section-form div.enviado-ok div a p {
  margin-right: 7px;
  font-size: 1rem;
}
section.default-section-form div.enviado-ok p {
  font-size: 1.3rem;
}

article.trabaja .default-section-slider {
  margin-top: 0px;
}

@media only screen and (max-width: 820px) {
  section.default-section-form div.wrap {
    display: flex;
    width: 100%;
  }
  section.default-section-form div.wrap div.right {
    padding-left: 10vw;
  }
}
@media only screen and (max-width: 767px) {
  section.default-section-form div.wrap {
    flex-direction: column-reverse;
    width: 100%;
  }
  section.default-section-form div.wrap div.left {
    width: 100%;
  }
  section.default-section-form div.wrap div.right {
    margin-left: 0vw;
    padding-left: 0vw;
    width: 100%;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  section.default-section-form div.wrap div.right p {
    font-size: 27px;
  }
  section.default-section-form div.wrap div.right a.contact {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
  }
  section.default-section-form div.wrap div.right a.contact img {
    margin-right: 1rem;
    width: 2.5rem;
  }
  section.default-section-form div.wrap div.right a.contact p {
    font-size: 16px;
    width: fit-content;
  }
  section.default-section-form div.enviado-ok {
    bottom: -70%;
    margin: 2rem;
    padding-top: 1rem;
  }
  section.default-section-form div.enviado-ok p {
    font-size: 1.2rem;
  }
}
section.divisiones-section-filtro div.filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.divisiones-section-filtro div.filter a.white-btn {
  margin-top: 15px;
  margin-right: 15px;
}
section.divisiones-section-filtro div.filter a.white-btn.active {
  background-color: #0091FF;
}
section.divisiones-section-filtro div.filter a.white-btn.active p {
  color: white;
}
section.divisiones-section-filtro div.division {
  margin-top: 2rem;
}
section.divisiones-section-filtro div.division div.division-wrap {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
section.divisiones-section-filtro div.division div.division-wrap div.sub-division {
  display: flex;
  flex: 1 1 calc(33.33% - 1rem);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 28.5vw;
  max-width: 23rem;
  padding: 2.5vw 2vw;
}
section.divisiones-section-filtro div.division div.division-wrap div.sub-division div.text h2 {
  font-size: 1.2rem;
  text-align: center;
  color: #0091FF;
}
section.divisiones-section-filtro div.division div.division-wrap div.sub-division div.text p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 100%;
  margin-top: 0.5rem;
}
section.divisiones-section-filtro div.division div.division-wrap div.sub-division div.pic {
  width: 28vw;
  max-width: 23rem;
}
section.divisiones-section-filtro .division.none {
  display: none;
}

@media (max-width: 767px) {
  section.divisiones-section-filtro div.division div.division-wrap {
    margin-top: 0rem;
  }
  section.divisiones-section-filtro div.division div.division-wrap div.sub-division {
    width: 43vw;
    margin-top: 1rem;
  }
  section.divisiones-section-filtro div.division div.division-wrap div.sub-division div.text h2 {
    font-size: 1rem;
  }
  section.divisiones-section-filtro div.division div.division-wrap div.sub-division div.text p {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 5px;
  }
  section.divisiones-section-filtro div.division div.division-wrap div.sub-division div.pic {
    width: 28vw;
    max-width: 23rem;
  }
  section.divisiones-section-filtro div.division div.division-wrap div.sub-division .default-btn p {
    font-size: 14px;
  }
}
section.hero-producto-detalle {
  margin-top: 80px;
}
section.hero-producto-detalle div.content {
  display: flex;
  flex-direction: column;
}
section.hero-producto-detalle div.content div.wrap {
  display: flex;
}
section.hero-producto-detalle div.content div.wrap div.left {
  width: 50%;
  margin: auto;
}
section.hero-producto-detalle div.content div.wrap div.left .text h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}
section.hero-producto-detalle div.content div.wrap div.left .text p {
  width: 80%;
  max-width: 20rem;
}
section.hero-producto-detalle div.content div.wrap div.left .text a.default-btn {
  margin-top: 1rem;
}
section.hero-producto-detalle div.content div.wrap div.left .text hr {
  width: 20px;
  height: 5px;
  border-radius: 50px;
  margin-left: 0;
  background-color: #0091ff;
  border: 0;
  box-shadow: none;
}
section.hero-producto-detalle div.content div.wrap div.right {
  width: 50%;
  position: relative;
}
section.hero-producto-detalle div.content div.wrap div.right a.icono {
  position: absolute;
  right: 0;
  display: inline-block;
}
section.hero-producto-detalle div.content div.wrap div.right a.icono .tooltip {
  position: absolute;
  bottom: 100%;
  right: -100%;
  transform: translateX(-50%);
  width: 12rem;
  background-color: #0091FF;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
section.hero-producto-detalle div.content div.wrap div.right a.icono .tooltip p {
  margin: 0;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}
section.hero-producto-detalle div.content div.wrap div.right a.icono img {
  display: block;
  width: 3rem;
}
section.hero-producto-detalle div.content div.wrap div.right a.icono:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
section.hero-producto-detalle div.content .carousel .marquee .slide-marquee .slide-lite {
  color: grey;
}

@media (max-width: 820px) {
  section.hero-producto-detalle {
    margin-top: 12vw;
  }
}
@media (max-width: 767px) {
  section.hero-producto-detalle {
    margin-top: 80px;
  }
  section.hero-producto-detalle div.content div.wrap {
    flex-direction: column;
  }
  section.hero-producto-detalle div.content div.wrap div.left {
    width: 100%;
  }
  section.hero-producto-detalle div.content div.wrap div.right {
    width: 100%;
    margin-top: 1rem;
  }
  section.hero-producto-detalle div.content div.wrap div.right a.icono .tooltip {
    right: -180%;
  }
  section.hero-producto-detalle div.content div.wrap div.right a.icono .tooltip p {
    margin: 0;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
  }
  section.hero-producto-detalle div.content div.wrap div.right a.icono img {
    display: block;
    width: 3rem;
  }
  section.hero-producto-detalle div.content div.wrap div.right a.icono:hover .tooltip {
    opacity: 1;
    visibility: visible;
  }
}
section.section-producto-detalle-caracteristicas header {
  display: flex;
}
section.section-producto-detalle-caracteristicas header h2 {
  width: 50%;
  font-size: 50px;
  padding-right: 1rem;
}
section.section-producto-detalle-caracteristicas header div.text {
  display: flex;
  flex-direction: column;
}
section.section-producto-detalle-caracteristicas header p {
  max-width: 30rem;
  margin-top: 5px;
}
section.section-producto-detalle-caracteristicas div.content div.filter {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
section.section-producto-detalle-caracteristicas div.content div.filter a.white-btn {
  margin-right: 10px;
}
section.section-producto-detalle-caracteristicas div.content div.filter a.white-btn.active {
  background-color: #0091FF;
}
section.section-producto-detalle-caracteristicas div.content div.filter a.white-btn.active p {
  color: #fff;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards {
  margin-top: 1rem;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.ico-absol {
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: 4;
  display: none;
}
@keyframes move-sideways {
  0% {
    transform: translateX(0);
    /* Posición inicial */
  }
  50% {
    transform: translateX(10px);
    /* Mover 10px a la derecha */
  }
  100% {
    transform: translateX(0);
    /* Regresar a la posición inicial */
  }
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-left {
  width: 33vw;
  margin: 10px;
  margin-left: 0;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-center {
  width: 33vw;
  padding: 2vw;
  margin: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-center div.top .icos {
  padding: 10px;
  padding-left: 0;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-center div.top .icos img {
  width: 4vw;
  margin-right: 1.5vw;
  max-width: 4rem;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-center p {
  font-size: 14px;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right {
  width: 33vw;
  padding: 1rem;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right div.pic {
  width: 100%;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right div.pic img {
  height: 15vw;
  border-radius: 15px;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right div.foot {
  margin: auto;
  text-align: center;
}
section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right div.foot p {
  font-size: 14px;
  margin-top: 10px;
}
section.section-producto-detalle-caracteristicas div.content div.wrap .cards.active {
  display: flex;
  opacity: 1;
}

@media (max-width: 767px) {
  section.section-producto-detalle-caracteristicas header {
    flex-direction: column;
  }
  section.section-producto-detalle-caracteristicas header h2 {
    width: 100%;
    font-size: 45px;
  }
  section.section-producto-detalle-caracteristicas header p {
    width: 100%;
    margin-top: 10px;
  }
  section.section-producto-detalle-caracteristicas div.content div.filter a.white-btn {
    margin-bottom: 10px;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap {
    overflow-x: scroll;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards {
    margin-top: 0px;
    width: fit-content;
    overflow-x: scroll;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.ico-absol {
    display: block;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.ico-absol img {
    width: 15vw;
    animation: move-sideways 2s ease-in-out infinite;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-left {
    width: 70vw;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-center {
    margin-left: 0;
    width: 70vw;
    padding: 1rem;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-center div.top h3 {
    font-size: 1.6rem;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-center div.top .icos img {
    width: 3rem;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right {
    width: 70vw;
    margin-left: 0;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right div.pic img {
    height: 45vw;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap div.cards div.card-right div.foot h3 {
    font-size: 1.6rem;
  }
  section.section-producto-detalle-caracteristicas div.content div.wrap .cards.active {
    display: flex;
    opacity: 1;
  }
}
section.section-producto-detalle-acabados h2 {
  text-align: center;
  font-size: 50px;
}
section.section-producto-detalle-acabados p {
  text-align: center;
  width: 80%;
  max-width: 45rem;
  margin: auto;
  padding-top: 1rem;
}
section.section-producto-detalle-acabados div.pics {
  width: 100%;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}
section.section-producto-detalle-acabados div.pics div.pic {
  width: 15vw;
  height: 15vw;
  margin: 1rem;
}
@media (max-width: 767px) {
  section.section-producto-detalle-acabados div.pics {
    width: 90vw;
    flex-wrap: wrap;
  }
  section.section-producto-detalle-acabados div.pics div.pic {
    width: 38vw;
    height: 38vw;
    margin: 10px;
  }
}
section.section-producto-detalle-infografia div.infografia h2 {
  text-align: center;
  margin: auto;
  padding-top: 2rem;
  width: 60%;
  font-size: 50px;
}
section.section-producto-detalle-infografia div.infografia div.content {
  width: 80%;
  max-width: 50rem;
  margin: auto;
  padding-top: 10px;
}
section.section-producto-detalle-infografia div.descargas {
  display: flex;
  justify-content: center;
}
section.section-producto-detalle-infografia div.descargas div.content {
  padding: 3vw;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
section.section-producto-detalle-infografia div.descargas div.content div.wrap h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
section.section-producto-detalle-infografia div.descargas div.content div.wrap div.cards {
  display: flex;
  flex-wrap: wrap;
}
section.section-producto-detalle-infografia div.descargas div.content div.wrap div.cards div.card {
  width: 15vw;
  min-width: 18rem;
  padding: 1rem;
  margin: 1rem;
  margin-left: 0;
}
section.section-producto-detalle-infografia div.descargas div.content div.wrap div.cards div.card div.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
section.section-producto-detalle-infografia div.descargas div.content div.wrap div.cards div.card div.top img {
  width: 2rem;
}
section.section-producto-detalle-infografia div.descargas div.content div.wrap div.cards .card:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  section.section-producto-detalle-infografia div.infografia h2 {
    width: 90%;
    font-size: 2.5rem;
  }
  section.section-producto-detalle-infografia div.descargas div.content div.wrap div.cards div.card {
    width: 90vw;
    margin-right: 0;
  }
}
section.automatizacion-section-slider .slider .slide {
  display: flex;
}
section.automatizacion-section-slider .slider .slide div.left {
  width: 50%;
  padding: 2rem;
}
section.automatizacion-section-slider .slider .slide div.left div.top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  height: 10%;
}
section.automatizacion-section-slider .slider .slide div.left div.top p.number {
  color: white;
  font-size: 20px;
  font-weight: 600;
}
section.automatizacion-section-slider .slider .slide div.left div.bottom {
  margin-top: 1rem;
  height: 70%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
section.automatizacion-section-slider .slider .slide div.left div.bottom h3 {
  color: white;
  font-size: 2rem;
}
section.automatizacion-section-slider .slider .slide div.left div.bottom p {
  color: white;
  font-size: 16px;
}
section.automatizacion-section-slider .slider .slide div.right {
  width: 50%;
}

@media (min-width: 1500px) {
  section.automatizacion-section-slider .slider .slide div.left div.top p.number {
    font-size: 26px;
  }
  section.automatizacion-section-slider .slider .slide div.left div.bottom h3 {
    font-size: 3rem;
  }
  section.automatizacion-section-slider .slider .slide div.left div.bottom p {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  section.automatizacion-section-slider .slider .slide {
    display: flex;
    flex-direction: column;
  }
  section.automatizacion-section-slider .slider .slide div.left {
    width: 100%;
    padding: 2rem;
  }
  section.automatizacion-section-slider .slider .slide div.left div.top {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 10%;
  }
  section.automatizacion-section-slider .slider .slide div.left div.top p.number {
    color: white;
    font-size: 20px;
    font-weight: 600;
  }
  section.automatizacion-section-slider .slider .slide div.left div.bottom {
    margin-top: 1rem;
    height: 70%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  section.automatizacion-section-slider .slider .slide div.left div.bottom h3 {
    color: white;
    font-size: 2rem;
  }
  section.automatizacion-section-slider .slider .slide div.left div.bottom p {
    color: white;
    font-size: 16px;
  }
  section.automatizacion-section-slider .slider .slide div.right {
    width: 100%;
  }
}
section.blog-hero {
  margin-top: 80px;
  position: relative;
}
section.blog-hero div.slider {
  height: 70vh;
  width: 100%;
}
section.blog-hero div.slider div.slide {
  height: 100%;
  width: 100%;
}
section.blog-hero div.slider div.slide div.tarjeta {
  position: absolute;
  max-width: 28rem;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2vw;
}
section.blog-hero div.slider div.slide div.tarjeta h1 {
  font-size: 50px;
  line-height: 90%;
  margin-bottom: 1rem;
}
section.blog-hero div.slider div.slide div.tarjeta p {
  font-size: 16px;
}
section.blog-hero div.slider div.slide div.tarjeta .default-btn {
  margin-top: 1rem;
}
section.blog-hero div.slider .flickity-button.flickity-prev-next-button.next {
  box-shadow: none;
  right: 1.5%;
}
section.blog-hero div.slider .flickity-button.flickity-prev-next-button.previous {
  box-shadow: none;
  left: 1.5%;
}

@media (max-width: 820px) {
  section.blog-hero {
    margin-top: 100px;
  }
  section.blog-hero div.slider {
    height: 34vh;
    width: 100%;
  }
  section.blog-hero div.slider div.slide {
    height: 100%;
    width: 100%;
  }
  section.blog-hero div.slider div.slide div.tarjeta {
    left: 35%;
  }
}
@media (max-width: 767px) {
  section.blog-hero {
    margin-top: 85px;
    height: 60vh;
  }
  section.blog-hero div.slider {
    height: 55vh;
    width: 100%;
  }
  section.blog-hero div.slider div.slide {
    height: 100%;
    width: 100%;
  }
  section.blog-hero div.slider div.slide div.tarjeta {
    width: 90%;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.846);
    padding: 1rem;
  }
  section.blog-hero div.slider div.slide div.tarjeta h1 {
    font-size: 40px;
    line-height: 90%;
  }
  section.blog-hero div.slider div.slide div.tarjeta p {
    font-size: 14px;
  }
  section.blog-hero div.slider .flickity-button.flickity-prev-next-button.next {
    box-shadow: none;
    background: none;
    right: -4%;
  }
  section.blog-hero div.slider .flickity-button.flickity-prev-next-button.previous {
    box-shadow: none;
    background: none;
    left: -4%;
  }
}
section.blog-section-filtro-noticias {
  padding-bottom: 0;
  padding-top: 0;
}
section.blog-section-filtro-noticias div.filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}
section.blog-section-filtro-noticias div.filter a.white-btn {
  margin-top: 15px;
  margin-right: 15px;
}
section.blog-section-filtro-noticias div.filter a.white-btn.active {
  background-color: #0091FF;
}
section.blog-section-filtro-noticias div.filter a.white-btn.active p {
  color: white;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  width: 17rem;
  margin: 10px;
  padding: 1.2rem;
  display: none;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.pic {
  height: 15vw;
  max-height: 10rem;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text {
  width: 100%;
  min-height: 5rem;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text h2 {
  width: 100%;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 10px;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text div.data {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text div.data img {
  width: 1rem;
  margin-right: 5px;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text div.data p {
  font-size: 12px;
}
section.blog-section-filtro-noticias div.noticias div.noticias-wrap .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia {
    width: 85vw;
  }
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.pic {
    height: 40vw;
    max-height: 16rem;
  }
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text {
    margin-bottom: 5px;
  }
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text h2 {
    font-size: 16px;
  }
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text div.data {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text div.data img {
    width: 1rem;
  }
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap div.noticia div.top div.text div.data p {
    font-size: 14px;
  }
  section.blog-section-filtro-noticias div.noticias div.noticias-wrap .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
}
section.blog-detalle-section-text {
  padding-bottom: 0;
  padding-top: 0;
}
section.blog-detalle-section-text div.content {
  display: flex;
}
section.blog-detalle-section-text div.content div.text {
  width: 70%;
  padding-right: 2rem;
}
section.blog-detalle-section-text div.content div.text h2 {
  font-size: 2.2rem;
}
section.blog-detalle-section-text div.content div.text div.data {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
section.blog-detalle-section-text div.content div.text div.data img {
  width: 1.3rem;
  margin-right: 10px;
}
section.blog-detalle-section-text div.content aside {
  width: 30%;
  display: flex;
  flex-direction: column;
}
section.blog-detalle-section-text div.content aside div.pic {
  height: 25vw;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  section.blog-detalle-section-text div.content {
    flex-direction: column;
  }
  section.blog-detalle-section-text div.content div.text {
    width: 100%;
  }
  section.blog-detalle-section-text div.content div.text div.data img {
    width: 1.3rem;
    margin-right: 10px;
  }
  section.blog-detalle-section-text div.content aside {
    width: 100%;
    flex-direction: row;
  }
  section.blog-detalle-section-text div.content aside div.pic {
    height: 35vw;
    margin-right: 1rem;
    margin-top: 1rem;
  }
}
section.blog-detalle-section-destacado {
  padding-bottom: 0;
}
section.blog-detalle-section-destacado div.wrap {
  overflow: hidden;
}
section.blog-detalle-section-destacado div.wrap header {
  display: flex;
}
section.blog-detalle-section-destacado div.wrap header h3 {
  padding: 2rem 0rem 0rem 2rem;
  font-size: 34px;
}
section.blog-detalle-section-destacado div.wrap header div.ico {
  padding: 1.5vw 3vw;
}
section.blog-detalle-section-destacado div.wrap header div.ico img {
  width: 4rem;
  display: inline-block;
  animation: moveInfinite 2.5s ease-in-out infinite;
}
@keyframes moveInfinite {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
    /* Cambia este valor para ajustar la amplitud del movimiento */
  }
  100% {
    transform: translateX(0);
  }
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias {
  display: flex;
  width: fit-content;
  padding: 1rem;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider {
  height: 22rem;
  width: 90vw;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide {
  height: 22rem;
  width: 20rem;
  margin-right: 1.5rem;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 95%;
  background-color: white;
  padding: 1.2rem;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia div.top div.pic {
  height: 15vw;
  max-height: 10rem;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia div.top div.text {
  width: 100%;
  min-height: 5rem;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia div.top div.text h2 {
  width: 100%;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 10px;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia div.top div.text div.data {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia div.top div.text div.data img {
  width: 1rem;
}
section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia div.top div.text div.data p {
  font-size: 12px;
}
@media (max-width: 820px) {
  section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider {
    height: 18rem;
  }
  section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide {
    height: 18rem;
    width: 17rem;
    margin-right: 1.5rem;
  }
}
@media (max-width: 767px) {
  section.blog-detalle-section-destacado div.wrap header h3 {
    padding: 1rem;
  }
  section.blog-detalle-section-destacado div.wrap header div.ico {
    padding: 1rem;
    margin-right: 1rem;
  }
  section.blog-detalle-section-destacado div.wrap header div.ico img {
    width: 3.5rem;
  }
  section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider {
    height: 18rem;
  }
  section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide {
    height: 18rem;
    width: 17rem;
    margin-right: 1.5rem;
  }
  section.blog-detalle-section-destacado div.wrap div.content div.wrap-noticias div.slider div.slide div.noticia div.top .pic {
    height: 7rem !important;
  }
}
section.about-us-hero {
  margin-top: 80px;
}
section.about-us-hero div.content {
  position: relative;
  height: 33vw;
  overflow: hidden;
}
section.about-us-hero div.content div.absolute {
  position: absolute;
  top: 0;
  left: 0;
}
section.about-us-hero div.content div.absolute div.text {
  padding-top: 4vw;
}
section.about-us-hero div.content div.absolute div.text h1 {
  color: black;
  font-size: 50px;
}
section.about-us-hero div.content div.absolute div.text p {
  width: 60%;
  color: black;
  max-width: 50rem;
  padding-top: 1vw;
}
section.about-us-hero div.content div.absolute div.text div.anclas {
  display: flex;
  margin-top: 1rem;
}
section.about-us-hero div.content div.absolute div.text div.anclas a.default-btn {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  background-color: white;
}
section.about-us-hero div.content div.absolute div.text div.anclas a.default-btn p {
  width: fit-content;
  padding-top: 0;
}
section.about-us-hero div.content div.absolute img.line {
  padding-top: 2vw;
}

@media (max-width: 820px) {
  section.about-us-hero {
    margin-top: 100px;
  }
  section.about-us-hero div.content {
    height: 34vh;
  }
}
@media (max-width: 767px) {
  section.about-us-hero {
    margin-top: 85px;
  }
  section.about-us-hero div.content {
    height: 60vh;
  }
  section.about-us-hero div.content div.absolute div.text {
    margin-top: 7vw;
  }
  section.about-us-hero div.content div.absolute div.text h1 {
    margin-top: 3vw;
  }
  section.about-us-hero div.content div.absolute div.text p {
    font-size: 16px;
    width: 90%;
  }
  section.about-us-hero div.content div.absolute div.text div.anclas {
    flex-direction: column;
  }
  section.about-us-hero div.content div.absolute div.text div.anclas a.default-btn {
    margin-bottom: 1rem;
  }
}
section.about-us-section-place {
  margin-top: 0;
}
section.about-us-section-place div.blocks {
  display: flex;
}
section.about-us-section-place div.blocks div.left {
  width: 50%;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.about-us-section-place div.blocks div.left img {
  width: 6rem;
}
section.about-us-section-place div.blocks div.left p {
  color: white;
  margin-top: 1rem;
}
section.about-us-section-place div.blocks div.right {
  width: 50%;
}
section.about-us-section-place div.blocks.place .left {
  padding-left: 0;
}
section.about-us-section-place div.blocks.place .left p {
  color: black;
  padding-right: 20%;
}
section.about-us-section-place div.blocks.place .right img {
  display: block;
}
section.about-us-section-place div.cards {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -15px;
  padding-left: 1rem;
  padding-right: 1rem;
}
section.about-us-section-place div.cards a.card-fabrica {
  width: 22vw;
  height: 100%;
  max-width: 20rem;
}
section.about-us-section-place div.cards a.card-fabrica div.fabrica .top {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}
section.about-us-section-place div.cards a.card-fabrica div.fabrica .top h3 {
  font-size: 1.2rem;
}
section.about-us-section-place div.cards a.card-fabrica div.fabrica .top img {
  width: 3.7rem;
  height: 3.7rem;
  padding: 5px;
}
section.about-us-section-place div.cards a.card-fabrica div.fabrica div.flecha {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
section.about-us-section-place div.cards a.card-fabrica div.fabrica div.flecha img {
  width: 1rem;
  transition: 0.4s;
}
section.about-us-section-place div.cards a.card-fabrica div.desplegable {
  display: none;
}
section.about-us-section-place div.cards a.card-fabrica div.desplegable .text {
  padding: 10px;
}
section.about-us-section-place div.cards a.card-fabrica div.desplegable .text p {
  font-size: 13px;
}
section.about-us-section-place div.cards a.card-fabrica div.desplegable div.pic {
  margin-top: 10px;
}
section.about-us-section-place div.cards a.card-fabrica div.desplegable div.pic img {
  display: block;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
section.about-us-section-place div.cards a.card-fabrica .desplegable.active {
  display: block;
}
section.about-us-section-place div.cards .card-fabrica:hover {
  opacity: 1;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}
section.about-us-section-place.valores {
  background-color: #f5f5f5;
  padding-top: 2vw;
  padding-bottom: 1vw;
  margin-top: 2vw;
}
section.about-us-section-place.valores header h2 {
  font-size: 50px;
}
section.about-us-section-place.valores .cards {
  margin-top: 3vw;
}

@media (max-width: 820px) {
  section.about-us-section-place div.cards {
    flex-wrap: wrap;
    top: -25px;
  }
  section.about-us-section-place div.cards a.card-fabrica {
    width: 45vw;
    margin: 2vw;
  }
  section.about-us-section-place div.cards a.card-fabrica div.fabrica .top {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  section.about-us-section-place div.blocks {
    flex-direction: column;
  }
  section.about-us-section-place div.blocks div.left {
    width: 100%;
    padding-top: 1rem;
  }
  section.about-us-section-place div.blocks div.left img {
    width: 6rem;
  }
  section.about-us-section-place div.blocks div.right {
    width: 100%;
  }
  section.about-us-section-place div.blocks.place .left {
    padding-left: 0;
  }
  section.about-us-section-place div.blocks.place .left h3 {
    font-size: 2rem;
  }
  section.about-us-section-place div.blocks.place .left p {
    color: black;
    padding-right: 0;
  }
  section.about-us-section-place div.blocks.place .right img {
    display: block;
  }
  section.about-us-section-place div.cards {
    top: -15px;
  }
  section.about-us-section-place div.cards a.card-fabrica {
    width: 96vw;
  }
  section.about-us-section-place div.cards a.card-fabrica div.fabrica .top {
    display: flex;
    padding: 10px;
  }
  section.about-us-section-place div.cards a.card-fabrica div.fabrica .top h3 {
    font-size: 1.2rem;
  }
  section.about-us-section-place div.cards a.card-fabrica div.fabrica .top img {
    width: 2.8rem;
    padding: 5px;
  }
  section.about-us-section-place.valores header {
    margin-top: 3vw;
    margin-bottom: 6vw;
  }
  section.about-us-section-place.valores header h2 {
    font-size: 38px;
  }
}
section.about-us-section-datos {
  margin-top: 0;
}
section.about-us-section-datos div.blocks {
  display: flex;
}
section.about-us-section-datos div.blocks div.left {
  width: 50%;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.about-us-section-datos div.blocks div.left img {
  width: 6rem;
}
section.about-us-section-datos div.blocks div.left p {
  margin-top: 1rem;
  max-width: 28rem;
}
section.about-us-section-datos div.blocks div.right {
  width: 50%;
  padding: 1vw;
  display: flex;
  flex-wrap: wrap;
}
section.about-us-section-datos div.blocks div.right div.box {
  height: 10rem;
  width: 10rem;
  padding: 0.6vw;
  margin: 0.6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.about-us-section-datos div.blocks div.right div.box div.top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
section.about-us-section-datos div.blocks div.right div.box div.top img {
  width: 1.5rem;
}
section.about-us-section-datos div.blocks div.right div.box div.bottom p.number {
  font-size: 2.3rem;
  font-weight: 700;
}
section.about-us-section-datos div.blocks div.right div.box div.bottom p {
  font-size: 14px;
}

@media (max-width: 820px) {
  section.about-us-section-datos div.blocks {
    flex-direction: column;
  }
  section.about-us-section-datos div.blocks div.left {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 0;
  }
  section.about-us-section-datos div.blocks div.right {
    width: 100%;
  }
  section.about-us-section-datos div.blocks div.right div.box {
    height: 24vw;
    width: 24vw;
    margin: 2vw;
    padding: 2vw;
  }
  section.about-us-section-datos div.blocks div.right div.box div.top img {
    width: 1.8rem;
  }
  section.about-us-section-datos div.blocks div.right div.box div.bottom p.number {
    font-size: 3rem;
  }
  section.about-us-section-datos div.blocks div.right div.box div.bottom p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  section.about-us-section-datos {
    padding-top: 1rem;
  }
  section.about-us-section-datos div.blocks div.right {
    width: 100%;
  }
  section.about-us-section-datos div.blocks div.right div.box {
    height: 29.5vw;
    width: 29.5vw;
    margin: 1.5vw;
    padding: 2vw;
  }
  section.about-us-section-datos div.blocks div.right div.box div.top {
    margin-bottom: 0;
  }
  section.about-us-section-datos div.blocks div.right div.box div.top img {
    width: 1rem;
  }
  section.about-us-section-datos div.blocks div.right div.box div.bottom p.number {
    font-size: 1.5rem;
  }
  section.about-us-section-datos div.blocks div.right div.box div.bottom p {
    font-size: 13px;
  }
}
section.about-us-section-fechas header {
  margin-bottom: 3rem;
}
section.about-us-section-fechas header h2 {
  font-size: 50px;
}
section.about-us-section-fechas div.slider div.slide div.content {
  width: 50vw;
  max-width: 37rem;
}
section.about-us-section-fechas div.slider div.slide div.content div.top {
  text-align: center;
  padding: 1vw;
}
section.about-us-section-fechas div.slider div.slide div.content div.top h3 {
  padding-bottom: 10px;
  font-size: 27px;
}
section.about-us-section-fechas div.slider div.slide div.content div.bottom {
  height: 20vw;
  max-height: 15rem;
}
section.about-us-section-fechas div.slider div.slide div.content div.bottom img {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
section.about-us-section-fechas div.slider .flickity-page-dots {
  bottom: -30px;
}
section.about-us-section-fechas div.slider .flickity-page-dot {
  background: #e2e2e2;
}
section.about-us-section-fechas div.slider .flickity-page-dot.is-selected {
  background: #0091ff;
}
section.about-us-section-fechas div.slider .flickity-prev-next-button.next {
  right: 100px;
}
section.about-us-section-fechas div.slider .flickity-prev-next-button.previous {
  left: 100px;
}

@media (max-width: 767px) {
  section.about-us-section-fechas {
    margin-bottom: 10vw;
  }
  section.about-us-section-fechas header {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  section.about-us-section-fechas header h2 {
    font-size: 38px;
    text-align: center;
  }
  section.about-us-section-fechas div.slider div.slide div.content {
    width: 80vw;
  }
  section.about-us-section-fechas div.slider div.slide div.content div.top {
    padding: 3vw;
    height: 8rem;
  }
  section.about-us-section-fechas div.slider div.slide div.content div.top h3 {
    padding-bottom: 10px;
    font-size: 27px;
  }
  section.about-us-section-fechas div.slider div.slide div.content div.top p {
    font-size: 14px;
  }
  section.about-us-section-fechas div.slider div.slide div.content div.bottom {
    height: 40vw;
  }
  section.about-us-section-fechas div.slider .flickity-prev-next-button.next {
    right: -5px;
  }
  section.about-us-section-fechas div.slider .flickity-prev-next-button.previous {
    left: -5px;
  }
}
section.about-us-section-se-parte {
  position: relative;
}
section.about-us-section-se-parte div.line {
  margin: 13vw 0vw;
}
section.about-us-section-se-parte div.card {
  padding: 3vw;
  max-width: 34rem;
}
section.about-us-section-se-parte div.card p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 100%;
}
section.about-us-section-se-parte div.card a.btn-azul {
  border-radius: 200px;
  border: 1px solid #0091FF;
  padding: 5px 15px;
  width: fit-content;
  display: block;
  margin-top: 1vw;
}
section.about-us-section-se-parte div.card a.btn-azul p {
  color: #0091FF;
  font-size: 16px;
}

@media (max-width: 767px) {
  section.about-us-section-se-parte div.line {
    margin: 7rem 0rem;
  }
  section.about-us-section-se-parte div.card {
    width: 80%;
  }
  section.about-us-section-se-parte div.card p {
    font-size: 1.3rem;
  }
  section.about-us-section-se-parte div.card a.btn-azul {
    margin-top: 1rem;
  }
}
section.contacto-section-fabricas {
  margin-top: 3vw;
}
section.contacto-section-fabricas header {
  display: flex;
}
section.contacto-section-fabricas header h2 {
  width: 100%;
  font-size: 50px;
}
section.contacto-section-fabricas div.content div.filter {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
section.contacto-section-fabricas div.content div.filter a.white-btn {
  margin-right: 10px;
  margin-top: 10px;
}
section.contacto-section-fabricas div.content div.filter a.white-btn.active {
  background-color: #0091FF;
}
section.contacto-section-fabricas div.content div.filter a.white-btn.active p {
  color: #fff;
}
section.contacto-section-fabricas div.content div.wrap div.cards {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  display: none;
  transition: opacity 0.3s ease;
  position: relative;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.ico-absol {
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: 4;
  display: none;
}
@keyframes move-sideways {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
section.contacto-section-fabricas div.content div.wrap div.cards div.head {
  display: flex;
  align-items: baseline;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.head img {
  width: 3rem;
  margin-left: 1rem;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content {
  display: flex;
  position: relative;
  z-index: 1;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.line {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 30%;
  display: none;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-left {
  width: 30vw;
  height: 30vw;
  max-width: 27rem;
  max-height: 26rem;
  margin: 10px;
  margin-left: 0;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-left .top p {
  font-size: clamp(1.1rem, 1.6vw, 1.8rem);
  font-weight: 600;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-left .bottom {
  margin-top: 2rem;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-left .bottom .wrap {
  display: flex;
  align-items: center;
  margin-top: 0.8vw;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-left .bottom .wrap img {
  margin-right: 1rem;
  width: 2.5vw;
  min-width: 2rem;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-left .bottom .wrap p {
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-center {
  width: 45vw;
  height: 30vw;
  max-width: 35rem;
  max-height: 26rem;
  margin: 10px;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-center img {
  height: 100%;
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-right {
  width: 30vw;
  height: 30vw;
  max-width: 27rem;
  max-height: 26rem;
  padding: 2vw;
  display: none;
  /* ---por el mento lo quitan----  */
}
section.contacto-section-fabricas div.content div.wrap div.cards div.wrap-content div.card-right p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
}
section.contacto-section-fabricas div.content div.wrap .cards.active {
  display: flex;
}

@media (max-width: 767px) {
  section.contacto-section-fabricas header h2 {
    font-size: 38px;
  }
  section.contacto-section-fabricas div.content div.filter {
    margin-top: 1rem;
  }
  section.contacto-section-fabricas div.content div.filter a.white-btn {
    margin-right: 10px;
    margin-top: 10px;
  }
  section.contacto-section-fabricas div.content div.filter a.white-btn.active {
    background-color: #0091FF;
  }
  section.contacto-section-fabricas div.content div.filter a.white-btn.active p {
    color: #fff;
  }
  section.contacto-section-fabricas div.content div.wrap {
    width: fit-content;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards {
    margin-top: 0px;
    width: fit-content;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.ico-absol {
    display: block;
    top: 16%;
    left: 20%;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.ico-absol img {
    mix-blend-mode: multiply;
    animation: move-sideways 2s ease-in-out infinite;
    width: 3rem;
  }
  @keyframes move-sideways {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.head {
    margin-top: 0;
    margin-bottom: 4rem;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll {
    overflow-x: auto;
    width: 100%;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content {
    width: 140%;
    display: flex;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content div.card-left {
    width: 75vw;
    height: 70vw;
    padding: 1rem;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content div.card-left .top p {
    font-size: 1.2rem;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content div.card-left .bottom {
    margin-top: 0;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content div.card-left .bottom .wrap {
    margin-top: 10px;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content div.card-left .bottom .wrap p {
    font-size: 16px;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content div.card-center {
    width: 75vw;
    height: 70vw;
  }
  section.contacto-section-fabricas div.content div.wrap div.cards div.scroll div.wrap-content div.card-right {
    width: 75vw;
    height: 70vw;
  }
  section.contacto-section-fabricas div.content div.wrap .cards.active {
    display: flex;
  }
}
article section.textos-legales {
  margin-top: 80px;
}
article section.textos-legales h1 {
  font-size: 3rem;
}
article section.textos-legales h2 {
  font-size: 2rem;
}
article section.textos-legales h3 {
  font-size: 1rem;
}
article section.textos-legales a {
  color: #0091FF;
}
article section.textos-legales ul {
  margin-top: 1rem;
}
article section.textos-legales ul li {
  margin-left: 1rem;
}
article section.textos-legales ul {
  margin-top: 1rem;
}
article section.textos-legales ul li {
  margin-left: 1rem;
}

section.error_page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  margin-top: 80px;
  padding-top: 2vw;
}
section.error_page h1 {
  font-size: 4rem;
  text-align: center;
}
section.error_page p {
  font-size: 3rem;
}
section.error_page img {
  width: 30vw;
  margin: 1vw;
  border-radius: 50px;
}
section.error_page a.default-btn p {
  font-size: 18px;
}

@media (max-width: 1024px) {
  section.error_page {
    margin-top: 80px;
    padding-top: 8vw;
  }
  section.error_page img {
    width: 50vw;
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  section.error_page h1 {
    font-size: 3rem;
  }
  section.error_page p {
    font-size: 1.7rem;
  }
  section.error_page img {
    width: 70vw;
  }
  section.error_page a.default-btn p {
    font-size: 18px;
  }
}

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