@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-Thin.woff2') format("woff2"), url('../fonts/Dominique-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bonto Variable;
  src: url('../fonts/Bonto-Variable-Regular.ttf') format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-Black.ttf') format("truetype"), url('../fonts/Dominique-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-BlackItalic.ttf') format("truetype"), url('../fonts/Dominique-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-Bold.ttf') format("truetype"), url('../fonts/Dominique-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dominique;
  src: url('../fonts/Dominique-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Foundersgrotesk Medium;
  src: url('../fonts/FoundersGrotesk-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Foundersgrotesk Regular;
  src: url('../fonts/FoundersGrotesk-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Foundersgrotesk Light;
  src: url('../fonts/FoundersGrotesk-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Latinotype juana alt;
  src: url('../fonts/Latinotype---Juana-Alt-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --white: white;
  --naranjaelectrico: #ff0100;
  --lightgrey: #f5f5f5;
  --bluepenny: #080236;
  --electricblue: #091ad8;
  --boxes-dark: #1f1f1f;
  --azulelectrico: #053bff;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  background-color: #000;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 45px;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 9vw;
  font-weight: 300;
  line-height: 50%;
  display: inline-block;
}

h2 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 3.2vw;
  font-weight: 300;
  line-height: 85%;
}

h3 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 26px;
}

p {
  color: #ffffff80;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Foundersgrotesk Light, sans-serif;
  font-weight: 400;
  line-height: 18px;
}

.container-wrap {
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  max-width: none;
  height: auto;
  margin-top: 0;
  padding: 0 0 100px;
  display: flex;
  position: relative;
  overflow: visible;
}

.row-top {
  z-index: 10;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  display: flex;
  position: sticky;
  inset: 0 0 auto;
}

.row-middle {
  backface-visibility: visible;
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100%;
  display: flex;
  transform: none;
}

.row-bottom {
  align-items: center;
  width: 100%;
  height: 10%;
  display: flex;
}

.grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: .85fr 1fr;
  grid-template-columns: 1.8fr 1fr;
  width: 100%;
  height: 100%;
  position: relative;
}

.grid.two {
  grid-template-rows: 3.1fr 1fr;
  grid-template-columns: .75fr 1fr;
}

.img-parent {
  color: #fff;
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.img-inner {
  width: 100%;
  height: 100%;
}

.img-inner.img-1 {
  background-image: url('../images/bbva.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-inner.img-3 {
  background-image: url('../images/madbcn1_1madbcn1.jpg');
  background-position: 0 0;
  background-size: auto;
}

.img-inner.img-4 {
  object-fit: fill;
  background-image: url('../images/99_2.png');
  background-position: 0 0;
  background-size: auto;
  height: 500px;
}

.img-inner.img-2 {
  background-image: url('../images/99mockups5-u569268-fr_199mockups5-u569268-fr.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-inner.img-3 {
  background-image: url('../images/Pll-resvista.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-parent {
  margin-left: 0;
  padding-left: 0;
  text-decoration: none;
  position: relative;
}

.text-wrap {
  z-index: 1;
  position: relative;
}

.text-wrap.flex {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.link-block {
  box-sizing: border-box;
  opacity: 1;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 20px;
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: visible;
}

.border-line-btm {
  background-color: #fff3;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.push-50 {
  color: #00000080;
  text-transform: none;
  max-width: 400px;
  margin-left: 0%;
  margin-right: 5%;
  font-size: 18px;
  line-height: 1.3em;
}

.text-hide {
  flex-direction: column;
  flex: 1;
  align-items: center;
  display: block;
  overflow: hidden;
}

.text-span {
  display: inline-block;
}

.text-span.one {
  z-index: -9999;
  opacity: 0;
  color: #000;
  text-transform: none;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 2vw;
  font-weight: 300;
  display: block;
  position: relative;
}

.text-span.six {
  float: none;
  opacity: 0;
  color: #fff;
  font-size: 5vw;
  display: block;
}

.block-cover {
  z-index: 1;
  color: #fff;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.block-cover-shade {
  background-color: #0a0a0a;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.sm-txt {
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  margin-top: 3px;
  margin-left: 15px;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 12px;
  font-weight: 300;
  position: relative;
}

.menu-parent {
  cursor: pointer;
  width: 70px;
  padding: 0 20px;
  position: relative;
  top: -33px;
  right: 0;
}

.line-top {
  background-color: #000;
  width: 100%;
  height: 3px;
}

.line-bottom {
  background-color: #000;
  width: 100%;
  height: 3px;
  margin-bottom: 6px;
}

.menu-parent-slide {
  z-index: 1;
  color: #db1d1d;
  text-align: left;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-color: #f3f3f3;
  background-clip: border-box;
  flex-flow: column;
  place-content: flex-start center;
  align-items: flex-start;
  width: 42%;
  height: 100%;
  margin-left: 0;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.nav-parent {
  flex-direction: row;
  flex: 0 auto;
  order: 0;
  align-self: auto;
  margin-top: 0;
  margin-left: 0;
  padding-left: 40px;
  display: block;
}

.menu-txt {
  color: #444;
  text-transform: none;
  margin-bottom: 7px;
  font-size: 25px;
  line-height: 30px;
  transition: opacity .4s;
  display: block;
}

.menu-txt:hover {
  opacity: .5;
}

.link-block-menu {
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  flex: 1;
  align-items: center;
  width: 100%;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link-block-menu.one {
  flex: 0 auto;
}

.link-block-menu.two {
  flex: 0 auto;
  position: relative;
}

.link-block-menu.three, .link-block-menu.four {
  flex: 0 auto;
}

.about-panel {
  z-index: 2;
  background-color: #1b1b1b;
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.about-inner {
  width: 100%;
  height: 100vh;
  padding-bottom: 40px;
}

.about-content-inner {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 40%;
  height: 100%;
  padding: 440px 40px 0 30px;
  display: flex;
  position: relative;
}

.spacer-20 {
  width: 100%;
  padding-bottom: 20px;
}

.close {
  z-index: 999;
  background-color: #fff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  position: absolute;
  inset: 30px 30px auto auto;
}

.heading {
  letter-spacing: 1px;
  text-transform: none;
  padding-top: 60px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-weight: 400;
  display: block;
  position: static;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.heading-2 {
  letter-spacing: .5px;
  text-transform: none;
}

.paragraph {
  text-transform: none;
}

.heading-3 {
  max-width: 600px;
}

.container {
  height: 100%;
}

.contenedor-principal {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.body {
  background-color: #fff;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.div-block-2 {
  background-color: #285ef1;
  width: 60%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}

.topheader {
  z-index: 10000;
  clear: none;
  background-color: #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: center;
  width: 100%;
  min-width: auto;
  max-width: none;
  height: auto;
  margin: 0 0 40px;
  padding: 20px 70px 0;
  display: flex;
  position: sticky;
  inset: 0% auto auto;
  overflow: visible;
}

.heading-4 {
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  align-self: center;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 25px;
  line-height: 1.2em;
  text-decoration: none;
  display: flex;
}

.heading-4.w--current {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-start;
  margin-top: 10px;
  font-size: 22px;
  text-decoration: none;
  position: sticky;
}

.div-block-3 {
  align-items: center;
  width: 100%;
  height: 20%;
  margin-top: -19px;
  margin-bottom: 30px;
  display: flex;
  position: static;
}

.bottom {
  grid-column-gap: 22px;
  grid-row-gap: 23px;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 4.75fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 20%;
  margin-bottom: 29px;
  display: grid;
  position: static;
  bottom: auto;
}

.body-2 {
  background-color: #fff;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.image {
  object-fit: cover;
  object-position: 35% 0%;
  width: 100%;
  height: 100%;
  display: block;
}

.paragraph-2 {
  color: #00000080;
  text-transform: none;
  object-fit: fill;
  width: auto;
  height: auto;
  margin-top: 19px;
  margin-bottom: auto;
  padding-top: 0;
  padding-right: 0;
  font-size: 20px;
  line-height: 1.2em;
  overflow: visible;
}

.big-heading {
  z-index: 9999;
  color: #000;
  text-align: right;
  letter-spacing: 0;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: -9px;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Great Vibes, cursive;
  font-size: 2.7vw;
  font-weight: 400;
  line-height: 1em;
  display: flex;
  position: static;
  top: 7px;
}

.big-heading.magic {
  box-sizing: border-box;
  direction: ltr;
  text-align: right;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-overflow: clip;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1em;
  display: flex;
}

.big-heading.last {
  letter-spacing: 2px;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 5vw;
  font-weight: 900;
}

.big-heading.mag {
  color: var(--black);
  text-align: left;
  letter-spacing: -.2vw;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: color-burn;
  background-color: #e0e0e000;
  flex: 0 auto;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 20vw;
  font-style: normal;
  font-weight: 400;
  line-height: .88em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.big-heading.neto {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: #000;
  text-align: left;
  letter-spacing: -.09em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -5px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 15vw;
  font-style: normal;
  font-weight: 700;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: none;
}

.big-heading.free {
  text-align: right;
  letter-spacing: -1px;
  text-indent: -4px;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-weight: 300;
  line-height: 1em;
  display: flex;
}

.big-heading.lane {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  text-indent: 0;
  flex: 0 auto;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 7vw;
  font-style: normal;
  font-weight: 900;
  line-height: .4em;
  text-decoration: none;
  display: flex;
}

.big-heading.fds {
  text-align: right;
  letter-spacing: -1px;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1em;
  display: block;
}

.big-heading.white {
  color: #000;
}

.big-heading.ma {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -.07em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: multiply;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 10vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
  overflow: visible;
}

.big-heading.o {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  filter: none;
  outline-color: var(--naranjaelectrico);
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -3px;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline-width: 3px;
  outline-style: none;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -5px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 12vw;
  font-style: normal;
  font-weight: 700;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: none;
}

.big-heading.mockups {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -.05em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 10vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
  overflow: visible;
}

.big-heading.by {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  filter: none;
  outline-offset: 0px;
  color: #000;
  text-align: left;
  letter-spacing: 0;
  text-indent: 0;
  text-transform: none;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin: 0;
  padding-top: 0;
  font-family: WindSong, sans-serif;
  font-size: 5vw;
  font-style: normal;
  font-weight: 300;
  line-height: .7em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.paragraph-3 {
  color: #000;
  text-align: right;
  text-transform: none;
  width: 100%;
  margin-bottom: 20px;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 1.6vw;
  font-weight: 300;
  line-height: 1.3em;
}

.image-2 {
  clear: none;
  object-fit: cover;
  object-position: 0% 50%;
  background-color: #fff;
  border: 1px #d6d6d6;
  border-radius: 0;
  flex: 0 auto;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-top: 0%;
  margin-bottom: 0;
  display: none;
  position: static;
  inset: 0% 0% 0% auto;
  overflow: visible;
}

.laneawards {
  box-sizing: border-box;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  margin-top: 20px;
  margin-bottom: 0;
  margin-right: 0;
  padding-left: 0;
  display: flex;
  position: static;
}

.block-quote {
  clear: none;
  direction: ltr;
  color: #000;
  letter-spacing: .2px;
  text-transform: none;
  flex-direction: column;
  flex: 0 auto;
  order: 0;
  align-self: center;
  width: auto;
  max-width: 50%;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3em;
  display: block;
}

.imagen {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 0;
}

.imagen._50 {
  object-fit: cover;
  object-position: 50% 50%;
  width: auto;
  height: auto;
}

.grid-2 {
  grid-template-rows: auto;
  width: 100%;
  min-width: 100%;
}

.div-block-5 {
  width: 100%;
}

.trabajo-solo {
  object-fit: cover;
  flex: 0 auto;
  width: auto;
  height: auto;
  margin-bottom: 116px;
  margin-left: 0;
  margin-right: 20px;
  padding-right: 0;
  display: block;
}

.trabajo-solo.last {
  object-fit: cover;
  flex: 1;
  height: 50%;
  margin-right: 0;
}

.trabajo-solo._50 {
  width: auto;
}

.trabajos {
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  display: flex;
}

.trabajos.one-work {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
}

.trabajos.dcha {
  flex-wrap: nowrap;
  flex: 1;
  justify-content: space-around;
}

.heading-5 {
  color: #000;
  text-transform: none;
  flex: 1;
  align-self: center;
  font-size: 100px;
  line-height: .7em;
}

.grid-3 {
  grid-template-rows: auto auto auto;
}

.section {
  display: flex;
}

.grid-4 {
  grid-column-gap: 36px;
  grid-row-gap: 50px;
  flex: 1;
  grid-template: ". ."
                 ". ."
                 ". ."
                 "Area Area"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch;
  align-self: auto;
  place-items: start stretch;
  margin-bottom: 45px;
  padding-left: 0;
  padding-right: 0;
  display: none;
}

.descripcion-proyecto {
  color: #000000b3;
  -webkit-text-stroke-color: #000000b3;
  text-transform: none;
  flex-flow: column;
  order: -1;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
  text-decoration: none;
  display: flex;
}

.descripcion-proyecto.primero {
  box-sizing: border-box;
  color: #000;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.descripcion-proyecto.primero.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.primero.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.primero.segundo.intro {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #000000f7;
  letter-spacing: .01em;
  flex-flow: column;
  order: 0;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  display: flex;
}

.descripcion-proyecto.primero.segundo.top {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #000000f7;
  letter-spacing: .015em;
  flex-flow: column;
  order: 0;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
  display: flex;
}

.descripcion-proyecto.primero.medio {
  align-self: center;
  line-height: 1.1em;
}

.descripcion-proyecto.primero.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.primero.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.primero.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.descripcion-proyecto.primero.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.primero.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.primero.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.descripcion-proyecto.relativebig {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  flex-flow: row;
  order: -1;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 30px;
  line-height: 1em;
  display: flex;
  position: static;
  top: -213px;
}

.descripcion-proyecto.relativebig.segundo {
  clear: none;
  color: #00000080;
  flex-direction: column;
  align-self: flex-end;
  width: 30%;
  max-width: 30ch;
  padding-left: 60px;
  font-size: 16px;
  display: flex;
}

.descripcion-proyecto.relativebig.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  padding-left: 0;
}

.descripcion-proyecto.relativebig.segundo.intro {
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}

.descripcion-proyecto.relativebig.medio {
  align-self: center;
}

.descripcion-proyecto.center {
  text-align: left;
  flex: 1;
  align-self: flex-start;
  margin-bottom: 0;
  display: block;
}

.descripcion-proyecto.center.right2 {
  text-align: right;
}

.descripcion-proyecto.nestappfirst {
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.descripcion-proyecto.nestappfirst.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.nestappfirst.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.nestappfirst.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.descripcion-proyecto.nestappfirst.medio {
  align-self: center;
  line-height: 1.1em;
}

.descripcion-proyecto.nestappfirst.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.nestappfirst.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.nestappfirst.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.descripcion-proyecto.nestappfirst.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.nestappfirst.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.nestappfirst.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.descripcion-proyecto.right {
  box-sizing: border-box;
  color: #000;
  text-align: right;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 32px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.descripcion-proyecto.right.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.right.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.right.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.descripcion-proyecto.right.medio {
  align-self: center;
  line-height: 1.1em;
}

.descripcion-proyecto.right.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.right.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.right.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.descripcion-proyecto.right.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.descripcion-proyecto.right.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.descripcion-proyecto.right.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.descripcion-proyecto.derecha {
  font-size: 14px;
}

.descripcion-proyecto.white {
  color: #000000c9;
  letter-spacing: .2px;
  font-family: Martian Mono, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.6em;
}

.proyecto {
  object-fit: contain;
  width: 100%;
  display: block;
}

.imagen-proyecto {
  box-sizing: border-box;
  opacity: 1;
  vertical-align: baseline;
  object-fit: contain;
  object-position: 50% 0%;
  border: 0 solid #000;
  border-radius: 20px;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  padding-top: 0%;
  display: block;
  overflow: visible;
}

.imagen-proyecto._2 {
  display: block;
}

.div-block-6 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  align-self: flex-start;
  max-width: none;
  height: auto;
  margin-top: 0;
  padding-right: 0;
  display: flex;
}

.heading-6 {
  color: #000;
  text-transform: none;
  margin-bottom: 25px;
  padding-top: 0;
  font-size: 25px;
  line-height: 1em;
}

.div-block-7 {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.imagen-link {
  opacity: 1;
  border: 0 solid #000;
}

.destacado {
  box-sizing: border-box;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 40px;
  padding-left: 0;
  display: flex;
  overflow: hidden;
}

.destacado.abajo {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--lightgrey);
  flex-flow: row;
  justify-content: flex-end;
  margin-bottom: 40px;
  display: none;
}

.destacado.shorter {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 20px;
  padding-right: 0;
}

.destacado.v {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f3f3f3;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 40px;
  display: none;
  position: static;
  overflow: hidden;
}

.destacado.vertresp {
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 130px;
}

.destacado.vertresp.hidden {
  margin-bottom: 40px;
  display: none;
}

.destacado.lastnomargin {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 180px;
}

.destacado.lastnomargin.hidden {
  display: flex;
}

.destacado.full {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: space-around;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  position: static;
  overflow: visible;
}

.destacado.full.space-after {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  border-bottom: 1px #b8b8b8;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  width: 33%;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.destacado.last {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  border-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  align-items: flex-start;
  width: 33%;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  padding-right: 0;
  overflow: visible;
}

.destacado.hiddden {
  display: none;
}

.destacado-imagen {
  object-fit: cover;
  border: 1px #d6d6d6;
  border-radius: 0;
  align-self: stretch;
  width: 100%;
  max-width: none;
  height: auto;
  overflow: hidden;
}

.destacado-imagen.segundo {
  box-sizing: border-box;
  object-fit: cover;
  object-position: 0% 50%;
  border: 1px #dadada;
  border-radius: 10px;
  flex: 0 auto;
  order: -1;
  align-self: stretch;
  width: auto;
  max-width: none;
  height: auto;
  margin-top: 0;
  margin-right: 0;
  padding: 0;
  display: block;
  overflow: hidden;
}

.destacado-imagen.segundoa {
  object-fit: contain;
  flex: 1;
  width: 60vw;
  max-width: none;
  height: auto;
}

.destacado-imagen.vertical {
  object-fit: contain;
  border-style: none;
  flex: 1;
  width: 25vw;
  max-width: none;
  height: auto;
}

.destacado-imagen.vertical2 {
  aspect-ratio: auto;
  vertical-align: sub;
  object-fit: contain;
  border-style: none;
  border-radius: 30px 0 0;
  flex: 0 auto;
  order: -1;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  height: auto;
  display: none;
  overflow: hidden;
}

.destacado-imagen.nestapp {
  vertical-align: sub;
  object-fit: fill;
  border-style: none;
  border-radius: 20px;
  flex: 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  overflow: visible;
}

.destacado-imagen.noborder {
  object-fit: contain;
  border: 1px #dadada;
  border-radius: 0;
  flex: 1;
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: 0;
  padding: 0;
  display: block;
  overflow: clip;
}

.destacado-imagen.timedoc {
  vertical-align: sub;
  object-fit: fill;
  border-style: none;
  border-radius: 0;
  flex: 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  overflow: hidden;
}

.destacado-imagen.subway2 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  border: 1px #dadada;
  border-radius: 0;
  flex: 1;
  order: -1;
  align-self: stretch;
  width: 50%;
  max-width: none;
  height: auto;
  min-height: auto;
  margin-top: 0;
  margin-left: auto;
  padding: 0;
  display: none;
  overflow: hidden;
}

.destacado-imagen.uhc {
  vertical-align: sub;
  object-fit: fill;
  border-style: none;
  border-radius: 20px 20px 0 0;
  flex: 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  overflow: visible;
}

.destacado-imagen.vertical2-copy {
  aspect-ratio: auto;
  vertical-align: sub;
  object-fit: contain;
  border-style: none;
  border-radius: 10px;
  flex: 0 auto;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  height: auto;
  line-height: 10px;
  display: block;
  overflow: hidden;
}

.destacado-imagen.fbbva {
  object-fit: contain;
  border: 1px #dadada;
  border-radius: 0;
  flex: 1;
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: 0;
  padding: 0;
  display: block;
  overflow: clip;
}

.paragraph-4 {
  color: #00000080;
}

.link-block-2 {
  flex: 0 auto;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  width: 60%;
  max-width: none;
  display: flex;
}

.newwork {
  width: 33%;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.link-block-3 {
  box-sizing: border-box;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  aspect-ratio: auto;
  object-fit: fill;
  object-position: 0% 50%;
  border-radius: 0;
  flex: 0 auto;
  order: -1;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  height: auto;
  margin-left: 0%;
  padding-top: 0;
  padding-left: 0;
  display: flex;
  overflow: visible;
}

.bold-text {
  color: #00000080;
}

.link {
  height: 200px;
}

.section-3 {
  height: 40px;
  padding-left: 30px;
  padding-right: 30px;
}

.link-2 {
  color: #000;
  text-align: right;
  letter-spacing: .04em;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: center;
  font-family: Mona Sans, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  position: static;
  left: 0;
}

.image-3, .image-4 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-5 {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
}

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

.section-4 {
  filter: grayscale();
  perspective: 2000px;
  transform-style: preserve-3d;
  background-image: url('../images/fbbva.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 1000px;
  line-height: 100px;
  transform: perspective(2000px)rotateX(26deg)rotateY(17deg)rotateZ(0);
}

.grid-5 {
  grid-column-gap: 0px;
  grid-auto-rows: 500px;
  place-content: center space-around;
  place-items: stretch baseline;
  height: 900px;
}

.div-block-8 {
  background-color: #000;
  width: 50%;
  margin-left: 0;
  margin-right: 0;
  padding: 40px;
  position: relative;
  top: -358px;
}

.heading-7 {
  color: #fff;
  text-transform: none;
  margin-bottom: 10px;
  padding-top: 0;
  font-size: 50px;
  line-height: 1em;
}

.paragraph-6 {
  color: #ffffffb8;
  text-transform: none;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2em;
}

.div-block-9 {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/me.gif');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  background-clip: border-box;
  justify-content: flex-end;
  align-items: flex-end;
  height: 900px;
  display: flex;
}

.image-7 {
  object-fit: scale-down;
  width: 70%;
  height: auto;
  margin-left: 0;
  display: block;
}

.div-block-10 {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  display: block;
  position: relative;
}

.div-block-11 {
  flex-wrap: nowrap;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: flex-start;
  display: flex;
}

.ny {
  background-color: #fff0;
  border: 1px #d4d4d4;
  border-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  align-items: flex-end;
  width: auto;
  min-width: auto;
  max-width: none;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: static;
  inset: 6.7% -2% auto auto;
  overflow: visible;
}

.gallery-track {
  align-items: center;
  width: 300vw;
  height: 100%;
  display: flex;
  position: relative;
}

.gallery-image {
  border-radius: 5px;
  flex: 1;
  height: 70vh;
  margin: 20px;
  box-shadow: 1px 1px 19px #00000040;
}

.gallery-image._1 {
  background-image: url('../images/saso-tusar-181518_compressed.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-image._2 {
  background-image: url('../images/carson-arias-197710_compressed.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-image._3 {
  background-image: url('../images/andrew-bui-277993_compressed.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.mag {
  mix-blend-mode: color-burn;
  flex: 0 auto;
  align-self: flex-start;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -6px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.bold-text-2 {
  font-weight: 300;
}

.div-block-13 {
  flex-flow: column;
  display: flex;
}

.div-block-14 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  text-align: right;
  flex-flow: column;
  order: -1;
  align-self: center;
  width: auto;
  min-width: auto;
  padding-left: 0;
  display: flex;
}

.div-block-14._1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: 1px solid #a0a0a0;
  flex: 0 auto;
  align-self: flex-start;
  width: auto;
  min-width: auto;
  margin: 20px 0 0 10px;
  padding-top: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-14._2 {
  z-index: 2000;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: 1px solid #000;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  min-width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 20px;
  padding-left: 0;
  display: flex;
  position: relative;
}

.div-block-14.free {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: 1px solid #000;
  flex: 0 auto;
  order: 1;
  align-self: flex-start;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 20px;
  padding-left: 0;
  display: flex;
}

.div-block-14.free.first {
  border-top-color: #000;
  order: -1;
  justify-content: flex-end;
  width: 100%;
  padding-top: 10px;
}

.div-block-14.free.white {
  text-align: left;
  border-top-color: #000;
  flex-flow: row;
  flex: 0 auto;
  align-items: flex-start;
  margin-bottom: 40px;
  display: none;
}

.div-block-14._3 {
  z-index: 2000;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  flex: 0 auto;
  order: 0;
  align-self: flex-start;
  width: 100%;
  min-width: auto;
  max-width: none;
  margin: 40px 0 0;
  padding: 0 60px 40px;
  display: flex;
  position: relative;
}

.award {
  font-size: 15px;
  line-height: 1.1em;
  display: none;
}

.image-8 {
  align-self: flex-start;
  width: 23px;
  max-width: none;
  margin-top: 0;
  display: block;
}

.background-video {
  width: auto;
  height: 900px;
  position: relative;
}

.linkdouble {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f3f3f3;
  border: 1px #000;
  border-radius: 0;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  width: 35%;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  padding: 15px;
  display: flex;
  overflow: visible;
}

.image-9 {
  align-self: flex-start;
  width: 140px;
  max-width: none;
  margin-bottom: 0;
}

.flex-block {
  box-sizing: border-box;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: column;
  flex: 0 auto;
  order: -1;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-start;
  width: auto;
  min-width: auto;
  max-width: none;
  height: auto;
  display: flex;
  position: static;
  inset: auto 0% 8% auto;
  overflow: visible;
}

.text-span-2 {
  font-family: Foundersgrotesk Medium, sans-serif;
}

.introtexts {
  box-sizing: border-box;
  color: #000;
  object-fit: fill;
  flex: 0 auto;
  font-family: Martian Mono, sans-serif;
  font-size: 1.2vw;
  font-weight: 200;
  line-height: 1.4em;
  display: block;
}

.introtexts.fds {
  color: #000;
  font-family: Inter Tight, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5em;
}

.introtexts.fds.last {
  letter-spacing: .02em;
  align-self: auto;
  font-family: Mona Sans, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.introtexts.white {
  color: #000;
  align-self: flex-start;
  font-size: 18px;
}

.text-span-4 {
  font-family: Foundersgrotesk Medium, sans-serif;
  font-weight: 500;
}

.text-span-5 {
  flex: 0 auto;
  font-family: Foundersgrotesk Medium, sans-serif;
  font-weight: 500;
}

.tit, .text-span-7, .text-span-8 {
  font-family: Foundersgrotesk Medium, sans-serif;
  font-weight: 500;
}

.nnn {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.link-block-6 {
  display: block;
}

.link-block-9 {
  width: 100%;
}

.image-10 {
  width: 155px;
}

.text-span-9, .text-span-10, .text-span-11 {
  font-weight: 400;
}

.lottie-animation {
  border: 1px #e4e4e4;
  width: auto;
  display: flex;
}

.lottie-animation.smartmeet {
  box-sizing: border-box;
  border-style: none;
  border-radius: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  display: flex;
  overflow: hidden;
}

.lottie-animation.snaplogo {
  align-self: flex-start;
  width: 100px;
  margin-left: 0;
  display: none;
}

.lottie-animation.hidden {
  display: none;
}

.lottie-animation.snapbrand {
  border-style: none;
  border-radius: 0;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  margin-top: 5px;
  margin-right: 5px;
  display: flex;
  overflow: visible;
}

.text-span-12 {
  letter-spacing: 0;
  font-size: 9vw;
  font-weight: 800;
  line-height: .4em;
  display: inline;
}

.text-span-12.smaller {
  font-family: Foundersgrotesk Regular, sans-serif;
  font-size: 2vw;
  font-weight: 400;
}

.heading-8 {
  box-sizing: border-box;
  color: #000;
  letter-spacing: 0;
  text-transform: lowercase;
  flex: 0 auto;
  padding-top: 0;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: .7em;
  text-decoration: none;
  display: none;
}

.div-block-15 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: space-between;
  min-width: 400px;
  max-width: 50%;
  display: flex;
}

.magic-entry {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  align-items: flex-start;
  max-width: 100%;
  margin-bottom: 100px;
  display: flex;
  overflow: visible;
}

.freedesign {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.teatro {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  order: -1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-self: auto;
  align-items: flex-start;
  width: 72%;
  max-width: none;
  height: auto;
  display: block;
  overflow: visible;
}

.nestapp {
  border-bottom-left-radius: 30px;
  flex: 0 auto;
  order: -1;
  justify-content: flex-end;
  width: 100%;
  max-width: 60%;
  display: flex;
}

.pennydiv {
  box-sizing: border-box;
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 25vw;
  padding-right: 0;
  line-height: 12px;
  display: flex;
}

.text-span-13 {
  font-family: Foundersgrotesk Medium, sans-serif;
  font-weight: 500;
}

.flex-block-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-self: center;
  max-width: 42%;
}

.hero {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  mix-blend-mode: normal;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  border-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  align-self: center;
  align-items: stretch;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 110px;
}

.introtext_hero {
  color: #000;
  text-align: right;
  text-transform: none;
  flex: 0 auto;
  align-self: center;
  width: 35%;
  max-width: none;
  margin-bottom: 0;
  padding-top: 5vw;
  padding-left: 20px;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 1.6vw;
  font-weight: 300;
  line-height: 1.3em;
  display: block;
}

.introtext_hero.hidden {
  color: #000;
  text-align: center;
  letter-spacing: .15em;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
}

.introtext_hero.second {
  color: #000;
  text-align: left;
  letter-spacing: .03em;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4em;
  text-decoration: none;
}

.neto {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  letter-spacing: -.2vw;
  mix-blend-mode: normal;
  border-radius: 0;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 103%;
  max-width: none;
  margin: 10px 0;
  padding-left: 0;
  font-size: 14px;
  display: flex;
  overflow: visible;
}

.type-style {
  display: inline;
  overflow: visible;
}

.text-span-14 {
  font-family: Foundersgrotesk Medium, sans-serif;
}

.titbig {
  color: #000;
  letter-spacing: -1px;
  -webkit-text-stroke-color: #000000b3;
  text-transform: none;
  flex: 0 auto;
  order: -1;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Martian Mono, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.4em;
  text-decoration: none;
}

.titbig.primero {
  box-sizing: border-box;
  color: #000;
  align-self: flex-start;
  max-width: 22ch;
  margin: 1px 0 0;
  padding-left: 0;
  font-size: 35px;
  line-height: 1.1em;
  position: static;
}

.titbig.primero.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.titbig.primero.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.titbig.primero.segundo.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.titbig.primero.medio {
  align-self: center;
  line-height: 1.1em;
}

.titbig.primero.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.titbig.primero.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.titbig.primero.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.titbig.primero.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.titbig.primero.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.titbig.primero.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.titbig.relativebig {
  color: #000;
  align-self: center;
  max-width: 20ch;
  margin: 0;
  padding-left: 0;
  font-size: 30px;
  line-height: 1.1em;
  position: static;
  top: -213px;
}

.titbig.relativebig.segundo {
  clear: none;
  color: #00000080;
  flex-direction: column;
  align-self: flex-end;
  width: 30%;
  max-width: 30ch;
  padding-left: 60px;
  font-size: 16px;
  display: flex;
}

.titbig.relativebig.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  padding-left: 0;
}

.titbig.relativebig.segundo.intro {
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}

.titbig.relativebig.medio, .titbig.center {
  align-self: center;
}

.titbig.white {
  direction: ltr;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2em;
}

.titbig.small {
  text-align: left;
  letter-spacing: .02em;
  align-self: flex-start;
  font-family: Mona Sans, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.tit-intro40 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--black);
  color: #000;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex-flow: column;
  flex: 1;
  order: -1;
  justify-content: center;
  align-self: stretch;
  max-width: none;
  height: auto;
  min-height: auto;
  padding: 38px;
  display: flex;
}

.button {
  box-sizing: border-box;
  color: #fff;
  white-space: nowrap;
  background-color: #fe2401;
  border-radius: 100px;
  flex: 0 auto;
  align-self: center;
  width: auto;
  margin-top: 0;
  padding: 22px 35px 21px;
  font-family: Mona Sans, sans-serif;
  font-size: 16px;
  line-height: 1em;
  text-decoration: none;
}

.button:hover {
  background-color: #ff0303;
}

.button.grey {
  background-color: #ff0004;
  order: 1;
}

.button.betasson {
  background-color: #ccc;
}

.button.hidden {
  display: block;
}

.magneto {
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}

.playground {
  z-index: 9999;
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
  border-top: 1px solid #000;
  flex-flow: column;
  justify-content: space-between;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  margin-top: 0;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.playground.fdr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-self: flex-start;
  max-width: none;
  margin-bottom: 70px;
  padding-left: 0;
  padding-right: 0;
  top: 0;
}

.playground.fds {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  margin-top: 40px;
  padding-top: 15px;
  padding-left: 0;
  padding-right: 0;
  position: static;
  top: 0;
}

.playground.final {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top-style: none;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1600px;
  margin-top: 40px;
  padding-top: 15px;
  padding-left: 0;
  padding-right: 0;
  position: static;
  top: 0;
}

.text-span-15 {
  font-family: Manrope, sans-serif;
  font-weight: 600;
}

.background-video-2 {
  box-sizing: border-box;
  clear: none;
  object-fit: fill;
  border: 1px solid #d4d4d4;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  right: auto;
  overflow: visible;
}

.timedocs {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 0 30px 30px 0;
  flex: 0 auto;
  order: -1;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 45%;
  max-width: none;
  height: auto;
  padding-top: 0;
  padding-left: 0%;
  display: flex;
  overflow: visible;
}

._4 {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #d1d1d1;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-self: auto;
  align-items: flex-start;
  width: 45%;
  max-width: none;
  height: auto;
  display: block;
  overflow: visible;
}

.text-span-16 {
  font-variation-settings: "wght" 400;
}

.sp-controla-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
}

.true-media-player-single-track {
  display: none;
}

.sp-artist-name {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.sp-media-player-bar-wrapper {
  color: #ffffff73;
  flex: 1;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.progress-bar {
  background-color: #fff;
  width: 50%;
  height: 3px;
  position: relative;
}

.sp-details-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.sp-track-wrapper {
  -webkit-backdrop-filter: saturate(200%) blur(15px);
  backdrop-filter: saturate(200%) blur(15px);
  background-color: #ffffff1a;
  border: 1px solid #ffffff1a;
  border-radius: 4px;
  width: 100%;
  padding: 25px 30px;
}

.sp-pause {
  cursor: pointer;
  width: 30px;
  margin-right: 10px;
}

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

.sp-elapsed {
  flex-direction: row;
  display: flex;
}

.sp-title-wrapper {
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.sp-play {
  cursor: pointer;
  width: 30px;
  margin-right: 10px;
}

.true-progress-head {
  background-color: #fff;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  position: absolute;
  inset: -3px 0% auto auto;
}

.sp-progress-bar-wrapper {
  cursor: pointer;
  flex: 1;
  height: 3px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 13px;
}

.sp-progress-bar-background {
  background-color: #f0f0f00f;
}

.sp-title {
  color: #ffffffd9;
  font-size: .875rem;
  font-weight: 300;
}

.sp-thumbnail {
  border-radius: 4px;
  width: 50px;
  height: 50px;
}

.code-embed {
  background-color: #ededed00;
  flex: 0 auto;
  width: 100%;
  margin-bottom: 0;
  display: block;
}

.flex-block-3 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #7e7e7e;
  border-top: 1px #bbb;
  border-bottom: 1px #bbb;
  order: 0;
  justify-content: space-between;
  align-self: auto;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 70px;
  padding-top: 0;
  padding-bottom: 0;
}

.uhc {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px #cecece;
  border-radius: 20px 0 0;
  flex: 0 auto;
  order: -1;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  height: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
  overflow: hidden;
}

.titintro20 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: column;
  order: -1;
  align-self: center;
  align-items: flex-start;
  width: auto;
  min-width: auto;
  max-width: none;
  display: flex;
  overflow: visible;
}

.kickoff {
  box-sizing: border-box;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px #000;
  border-radius: 0;
  flex-flow: row;
  flex: 0 auto;
  order: -1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  max-width: none;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: visible;
}

._5 {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #d1d1d1;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-self: auto;
  align-items: flex-start;
  width: 45%;
  max-width: none;
  height: auto;
  display: block;
  overflow: visible;
}

.citabig {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: center;
  width: auto;
  max-width: none;
  margin-bottom: 140px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 3.5vw;
  font-weight: 300;
  line-height: 1.3em;
  display: none;
}

.text-span-17 {
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 1.2vw;
  font-weight: 500;
}

.introhidden {
  color: #000;
  text-align: right;
  text-transform: none;
  flex: 0 auto;
  align-self: center;
  width: 35%;
  max-width: none;
  margin-bottom: 0;
  padding-top: 5vw;
  padding-left: 20px;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 1.6vw;
  font-weight: 300;
  line-height: 1.3em;
  display: flex;
}

.subsubmarcas {
  box-sizing: border-box;
  color: #000;
  letter-spacing: .6px;
  text-transform: uppercase;
  object-fit: fill;
  flex: 0 auto;
  font-family: Mona Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  display: block;
}

.flex-block-4 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}

.paragraph-7 {
  margin-top: -5px;
  margin-bottom: 0;
}

.div-block-16 {
  flex-flow: column;
  order: -9999;
  display: flex;
}

.flex-block_hero {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  background-clip: border-box;
  border-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: auto;
  max-height: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 70px;
  position: relative;
  overflow: hidden;
}

.content {
  background-color: #fff;
  width: 100%;
  max-width: 1600px;
  margin-top: 40px;
  margin-left: 0;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.text-span-19 {
  line-height: .605em;
}

.image-11 {
  width: 85%;
  max-width: none;
  display: none;
}

.firstmodule {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  order: 0;
  justify-content: space-between;
  align-self: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 15px;
  display: none;
}

.headertop {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  flex: 0 auto;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  max-height: none;
  margin-top: 0;
  margin-bottom: 40px;
  padding-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  inset: 30px 0% auto;
}

.urlhero {
  color: var(--black);
  letter-spacing: .08em;
  -webkit-text-stroke-color: #000000b3;
  text-transform: uppercase;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  display: block;
}

.urlhero.primero {
  box-sizing: border-box;
  color: #000;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.urlhero.primero.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.primero.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.primero.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  order: -1;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.urlhero.primero.medio {
  align-self: center;
  line-height: 1.1em;
}

.urlhero.primero.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.primero.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.primero.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.urlhero.primero.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.primero.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.primero.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.urlhero.relativebig {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  flex-flow: column;
  align-self: flex-start;
  max-width: 25ch;
  margin: 0;
  padding-left: 0;
  font-size: 30px;
  line-height: 1em;
  display: flex;
  position: static;
  top: -213px;
}

.urlhero.relativebig.segundo {
  clear: none;
  color: #00000080;
  flex-direction: column;
  align-self: flex-end;
  width: 30%;
  max-width: 30ch;
  padding-left: 60px;
  font-size: 16px;
  display: flex;
}

.urlhero.relativebig.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  padding-left: 0;
}

.urlhero.relativebig.segundo.intro {
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}

.urlhero.relativebig.medio {
  align-self: center;
}

.urlhero.center {
  text-align: left;
  flex: 1;
  align-self: center;
  margin-bottom: 0;
  display: block;
}

.urlhero.center.right2 {
  text-align: right;
}

.urlhero.nestappfirst {
  box-sizing: border-box;
  color: #000;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.urlhero.nestappfirst.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.nestappfirst.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.nestappfirst.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.urlhero.nestappfirst.medio {
  align-self: center;
  line-height: 1.1em;
}

.urlhero.nestappfirst.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.nestappfirst.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.nestappfirst.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.urlhero.nestappfirst.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.nestappfirst.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.nestappfirst.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.urlhero.right {
  box-sizing: border-box;
  color: #000;
  text-align: right;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 32px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.urlhero.right.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.right.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.right.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.urlhero.right.medio {
  align-self: center;
  line-height: 1.1em;
}

.urlhero.right.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.right.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.right.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.urlhero.right.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.urlhero.right.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.urlhero.right.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.visualdriven {
  color: #000;
  letter-spacing: .08em;
  -webkit-text-stroke-color: #000000b3;
  text-transform: uppercase;
  text-overflow: clip;
  flex-flow: column;
  flex: 0 auto;
  align-self: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  display: flex;
}

.visualdriven.primero {
  box-sizing: border-box;
  color: #000;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.visualdriven.primero.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.primero.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.primero.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  order: -1;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.visualdriven.primero.medio {
  align-self: center;
  line-height: 1.1em;
}

.visualdriven.primero.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.primero.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.primero.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.visualdriven.primero.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.primero.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.primero.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.visualdriven.relativebig {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  flex-flow: column;
  align-self: flex-start;
  max-width: 25ch;
  margin: 0;
  padding-left: 0;
  font-size: 30px;
  line-height: 1em;
  display: flex;
  position: static;
  top: -213px;
}

.visualdriven.relativebig.segundo {
  clear: none;
  color: #00000080;
  flex-direction: column;
  align-self: flex-end;
  width: 30%;
  max-width: 30ch;
  padding-left: 60px;
  font-size: 16px;
  display: flex;
}

.visualdriven.relativebig.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  padding-left: 0;
}

.visualdriven.relativebig.segundo.intro {
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}

.visualdriven.relativebig.medio {
  align-self: center;
}

.visualdriven.center {
  text-align: left;
  flex: 1;
  align-self: center;
  margin-bottom: 0;
  display: block;
}

.visualdriven.center.right2 {
  text-align: right;
}

.visualdriven.nestappfirst {
  box-sizing: border-box;
  color: #000;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.visualdriven.nestappfirst.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.nestappfirst.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.nestappfirst.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.visualdriven.nestappfirst.medio {
  align-self: center;
  line-height: 1.1em;
}

.visualdriven.nestappfirst.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.nestappfirst.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.nestappfirst.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.visualdriven.nestappfirst.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.nestappfirst.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.nestappfirst.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.visualdriven.right {
  box-sizing: border-box;
  color: #000;
  text-align: right;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 32px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.visualdriven.right.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.right.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.right.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.visualdriven.right.medio {
  align-self: center;
  line-height: 1.1em;
}

.visualdriven.right.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.right.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.right.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.visualdriven.right.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.visualdriven.right.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.visualdriven.right.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.div-block-18 {
  opacity: 1;
  background-color: #000;
  flex: 1;
  align-self: center;
  width: auto;
  height: 1px;
  margin-top: 1px;
  display: flex;
}

.lottie-animation-2 {
  width: auto;
  display: flex;
}

.firstheadline {
  z-index: 9999;
  box-sizing: border-box;
  color: var(--black);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  vertical-align: top;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 15px;
  margin-left: 0;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.3em;
  display: flex;
  position: static;
  top: 7px;
  overflow: visible;
}

.firstheadline.magic {
  box-sizing: border-box;
  direction: ltr;
  text-align: right;
  letter-spacing: -6px;
  text-overflow: clip;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 12vw;
  font-style: normal;
  font-weight: 300;
  line-height: .5em;
  display: flex;
}

.firstheadline.last {
  letter-spacing: 2px;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 5vw;
  font-weight: 900;
}

.firstheadline.studio {
  color: var(--black);
  text-align: left;
  letter-spacing: -1.85vw;
  text-indent: -20px;
  text-overflow: clip;
  background-color: #e0e0e000;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-bottom: 0;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 29vw;
  font-style: normal;
  font-weight: 900;
  line-height: .6em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
}

.firstheadline.dio {
  box-sizing: border-box;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -1.8vw;
  text-indent: -22px;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  margin-left: 0;
  padding-top: 0;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 33vw;
  font-style: normal;
  font-weight: 900;
  line-height: .48em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.firstheadline.free {
  text-align: right;
  letter-spacing: -7px;
  text-indent: -4px;
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 12vw;
  font-weight: 300;
  line-height: .5em;
  display: flex;
}

.firstheadline.lane {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  text-indent: 0;
  flex: 0 auto;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 7vw;
  font-style: normal;
  font-weight: 900;
  line-height: .4em;
  text-decoration: none;
  display: none;
}

.firstheadline.fds {
  text-align: right;
  letter-spacing: -2px;
  flex: 0 auto;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 8vw;
  font-style: normal;
  font-weight: 300;
  line-height: .5em;
  display: block;
}

.bold-text-3 {
  font-size: 20px;
  font-weight: 400;
}

.magento_brand {
  z-index: 300;
  mix-blend-mode: normal;
  flex-flow: column;
  flex: 0 auto;
  align-self: flex-start;
  width: 20%;
  margin-top: 15px;
  margin-left: 0;
  padding-top: 0;
  padding-left: 10px;
  display: flex;
  position: static;
  top: -10.5vw;
  overflow: clip;
  transform: none;
}

.image-12 {
  width: 110px;
  display: block;
}

.magnetologo {
  z-index: 9999;
  color: #000;
  text-align: right;
  letter-spacing: -1vw;
  text-transform: none;
  align-self: flex-start;
  margin-top: -33px;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Great Vibes, cursive;
  font-size: 37vw;
  font-weight: 400;
  line-height: .9em;
  position: static;
  top: 7px;
}

.magnetologo.magic {
  box-sizing: border-box;
  direction: ltr;
  text-align: right;
  letter-spacing: -1px;
  text-overflow: clip;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 7vw;
  font-style: normal;
  font-weight: 300;
  line-height: .5em;
  display: flex;
}

.magnetologo.last {
  letter-spacing: 2px;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 5vw;
  font-weight: 900;
}

.magnetologo.studio {
  color: var(--black);
  text-align: left;
  letter-spacing: -1.85vw;
  text-indent: -20px;
  text-overflow: clip;
  background-color: #e0e0e000;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-bottom: 0;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 29vw;
  font-style: normal;
  font-weight: 900;
  line-height: .6em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
}

.magnetologo.dio {
  box-sizing: border-box;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -1.8vw;
  text-indent: -22px;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  margin-left: 0;
  padding-top: 0;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 33vw;
  font-style: normal;
  font-weight: 900;
  line-height: .48em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.magnetologo.free {
  text-align: right;
  letter-spacing: -7px;
  text-indent: -4px;
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 12vw;
  font-weight: 300;
  line-height: .5em;
  display: flex;
}

.magnetologo.lane {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  text-indent: 0;
  flex: 0 auto;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 7vw;
  font-style: normal;
  font-weight: 900;
  line-height: .4em;
  text-decoration: none;
  display: none;
}

.magnetologo.fds {
  text-align: right;
  letter-spacing: -2px;
  flex: 0 auto;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 8vw;
  font-style: normal;
  font-weight: 300;
  line-height: .5em;
  display: block;
}

.text-span-20 {
  text-overflow: clip;
  vertical-align: top;
  font-family: Foundersgrotesk Regular, sans-serif;
  font-size: 5vw;
  font-style: normal;
  line-height: 4.4em;
  text-decoration: none;
}

.image-13 {
  z-index: 200;
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  position: static;
  top: -90px;
  overflow: visible;
  transform: rotate(0);
}

.flex-block-7 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  width: 70%;
}

.tit-intro40-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #f2f2f2;
  border-bottom: 2px #fff;
  border-right: 1px #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 38px;
  display: flex;
}

.flex-block-8 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  order: 1;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: stretch;
  width: 70%;
  height: auto;
  padding: 0;
  overflow: visible;
}

.flex-block-2-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #f5f5f5;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  max-width: 65%;
  padding: 38px;
}

.destacado-copy {
  box-sizing: border-box;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 20px;
  padding-left: 0;
  display: none;
  overflow: hidden;
}

.destacado-copy.abajo {
  flex-flow: column;
  justify-content: flex-end;
  margin-bottom: 140px;
}

.destacado-copy.shorter {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 140px;
}

.destacado-copy.v {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 140px;
  position: static;
  overflow: visible;
}

.destacado-copy.vertresp {
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 130px;
}

.destacado-copy.vertresp.hidden {
  display: none;
}

.destacado-copy.lastnomargin {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 180px;
}

.destacado-copy.lastnomargin.hidden {
  display: none;
}

.destacado-copy.full {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: space-around;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  position: static;
  overflow: visible;
}

.destacado-copy.full.space-after {
  margin-bottom: 140px;
}

.destacado-copy.last {
  margin-bottom: 20px;
}

.onlyavaiilable {
  letter-spacing: .3px;
  font-size: 10px;
  font-weight: 500;
}

.nombreapp {
  color: #000000b3;
  text-align: left;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #000000b3;
  text-transform: none;
  border-bottom: 1px #9b9b9b;
  flex-flow: column;
  order: -1;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
  text-decoration: none;
  display: flex;
}

.nombreapp.primero {
  box-sizing: border-box;
  color: #000;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.nombreapp.primero.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.primero.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.primero.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  order: -1;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.nombreapp.primero.medio {
  align-self: center;
  line-height: 1.1em;
}

.nombreapp.primero.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.primero.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.primero.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.nombreapp.primero.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.primero.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.primero.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.nombreapp.relativebig {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  flex-flow: column;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 30px;
  line-height: 1em;
  display: flex;
  position: static;
  top: -213px;
}

.nombreapp.relativebig.segundo {
  clear: none;
  color: #00000080;
  flex-direction: column;
  align-self: flex-end;
  width: 30%;
  max-width: 30ch;
  padding-left: 60px;
  font-size: 16px;
  display: flex;
}

.nombreapp.relativebig.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  padding-left: 0;
}

.nombreapp.relativebig.segundo.intro {
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}

.nombreapp.relativebig.medio {
  align-self: center;
}

.nombreapp.center {
  text-align: left;
  flex: 1;
  align-self: center;
  margin-bottom: 0;
  display: block;
}

.nombreapp.center.right2 {
  text-align: right;
}

.nombreapp.nestappfirst {
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.nombreapp.nestappfirst.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.nestappfirst.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.nestappfirst.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.nombreapp.nestappfirst.medio {
  align-self: center;
  line-height: 1.1em;
}

.nombreapp.nestappfirst.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.nestappfirst.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.nestappfirst.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.nombreapp.nestappfirst.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.nestappfirst.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.nestappfirst.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.nombreapp.right {
  box-sizing: border-box;
  color: #000;
  text-align: right;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 32px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.nombreapp.right.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.right.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.right.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.nombreapp.right.medio {
  align-self: center;
  line-height: 1.1em;
}

.nombreapp.right.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.right.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.right.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.nombreapp.right.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.nombreapp.right.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.nombreapp.right.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.nombreapp.derecha {
  font-size: 17px;
}

.nombreapp.white {
  color: #000000c9;
  letter-spacing: .2px;
  font-family: Manrope, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4em;
}

.hero_1 {
  background-color: #fff0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  height: auto;
  padding-top: 0;
  padding-bottom: 60px;
}

.flex-block-9 {
  box-sizing: border-box;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  opacity: 1;
  border-top: 1px solid #000;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  width: 100%;
  max-width: 1600px;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
}

.image-14 {
  z-index: 555;
  opacity: 1;
  mix-blend-mode: normal;
  align-self: flex-end;
  width: 45%;
  max-width: none;
  display: none;
  position: absolute;
  inset: 26px -4% auto auto;
  overflow: clip;
}

.text-span-21 {
  letter-spacing: .02em;
  font-weight: 600;
}

.coluna {
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  flex-flow: column;
  flex: 1;
  width: 100%;
  min-width: auto;
  min-height: auto;
  margin-top: 0;
  margin-bottom: 20px;
  margin-right: 0;
  padding-right: 0;
  text-decoration: none;
  display: flex;
}

.coluna.sola {
  flex: 0 auto;
  min-width: auto;
}

.coluna.hidden {
  display: none;
}

.bigim-2 {
  z-index: 2000;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  perspective-origin: 0 0;
  transform-origin: 0 0;
  mix-blend-mode: multiply;
  background-color: #fff0;
  border-radius: 0;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  padding-top: 120px;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: sticky;
  top: 30%;
  left: 115px;
}

.bold-text-29 {
  font-weight: 400;
}

.image-35 {
  opacity: 1;
  align-self: center;
  margin-left: 0;
}

.text-block-11 {
  font-size: 15px;
}

.lynx-accordion-item {
  background-color: #fff0;
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.lynx-accordion-item.hidden {
  display: none;
}

.titlenext {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #fff;
  text-align: left;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  margin: 0 3px 7px 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  display: flex;
}

.titlenext.home2 {
  margin-right: 0;
  font-size: 20px;
}

.relacion {
  flex: 0 auto;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 40px;
}

.hiddenblock {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #fff;
  border-radius: 0;
  flex-flow: column;
  order: 0;
  max-width: 1100px;
  margin-top: 20px;
  padding: 0 0 50px;
  display: none;
}

.hiddenblock.executivesummary {
  flex: 1;
  order: 1;
  width: 100%;
  padding: 40px 0 10px;
}

.hiddenblock.hidden {
  display: none;
}

.imagenlibros {
  border-radius: 22px;
  order: -1;
  width: 100%;
  max-width: none;
  min-height: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  line-height: 10px;
  display: block;
  overflow: hidden;
}

.ndp-prox {
  color: #333;
  background-color: #fff;
  border: 1px #313131f7;
  border-radius: 60px;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  padding: 10px 20px 11px;
  font-size: 12px;
  display: flex;
}

.timelinetext {
  box-sizing: border-box;
  clear: none;
  color: #000;
  text-align: center;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  display: block;
}

.timelinetext.up {
  text-align: left;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 40px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
  display: flex;
}

.textobloques {
  z-index: 10;
  box-sizing: border-box;
  grid-row-gap: 10px;
  perspective-origin: 0 0;
  transform-origin: 0 0;
  overflow-wrap: normal;
  background-color: #fff0;
  border-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  order: -1;
  place-content: flex-start;
  align-self: flex-end;
  align-items: flex-start;
  width: auto;
  min-width: auto;
  max-width: 400px;
  height: auto;
  min-height: auto;
  margin-bottom: 40px;
  margin-right: 0;
  padding: 0;
  font-size: 15px;
  display: flex;
  position: static;
  inset: 0% auto 0% 0%;
}

.textobloques.dcha {
  flex-flow: column;
  order: 1;
  align-self: center;
  max-width: 450px;
  margin-bottom: 0;
  display: flex;
}

.textobloques.realtive {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-self: center;
  max-width: 320px;
  margin-left: 6vw;
  padding-top: 0;
  padding-left: 0;
  display: none;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.textobloques.centered {
  align-self: center;
  max-width: 420px;
  margin-bottom: 0;
}

.fechaup {
  text-align: center;
  background-color: #fff0;
  border-radius: 5px;
  flex-flow: row;
  min-height: 90px;
  display: none;
}

.txttitular {
  box-sizing: border-box;
  clear: none;
  grid-column-gap: 10px;
  text-align: center;
  background-color: #ca707000;
  flex-flow: row;
  flex: 1;
  justify-content: flex-end;
  align-self: center;
  align-items: center;
  width: auto;
  margin-top: 0;
  margin-left: 0;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 0;
  text-decoration: none;
  display: flex;
  position: static;
  inset: 0 0% 0% auto;
  overflow: visible;
}

.txttitular.dos {
  grid-row-gap: 10px;
  flex-flow: column;
  align-self: stretch;
  padding-bottom: 55px;
  padding-left: 70px;
  padding-right: 70px;
}

.video-fotocirc {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/mujerpc.jpg');
  background-position: 50%;
  background-size: cover;
  background-clip: padding-box;
  border-right: 4px solid #fff;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 400px;
  transition: background-color .7s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
}

.video-fotocirc:hover {
  background-image: linear-gradient(#0003, #0003), url('../images/mujerpc.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.video-fotocirc.big {
  aspect-ratio: 3 / 2;
  transform: scale3d(1none, 1none, 1none);
  -webkit-text-fill-color: inherit;
  cursor: pointer;
  object-fit: contain;
  transform-style: preserve-3d;
  background-image: none;
  background-clip: content-box;
  border-right-style: none;
  border-right-width: 0;
  border-radius: 0;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 30.5vw;
  min-width: auto;
  max-width: none;
  height: auto;
  min-height: auto;
  max-height: none;
  margin-top: 0;
  margin-right: 0;
  transition-property: none;
  position: relative;
  overflow: visible;
}

.boton-close {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  color: #fff;
  text-align: center;
  letter-spacing: .4px;
  cursor: pointer;
  background-color: #181818;
  border-radius: 60px;
  flex: 1;
  align-self: flex-end;
  align-items: flex-start;
  min-width: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 20px 30px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  display: none;
}

.boton-close:hover {
  background-color: #4d4d4d;
}

.boton-close.w--current {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
}

.image-22 {
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  width: 100%;
  max-width: none;
}

.div-block-82 {
  align-self: center;
}

.play-pause-button {
  display: none;
}

.bloques-principales {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  width: 100%;
  margin-bottom: 60px;
  padding-left: 30px;
  display: flex;
}

.bloques-principales._02 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  margin-top: 60px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  top: 0;
}

.bloques-principales._01 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  inset: 0;
}

.bloques-principales._03, .bloques-principales._04 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  margin-top: 60px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  top: 0;
}

.div-block-63 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.fullscroll {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 100%;
  min-width: auto;
  max-width: 1900px;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 40px;
  display: flex;
  position: relative;
  top: 0;
}

.conectorproyectos2 {
  background-color: #fff;
  align-self: center;
  width: 2vw;
  height: 1px;
  margin-top: 4px;
  margin-bottom: 0;
  display: none;
}

.smallheadings {
  color: #000;
  text-align: left;
  background-color: #fff0;
  border: 1px #c9c9c9;
  border-radius: 0;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  position: static;
}

.smallheadings.in {
  align-self: center;
  font-size: 12px;
  position: static;
  top: 68px;
}

.smallheadings.smaller {
  text-align: left;
  text-transform: none;
  padding-top: 10px;
  font-size: 15px;
  text-decoration: none;
  display: none;
}

.smallheadings.smaller.hidden {
  outline-offset: 0px;
  -webkit-text-stroke-width: 0px;
  text-transform: none;
  border-style: none;
  outline: 3px #000;
  flex: 0 auto;
  text-decoration: none;
}

.smallheadings.growth {
  text-align: center;
  text-transform: none;
  order: 1;
  font-family: Mona Sans, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 17px;
  position: static;
  top: 68px;
}

.smallheadings.link {
  background-color: #fff;
  border-style: solid;
  border-radius: 0;
  justify-content: flex-start;
  margin-bottom: 0;
  padding: 20px 30px;
  font-size: 15px;
}

.smallheadings.link:hover {
  border-color: #838383;
}

.lynx-heading-accordion {
  color: #1f2022;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
}

._1botonescols {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-right: 1px #d4d4d4;
  flex-flow: wrap;
  flex: 0 auto;
  place-content: space-between flex-start;
  align-self: auto;
  align-items: flex-start;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-top: 20px;
  margin-bottom: 40px;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.conector {
  background-color: #000;
  align-self: flex-end;
  width: 1px;
  height: 50px;
  display: flex;
  position: relative;
  top: -60px;
}

.conector.izq {
  align-self: flex-start;
}

.image-27 {
  flex: 1;
  width: 100%;
}

.flex-block-24 {
  border-bottom: 1px solid #b1b1b1;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.flex-block-24.hidden {
  display: none;
}

.div-block-80 {
  background-color: #969696;
  flex: 1;
  height: 1px;
  display: flex;
}

.div-block-80.hidden {
  min-height: 80px;
  display: none;
}

.nombre_app {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  color: var(--black);
  text-align: right;
  letter-spacing: -.055em;
  text-transform: none;
  text-overflow: clip;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  flex: 1;
  order: -1;
  align-self: flex-end;
  align-items: flex-start;
  margin-bottom: 30px;
  margin-left: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: .9em;
  transition: font-size .3s;
  display: flex;
}

.videocircularentry {
  background-color: #0003;
  border-radius: 10px;
  order: 0;
  align-self: center;
  width: 100%;
  height: 600px;
  display: none;
  overflow: hidden;
}

.videocircularentry.executivesummary, .videocircularentry.internationalfootprint {
  display: flex;
}

.videocircularentry.keytosucess {
  padding: 25px;
}

.div-block-62 {
  box-sizing: border-box;
  object-fit: fill;
  background-color: #d1d1d1;
  flex: 1;
  align-self: center;
  width: auto;
  height: 1px;
}

.imagen-video {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  flex-flow: row;
  flex: 0 auto;
  order: -1;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: 40%;
  height: auto;
  margin-left: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.imagen-video.hidden {
  order: 0;
  display: none;
}

.text-span-51 {
  font-size: 18px;
}

.circproxb {
  z-index: auto;
  box-sizing: border-box;
  box-shadow: none;
  opacity: .95;
  perspective-origin: 100%;
  transform-origin: 100%;
  cursor: pointer;
  background-color: #0000;
  background-image: linear-gradient(#ffffff03 27%, #00000080 50%, #ffffff03), linear-gradient(#00000026, #00000026), url('../images/hombreMirando.jpg');
  background-position: 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  border-radius: 600px;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 44vh;
  min-width: 450px;
  max-width: 1200px;
  height: 44vh;
  min-height: 450px;
  max-height: 820px;
  margin-left: 0;
  margin-right: 0;
  transition: opacity .275s;
  display: flex;
  position: relative;
  inset: 0% 26% 0% 0%;
  overflow: visible;
}

.circproxb:hover {
  opacity: 100;
}

.circproxb.home2 {
  background-image: linear-gradient(#0000006b, #0000006b), url('../images/Retrato-Jaume-con-Invisibles_3_11zon-scaled.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.conectorproyectos {
  background-color: #fff;
  align-self: center;
  width: 2vw;
  height: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

.conectorproyectos.negro {
  z-index: 65;
  background-color: #fff;
  flex: 0 auto;
  align-self: center;
  width: 2vw;
  min-width: 0;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  position: static;
}

.conectorproyectos.lastconector {
  z-index: 65;
  background-color: #fff;
  flex: 0 auto;
  align-self: center;
  width: 20px;
  min-width: 0;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  position: static;
}

.lottie-animation-10 {
  opacity: .3;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0%;
}

.lottie-animation-10.directo {
  opacity: .6;
  mix-blend-mode: overlay;
  width: 100%;
}

.flex-block-26 {
  z-index: 100;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  padding-right: 20px;
  position: static;
  inset: 0% 0% 0% 0;
  overflow: hidden;
}

.flex-block-26.home2 {
  margin-top: 4px;
}

.sectionsticky-1 {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  color: #000;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0% 0 0 3px;
  font-family: Mona Sans, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2em;
  display: flex;
  position: static;
  top: 51%;
  bottom: 0;
}

.lottiesgen {
  margin-top: 0;
  position: relative;
}

.lottiesgen.spaceafter {
  margin-bottom: 10px;
}

.txtyvideo {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: 1px solid #b1b1b1;
  flex-flow: row;
  justify-content: center;
  align-self: flex-start;
  align-items: baseline;
  width: 100%;
  max-width: none;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 30px;
  padding-left: 0;
  display: flex;
  position: static;
  right: 0;
}

.txtyvideo.izq {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
}

.txtyvideo.absolute {
  border-bottom-style: none;
  height: auto;
  margin-top: 20px;
  padding-bottom: 0;
  position: relative;
}

.div-block-69b {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.lynx-accordion-content {
  flex-flow: column;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0 30px;
  display: flex;
  overflow: hidden;
}

.superheading {
  color: var(--black);
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  text-overflow: clip;
  word-break: break-all;
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Foundersgrotesk Regular, sans-serif;
  font-size: 10vw;
  font-style: normal;
  font-weight: 400;
  line-height: .4em;
  text-decoration: none;
  position: static;
  overflow: visible;
}

.bloqueseccionb {
  color: #000;
  text-align: left;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 300;
  line-height: 51px;
  display: flex;
}

.bloqueseccionb.white {
  color: #fff;
  text-align: center;
  letter-spacing: .02em;
  text-transform: none;
  flex-flow: row;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 10px;
  padding-right: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4em;
  display: flex;
  position: static;
  top: 50%;
  bottom: 0;
  overflow: visible;
}

.conectorandndp {
  margin-left: 5px;
  display: none;
}

.ahoratext {
  box-sizing: border-box;
  clear: none;
  color: #000;
  text-align: center;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  margin-bottom: 0;
  font-family: Martian Mono, sans-serif;
  font-size: 35px;
  font-weight: 200;
  line-height: 45px;
  display: flex;
}

.bold-text-26 {
  font-weight: 400;
}

.number {
  opacity: .3;
  color: #fff;
  text-align: left;
  letter-spacing: -1vw;
  mix-blend-mode: overlay;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
  display: none;
  position: absolute;
  inset: -5% 9% 0% auto;
  overflow: visible;
}

.bloqueacordeon {
  grid-row-gap: 14px;
  flex-direction: column;
  width: 100%;
  max-width: none;
  display: flex;
}

.flex-block-18 {
  position: relative;
}

.entrdillaprox {
  grid-column-gap: 10px;
  text-align: center;
  object-fit: fill;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 80%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 10px;
  padding-left: 2vw;
  padding-right: 0;
  display: none;
  overflow: visible;
}

.lottie-animation-11 {
  z-index: 9999;
  background-color: #fff;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 60px;
  margin-bottom: 20px;
  display: none;
  position: absolute;
  inset: 10% 0% 0% 50%;
}

.lottie-animation-11.absolute {
  border-radius: 40px;
  width: 40px;
  display: flex;
  inset: auto 10px 0% auto;
}

.headerenhiddenbig {
  clear: none;
  color: #000;
  text-align: left;
  flex: 0 auto;
  align-self: auto;
  max-width: none;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  display: block;
}

.headerenhiddenbig.spaceafter {
  margin-bottom: 10px;
  line-height: 1.7em;
}

.txtmaindestacados {
  color: #000;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  flex: 0 auto;
  align-self: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4em;
  overflow: visible;
}

.circulosconproxb {
  z-index: 80;
  box-sizing: border-box;
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  min-width: auto;
  max-width: none;
  height: auto;
  min-height: auto;
  max-height: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  inset: 0% 0% 0% 181px;
  overflow: hidden;
  transform: translate(0);
}

.circulosconproxb.home2, .image-28 {
  display: none;
}

.image-28.visisble {
  background-color: #1d1d1d;
  width: 100%;
  display: none;
}

.destnumbig {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  border: 1px solid #b1b1b1;
  border-style: solid none;
  justify-content: space-around;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-top: 45px;
  padding-bottom: 30px;
  display: flex;
}

.destnumbig.inside {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top-style: none;
  border-bottom-style: none;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}

.flex-block-27 {
  align-self: flex-end;
  margin-top: 0;
}

.contenido_capitulo {
  flex: 0 auto;
  width: 100%;
}

.txtproximamente {
  text-align: center;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  display: flex;
}

.txtproximamente.home2 {
  font-size: 12px;
}

.headermain {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2em;
  display: none;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.lottie-animation-9 {
  opacity: .7;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 16vh;
  margin: 0 auto 10px;
  display: none;
  position: absolute;
  inset: 1.6% 0% 0% 5%;
}

.lottie-animation-9.home2 {
  width: 100px;
}

.lynx-accordion-header {
  cursor: pointer;
  border: 1px #c9c9c9;
  border-bottom-style: solid;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 0;
  transition: padding .3s;
  display: flex;
}

.lynx-accordion-header:hover {
  padding-left: 35px;
}

.databigwithicon {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-68b {
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.boton-hidden1 {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  color: #fff;
  text-align: center;
  letter-spacing: .4px;
  cursor: pointer;
  background-color: #3f3ce0;
  border-radius: 60px;
  flex: 0 auto;
  align-self: flex-end;
  align-items: flex-start;
  min-width: 0;
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: 0;
  padding: 22px 37px 17px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  display: flex;
}

.boton-hidden1:hover {
  background-color: #000;
}

.boton-hidden1.hidden {
  display: none;
}

.bigim {
  z-index: 2000;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  perspective-origin: 0 0;
  transform-origin: 0 0;
  mix-blend-mode: multiply;
  background-color: #fff0;
  border-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  order: 0;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: auto;
  padding-top: 120px;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: sticky;
  top: 30%;
  left: 0;
}

.super-swiper {
  z-index: 14000;
  box-sizing: border-box;
  flex-flow: column;
  flex: 0 auto;
  align-self: auto;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 0;
  display: none;
  position: relative;
  inset: 0;
  overflow: hidden;
}

.super-swiper.hidden {
  display: none;
}

.div-block-65 {
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-self: auto;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.manana {
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  flex: 0 auto;
  align-self: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 5px;
  padding: 8px 13px 11px;
  display: none;
}

.fechaprox {
  text-align: center;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  display: none;
}

.proximas-actividades {
  z-index: 100;
  background-image: linear-gradient(#fff0 10%, #000000bf), url('../images/sistGraficoA.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 30vw;
  min-width: 120px;
  max-width: 600px;
  height: 32vh;
  min-height: 300px;
  max-height: 600px;
  transition: height .2s, width .2s;
  display: flex;
  position: relative;
  overflow: visible;
}

.proximas-actividades:hover {
  opacity: .9;
}

.proximas-actividades._4 {
  background-image: linear-gradient(#ffffff08 10%, #000000bf), url('../images/icons2.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-style: none;
  border-radius: 10px;
  width: 32vh;
  min-width: 300px;
  max-width: 600px;
  height: 32vh;
  min-height: 300px;
  max-height: 600px;
  transition: height .2s, width .2s;
  display: flex;
}

.proximas-actividades._2 {
  background-image: linear-gradient(#ffffff0a 10%, #000000bf), url('../images/sistGrafico1.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 10px;
  flex-flow: column;
  width: 32vh;
  min-width: 300px;
  max-width: 600px;
  height: 32vh;
  min-height: 300px;
  max-height: 600px;
  transition: height .2s, width .2s;
  display: flex;
}

.proximas-actividades._5 {
  background-image: linear-gradient(#ffffff0f 10%, #000000bf), url('../images/ENERO-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-style: none;
  border-radius: 10px;
  width: 32vh;
  min-width: 300px;
  max-width: 600px;
  height: 32vh;
  min-height: 300px;
  max-height: 600px;
  transition: height .2s, width .2s;
  display: flex;
}

.proximas-actividades._3 {
  background-image: linear-gradient(#fff0 10%, #000000bf), url('../images/typeConstruction.png');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 10px;
  width: 32vh;
  min-width: 300px;
  max-width: 600px;
  height: 32vh;
  min-height: 300px;
  max-height: 600px;
  transition: width .2s, height .2s;
  display: flex;
}

.destenintrosentence {
  font-weight: 500;
}

.swiper-slide {
  z-index: 5;
  opacity: 1;
  mix-blend-mode: luminosity;
  border-radius: 600px;
  flex: 0 auto;
  display: flex;
  position: relative;
  left: 210px;
  transform: translate(0);
}

.swiper-slide.is-next {
  z-index: 60;
  mix-blend-mode: normal;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  margin-left: 0;
  display: flex;
  position: static;
  left: auto;
  transform: none;
}

.items-menu {
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  margin-bottom: 0;
  padding: 10px 15px 12px;
  display: flex;
}

.items-menu.hoime2 {
  padding-top: 10px;
}

.divbotonclose {
  flex-flow: column;
  margin-bottom: 20px;
  display: flex;
}

.divbotonclose.down {
  margin-top: 20px;
  margin-bottom: 0;
}

.numbig {
  color: #000;
  letter-spacing: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 5px;
  font-family: Foundersgrotesk Regular, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: .9em;
}

.numbig.bigger {
  letter-spacing: -3px;
  font-size: 110px;
}

.nav_lateral {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  width: auto;
  max-width: 200px;
  height: auto;
  margin-right: 40px;
  padding-left: 40px;
  position: sticky;
  inset: 20px 0 0;
  overflow: visible;
}

.itemsacordeon {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.itemsacordeon.inside {
  margin-top: 0;
  margin-bottom: 40px;
}

.swiper {
  z-index: 50;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  transform-origin: 0%;
  mix-blend-mode: normal;
  flex: 0 auto;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 190px;
  margin-left: 470px;
  margin-right: 0;
  padding-top: 130px;
  padding-left: 0;
  padding-right: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.swiper.is-next {
  z-index: 50;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 20px;
  display: flex;
  inset: 0;
  overflow: visible;
}

.hiddeninfo1 {
  clear: none;
  color: #000;
  text-align: left;
  letter-spacing: .5px;
  text-transform: none;
  flex: 0 auto;
  align-self: auto;
  width: 90%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  display: block;
}

.detalleprox {
  color: #fff;
  text-align: left;
  letter-spacing: .8px;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-start;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2em;
  display: flex;
}

.detalleprox:hover {
  -webkit-text-stroke-color: #000;
}

.swiper-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  width: auto;
}

.swiper-wrapper.is-next {
  flex-flow: row;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: static;
  left: 0;
  right: 0;
  overflow: visible;
}

.colsdiferentes {
  grid-column-gap: 20px;
  grid-row-gap: 23px;
  column-count: 2;
  column-rule-style: solid;
  column-rule-width: 0px;
  border-right: 1px #d4d4d4;
  flex-flow: column;
  flex: 1;
  order: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between flex-start;
  align-self: auto;
  align-items: start;
  column-gap: 28px;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-top: 40px;
  margin-bottom: 20px;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

.parrafosbloques {
  clear: none;
  color: #000;
  text-align: left;
  letter-spacing: 0;
  flex: none;
  align-self: auto;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3em;
  display: block;
}

.parrafosbloques.alindcha {
  text-align: left;
  letter-spacing: 0;
  align-self: flex-start;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
}

.parrafosbloques.alindcha.absolute {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  padding-left: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1em;
  position: static;
  inset: 0% auto 0% 0%;
}

.lynx-icon-arrow {
  background-color: #1f2022;
  background-image: url('../images/Arrow_3.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50%;
  flex: none;
  width: 25px;
  height: 25px;
}

.bold-text-28 {
  font-weight: 400;
}

.databignumbers {
  flex-flow: column;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: auto;
}

.databignumbers.lottie {
  width: auto;
  max-width: 32%;
  position: relative;
}

.databignumbers.lottie._100 {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  max-width: none;
  margin-bottom: 30px;
  padding: 25px;
}

.databignumbers.lottie.hidden {
  display: none;
}

.tiposhome {
  z-index: 66;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

.destacados {
  z-index: 10;
  box-sizing: border-box;
  grid-row-gap: 0px;
  perspective-origin: 0 0;
  transform-origin: 0 0;
  -webkit-text-stroke-width: 0px;
  overflow-wrap: normal;
  background-color: #fff0;
  border-top: 1px #000;
  border-radius: 0;
  flex-flow: column;
  flex: 0 auto;
  order: -1;
  place-content: flex-start;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  min-width: auto;
  max-width: none;
  height: auto;
  min-height: auto;
  margin: 0;
  padding: 0;
  display: flex;
  position: static;
}

.destacados.dcha {
  flex-flow: column;
  order: 1;
  align-self: center;
  width: 100%;
  display: flex;
}

.pie {
  color: #666;
  text-align: left;
  background-color: #fff0;
  border: 1px #c9c9c9;
  border-radius: 0;
  align-self: flex-end;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  position: static;
}

.intrrosub {
  clear: none;
  color: #000;
  text-align: left;
  letter-spacing: .5px;
  flex: none;
  align-self: auto;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
  display: block;
}

.flex-block-28 {
  background-color: #fff;
  background-image: none;
  border-radius: 10px;
  flex-flow: row;
  padding: 0;
}

.before {
  border-radius: 10px;
  order: -1;
  width: 25%;
  max-width: none;
  min-height: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  line-height: 10px;
  display: block;
  overflow: hidden;
}

.before._2 {
  order: 1;
}

.flashlottie {
  align-self: center;
  width: 30%;
  margin-top: 2px;
  display: flex;
  position: static;
  top: -20px;
  right: 5%;
}

.flashlottie._2 {
  width: 30%;
  margin-top: 10px;
  right: 22%;
}

.flashlottie._1 {
  width: 11px;
  margin-top: 0;
  margin-right: 1px;
}

.flashlottie._3 {
  margin-top: 10px;
}

.flashlottie._4 {
  border-style: none;
  margin-top: 10px;
}

.flashlottie.bigger {
  width: 100px;
  margin-top: 0;
  margin-left: -26px;
  margin-right: 4px;
}

.flex-block-29 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-self: flex-start;
  width: 100%;
  margin-top: 0;
}

.flex-block-30 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  width: 100%;
  margin-top: 0;
}

.div-block-65-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  flex: 0 auto;
  justify-content: space-between;
  align-self: auto;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.subt1 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  order: 1;
  align-self: center;
  width: 100%;
  height: auto;
  display: none;
  position: relative;
}

.copyright {
  color: var(--black);
  letter-spacing: 0;
  flex: 0 auto;
  margin-top: 8px;
  margin-left: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 7svw;
  line-height: .9em;
  display: flex;
}

.lottie-animation-13 {
  order: -1;
  width: 9%;
  margin-top: -7px;
  margin-left: -9px;
  margin-right: 5px;
}

.allflash {
  z-index: 20000;
  flex: 0 auto;
  justify-content: space-between;
  width: 100%;
  height: auto;
  display: none;
  position: absolute;
  top: -104px;
}

.allflash._2 {
  top: 400px;
}

.solutions {
  color: #000;
  letter-spacing: .03em;
  margin-left: 40px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 1.6vw;
  font-weight: 300;
  line-height: 1em;
}

.solutions.nopadd {
  margin-bottom: 10px;
  margin-left: 0;
}

.subt2 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  order: -9999;
  width: auto;
  position: absolute;
  inset: 100px 0% auto;
}

.lottie-animation-14 {
  border-top: 1px #d6d6d6;
  border-bottom: 1px silver;
}

.lottiedemo {
  background-color: #fff0;
  border: 1px #d6d6d6;
  border-radius: 20px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 0;
  display: flex;
  position: relative;
  transform: translate(0);
}

.div-block-87 {
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

._555 {
  background-color: #ffffff4a;
  border: 1px #d6d6d6;
  border-top-width: 0;
  border-radius: 20px;
  padding: 11px;
  box-shadow: 0 0 #fff0, 0 2.4px 2.6px #ffffff04, 0 4.9px 5.2px #ffffff05, 0 7.5px 7.8px #ffffff06, 0 10.2px 10.4px #ffffff06, 0 13.3px 13.1px #ffffff07, 0 16.8px 15.9px #ffffff07, 0 21.1px 18.8px #ffffff07, 0 26.3px 21.9px #ffffff07, 0 33.3px 25.2px #ffffff07, 0 42.8px 29.1px #ffffff07, 0 56.9px 33.7px #ffffff08, 0 79.9px 39.8px #ffffff08, 0 125.2px 49.9px #ffffff09;
}

.magnetoexplicacion0, .magnetoexplicacion5, .magnetoexplicacion5-2, .magnetoexplicacion0-2 {
  width: auto;
  height: auto;
}

.image-36 {
  width: 100%;
  max-width: none;
  display: none;
}

.magnetoexplicacion0-3, .magnetoexplicacion6 {
  width: auto;
  height: auto;
}

.magnetoexplicacion0-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  height: auto;
  display: flex;
  position: static;
  inset: 0%;
}

.magnetoexplicacion6-2 {
  width: auto;
  height: auto;
}

.magnetolottie2resp {
  width: auto;
  height: auto;
  display: none;
}

.magnetolottie2resp.hidden {
  display: flex;
}

.initialtext {
  color: #000;
  text-align: center;
  letter-spacing: .01em;
  text-transform: none;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 80%;
  max-width: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4em;
  display: flex;
  position: absolute;
}

.initialtext.hidden {
  color: #000;
  text-align: center;
  letter-spacing: .02em;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.3em;
  text-decoration: none;
}

.initialtext.second {
  color: #000;
  text-align: left;
  letter-spacing: .03em;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.37em;
  text-decoration: none;
}

.initialtext._2 {
  font-weight: 300;
}

.text-span-57, .text-span-58 {
  font-weight: 600;
}

.secondtext {
  color: #000;
  text-align: center;
  letter-spacing: .02em;
  text-transform: none;
  flex: 0 auto;
  align-self: center;
  width: 60%;
  max-width: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5em;
  display: block;
  position: absolute;
  top: -17px;
}

.secondtext.hidden {
  color: #000;
  text-align: center;
  letter-spacing: .02em;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.3em;
  text-decoration: none;
}

.secondtext.second {
  color: #000;
  text-align: left;
  letter-spacing: .03em;
  flex: 0 auto;
  align-self: center;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.37em;
  text-decoration: none;
}

.secondtext._2 {
  font-weight: 300;
}

.button-2 {
  box-sizing: border-box;
  background-color: var(--naranjaelectrico);
  color: #fff;
  border: 1px #ddd;
  border-radius: 60px;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: auto;
  height: auto;
  padding: 30px 30px 27px;
  font-family: Inter Tight, sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  position: static;
  inset: 0% 0 0% 0%;
}

.flex-block-31 {
  box-sizing: border-box;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 0 auto;
  position: absolute;
  inset: 38% 0% 0% 14%;
}

.flex-block-32 {
  box-sizing: border-box;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 0 auto;
  height: auto;
  display: none;
  position: absolute;
  top: 38%;
  bottom: auto;
}

.magnetoexplicacion0-5 {
  border-bottom: 1px #000;
  flex: 0 auto;
  align-self: center;
  width: auto;
  height: auto;
  margin-top: 0;
  padding-bottom: 10px;
  display: flex;
}

.magnetoexplicacion0-5.bigres {
  display: flex;
}

.button-sol {
  box-sizing: border-box;
  color: #2e2e2e;
  letter-spacing: 0;
  white-space: nowrap;
  mix-blend-mode: normal;
  background-color: #fff0;
  border-radius: 0;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-left: 0;
  padding: 0;
  font-family: Martian Mono, sans-serif;
  font-size: 22px;
  font-weight: 200;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  position: static;
  top: 38%;
}

.button-sol:hover {
  background-color: #fff0;
}

.button-sol.w--current {
  border-radius: 200px;
}

.button-sol.grey {
  background-color: #ff0004;
  order: 1;
}

.button-sol.betasson {
  background-color: #ccc;
}

.button-sol.hidden {
  display: block;
}

.magnetoexplicacion0-6 {
  width: auto;
  height: auto;
}

.magnetoexplicacion0-7, .magnetoexplicacion0-8 {
  width: 250px;
  height: 109px;
}

.flex-block-33 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px #cecece;
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.text-span-59, .text-span-60 {
  font-weight: 600;
}

.magnetoexplicacion0-9 {
  width: 250px;
  height: 109px;
}

.lottiedemo-2 {
  background-color: #fff0;
  border: 1px #d6d6d6;
  border-radius: 20px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 0;
  display: flex;
  position: relative;
  transform: translate(0);
}

.magnetoresp1, .magnetoresp2 {
  width: 147px;
  height: 250px;
}

.magnetolootiesmall {
  flex: 0 auto;
  align-self: center;
  width: auto;
  height: auto;
  margin-top: 0;
  display: none;
}

.magnetolootiesmall.bigres {
  display: flex;
}

.text-span-63, .text-span-64 {
  font-weight: 600;
}

.magnetoexplicacion6-3 {
  width: 250px;
  height: 109px;
}

.magnetoexplicacion6-4 {
  width: 250px;
  height: 93px;
}

.image-37 {
  align-self: center;
  width: 60%;
  margin-top: -30px;
  margin-bottom: 10px;
  display: block;
}

.text-span-65, .text-span-66 {
  font-weight: 600;
}

.lottietitle {
  align-self: center;
  width: 38%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: absolute;
  top: -40px;
  left: 40%;
  right: auto;
}

.lottietitle._2 {
  width: 30%;
  margin-top: 10px;
  right: 22%;
}

.lottietitle._1 {
  width: 13px;
  margin-top: 0;
  margin-right: 5px;
}

.lottietitle._3 {
  margin-top: 10px;
}

.lottietitle._4 {
  border-style: none;
  margin-top: 10px;
}

.lottietitle.bigger {
  width: 100px;
  margin-top: 0;
  margin-left: -26px;
  margin-right: 4px;
}

.lottietitle.hidden {
  display: none;
}

.magnetoexplicacion0-10 {
  width: 250px;
  height: 109px;
}

.beleiveus {
  z-index: 9999;
  color: #000;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  flex-flow: column;
  align-self: center;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 2.6vw;
  font-weight: 200;
  line-height: 1.3em;
  display: block;
  position: static;
  top: 7px;
}

.beleiveus.magic {
  box-sizing: border-box;
  direction: ltr;
  text-align: right;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-overflow: clip;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1em;
  display: flex;
}

.beleiveus.last {
  letter-spacing: 2px;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 5vw;
  font-weight: 900;
}

.beleiveus.mag {
  color: var(--black);
  text-align: left;
  letter-spacing: -.2vw;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: color-burn;
  background-color: #e0e0e000;
  flex: 0 auto;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 20vw;
  font-style: normal;
  font-weight: 400;
  line-height: .88em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.beleiveus.neto {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -.05em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -8px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.beleiveus.free {
  text-align: right;
  letter-spacing: -1px;
  text-indent: -4px;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-weight: 300;
  line-height: 1em;
  display: flex;
}

.beleiveus.lane {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  text-indent: 0;
  flex: 0 auto;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 7vw;
  font-style: normal;
  font-weight: 900;
  line-height: .4em;
  text-decoration: none;
  display: flex;
}

.beleiveus.fds {
  text-align: right;
  letter-spacing: -1px;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1em;
  display: block;
}

.beleiveus.white {
  color: #000;
}

.beleiveus.ma {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -.05em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -12px;
  padding-top: 0;
  padding-right: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
  overflow: visible;
}

.beleiveus.o {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  filter: none;
  outline-offset: 0px;
  color: #fff;
  text-align: left;
  letter-spacing: -3px;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -12px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.beleiveus.small {
  letter-spacing: 0;
  width: 100%;
  margin-bottom: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 3.5vw;
  font-weight: 600;
  line-height: 1em;
  display: block;
}

.beleiveus.smaller {
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Mona Sans, sans-serif;
  font-size: 1.4vw;
  font-weight: 300;
  line-height: 1.3em;
}

.text-span-67 {
  font-weight: 500;
}

.text-span-68 {
  font-weight: 600;
}

.italic-text {
  margin-right: 5px;
}

.flex-block-34 {
  z-index: 20000;
  background-color: #fafafa00;
  border-bottom: 1px solid #000;
  align-self: flex-start;
  width: 100%;
  padding-top: 3vw;
  padding-bottom: 3.2vw;
  display: none;
  position: relative;
}

.leyenda {
  color: #050505;
  text-align: center;
  letter-spacing: .02em;
  -webkit-text-stroke-color: #000000b3;
  text-transform: none;
  flex-flow: column;
  order: -9999;
  align-self: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5em;
  text-decoration: none;
  display: flex;
}

.leyenda.primero {
  box-sizing: border-box;
  color: #000;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.leyenda.primero.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.primero.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.primero.segundo.intro {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #000000f7;
  letter-spacing: .01em;
  flex-flow: column;
  order: 0;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  display: flex;
}

.leyenda.primero.segundo.top {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #000000f7;
  letter-spacing: .015em;
  flex-flow: column;
  order: 0;
  justify-content: flex-start;
  align-self: center;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5em;
  display: flex;
}

.leyenda.primero.medio {
  align-self: center;
  line-height: 1.1em;
}

.leyenda.primero.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.primero.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.primero.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.leyenda.primero.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.primero.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.primero.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.leyenda.relativebig {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #000;
  flex-flow: row;
  order: -1;
  align-self: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 30px;
  line-height: 1em;
  display: flex;
  position: static;
  top: -213px;
}

.leyenda.relativebig.segundo {
  clear: none;
  color: #00000080;
  flex-direction: column;
  align-self: flex-end;
  width: 30%;
  max-width: 30ch;
  padding-left: 60px;
  font-size: 16px;
  display: flex;
}

.leyenda.relativebig.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  padding-left: 0;
}

.leyenda.relativebig.segundo.intro {
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}

.leyenda.relativebig.medio {
  align-self: center;
}

.leyenda.center {
  text-align: left;
  flex: 1;
  align-self: flex-start;
  margin-bottom: 0;
  display: block;
}

.leyenda.center.right2 {
  text-align: right;
}

.leyenda.nestappfirst {
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 28px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.leyenda.nestappfirst.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.nestappfirst.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.nestappfirst.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.leyenda.nestappfirst.medio {
  align-self: center;
  line-height: 1.1em;
}

.leyenda.nestappfirst.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.nestappfirst.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.nestappfirst.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.leyenda.nestappfirst.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.nestappfirst.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.nestappfirst.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.leyenda.right {
  box-sizing: border-box;
  color: #000;
  text-align: right;
  flex-flow: row;
  align-self: flex-start;
  max-width: none;
  margin: 0;
  padding-left: 0;
  font-size: 32px;
  line-height: 1.1em;
  display: block;
  position: static;
}

.leyenda.right.segundo {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.right.segundo.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.right.segundo.intro {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-start;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1em;
  display: flex;
}

.leyenda.right.medio {
  align-self: center;
  line-height: 1.1em;
}

.leyenda.right.segundo-copy {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: center;
  align-items: flex-start;
  width: 30%;
  max-width: 30ch;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.right.segundo-copy.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.right.segundo-copy.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.leyenda.right.nest {
  clear: none;
  color: #000000b3;
  flex-flow: column;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: 50ch;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
  display: block;
}

.leyenda.right.nest.ultimo {
  align-self: center;
  margin-left: 44px;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.2em;
}

.leyenda.right.nest.intro {
  color: #000000b3;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.leyenda.derecha {
  font-size: 14px;
}

.leyenda.white {
  color: #000000c9;
  letter-spacing: .2px;
  font-family: Martian Mono, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.6em;
}

.price {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid #000;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
}

.techmockups {
  z-index: 9999;
  color: #000;
  text-align: center;
  letter-spacing: -.01em;
  text-transform: uppercase;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 99.61%;
  margin: 0 5px 5px 0;
  padding-top: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 14.9vw;
  font-weight: 200;
  line-height: .8em;
  display: flex;
  position: static;
  top: 7px;
  overflow: hidden;
}

.techmockups.magic {
  box-sizing: border-box;
  direction: ltr;
  text-align: right;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-overflow: clip;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1em;
  display: flex;
}

.techmockups.last {
  letter-spacing: 2px;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 5vw;
  font-weight: 900;
}

.techmockups.mag {
  color: var(--black);
  text-align: left;
  letter-spacing: -.2vw;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: color-burn;
  background-color: #e0e0e000;
  flex: 0 auto;
  width: auto;
  min-width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: Latinotype juana alt, sans-serif;
  font-size: 20vw;
  font-style: normal;
  font-weight: 400;
  line-height: .88em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.techmockups.neto {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -.05em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -8px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.techmockups.free {
  text-align: right;
  letter-spacing: -1px;
  text-indent: -4px;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-weight: 300;
  line-height: 1em;
  display: flex;
}

.techmockups.lane {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  text-indent: 0;
  flex: 0 auto;
  font-family: Bonto Variable, Arial, sans-serif;
  font-size: 7vw;
  font-style: normal;
  font-weight: 900;
  line-height: .4em;
  text-decoration: none;
  display: flex;
}

.techmockups.fds {
  text-align: right;
  letter-spacing: -1px;
  text-transform: uppercase;
  flex: 0 auto;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Foundersgrotesk Light, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1em;
  display: block;
}

.techmockups.white {
  color: #000;
}

.techmockups.ma {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -.05em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -12px;
  padding-top: 0;
  padding-right: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
  overflow: visible;
}

.techmockups.o {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  filter: none;
  outline-offset: 0px;
  color: #fff;
  text-align: left;
  letter-spacing: -3px;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -12px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 14vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
}

.techmockups.mockups {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 0px;
  color: var(--black);
  text-align: left;
  letter-spacing: -.05em;
  text-indent: 0;
  text-transform: uppercase;
  text-overflow: clip;
  mix-blend-mode: normal;
  outline: 3px #fff;
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 10vw;
  font-style: normal;
  font-weight: 600;
  line-height: .8em;
  text-decoration: none;
  transition: letter-spacing .2s, line-height .2s, font-size .2s;
  display: flex;
  overflow: visible;
}

.text-span-69 {
  color: #000;
  text-align: left;
  letter-spacing: -.1em;
  width: auto;
  margin: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-weight: 300;
  line-height: .8em;
}

.div-block-88 {
  align-self: center;
}

.div-block-89 {
  background-color: #000;
  order: -9999;
  align-self: center;
  width: 1px;
  height: 100px;
  line-height: 50;
}

.div-block-89.shorter {
  height: 50px;
}

.heading-9 {
  color: #000;
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 10px;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 1.8vw;
  font-weight: 300;
  line-height: 1.4em;
}

.solutions-2 {
  color: #000;
  letter-spacing: .06em;
  margin-bottom: 10px;
  margin-left: 0;
  padding-top: 0;
  font-family: Mona Sans, sans-serif;
  font-size: 1.6vw;
  font-weight: 300;
  line-height: 1em;
}

.flex-block-35 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #f6f6ef;
  border: 1px #333;
  border-radius: 10px;
  flex-flow: row;
  padding: 27px;
}

.flex-block-35.green {
  background-color: #e9e9e9;
}

.flex-block-35.dos {
  background-color: #e9f1eb;
  padding-top: 27px;
  padding-left: 27px;
  padding-right: 27px;
}

.flex-block-36 {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
}

.whiteon {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  background-color: #fff;
  border-radius: 10px;
  padding: 23px 20px 22px;
}

.div-block-90 {
  background-color: #91919173;
  align-self: stretch;
  width: 1px;
  height: auto;
  display: none;
}

.text-span-70, .text-span-71, .text-span-72 {
  font-weight: 700;
}

.top {
  background-color: #ff010000;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  padding: 40px 0 24px;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.text-span-73 {
  color: #fff;
}

.div-block-91 {
  background-color: var(--white);
  color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.text-span-74 {
  letter-spacing: -.1em;
}

.subt_top {
  z-index: 20000;
  background-color: #fafafa00;
  border-bottom: 1px #000;
  align-self: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-top: 3vw;
  padding-bottom: 3.2vw;
  position: relative;
}

.text-span-75 {
  margin-left: 20px;
}

@media screen and (min-width: 1280px) {
  .big-heading.neto {
    font-size: 12vw;
    display: none;
  }

  .big-heading.mockups {
    align-self: center;
    font-weight: 600;
  }

  .descripcion-proyecto.primero.segundo.intro {
    color: #2c2c2cf7;
    letter-spacing: .02em;
    font-size: 16px;
    font-weight: 400;
  }

  .div-block-14._2 {
    width: 100%;
    min-width: auto;
  }

  .div-block-14._3 {
    min-width: auto;
  }

  .hero {
    background-image: none;
  }

  .introtext_hero.hidden {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .neto {
    display: flex;
  }

  .firstheadline {
    z-index: 10;
    color: var(--black);
  }

  .flex-block-8 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .bigim-2 {
    padding-left: 0;
  }

  .relacion {
    width: 100%;
    margin-bottom: 40px;
  }

  .hiddenblock {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .textobloques.realtive {
    margin-left: 4vw;
  }

  .textobloques.centered {
    max-width: 420px;
  }

  .fechaup {
    padding-top: 0;
    text-decoration: none;
  }

  .video-fotocirc.big {
    aspect-ratio: 3 / 2;
    align-self: flex-end;
    width: 30vw;
    overflow: visible;
  }

  .bloques-principales {
    display: none;
  }

  .bloques-principales._02 {
    display: flex;
  }

  .bloques-principales._01 {
    padding-right: 0;
    display: flex;
  }

  .bloques-principales._03, .bloques-principales._04 {
    display: flex;
  }

  .fullscroll {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 40px;
  }

  .smallheadings.growth {
    order: 1;
  }

  .image-27 {
    border-radius: 20px;
    width: 100%;
    max-width: none;
    height: auto;
  }

  .flex-block-24.hidden {
    display: none;
  }

  .nombre_app {
    text-transform: none;
  }

  .videocircularentry {
    display: none;
  }

  .sectionsticky-1 {
    font-weight: 300;
  }

  .lottiesgen.spaceafter {
    margin-bottom: 0;
  }

  .txtyvideo {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 10px;
  }

  .txtyvideo.absolute {
    margin-top: 20px;
  }

  .bloqueseccionb.white {
    font-weight: 400;
  }

  .txtmaindestacados {
    align-self: flex-start;
    width: 85%;
    margin-bottom: 0;
  }

  .destnumbig {
    width: 100%;
    margin-top: 20px;
  }

  .destnumbig.inside {
    display: none;
  }

  .bigim {
    padding-left: 0;
  }

  .super-swiper {
    width: 100%;
    display: none;
  }

  .div-block-65 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
  }

  .proximas-actividades, .proximas-actividades._4, .proximas-actividades._2, .proximas-actividades._5, .proximas-actividades._3 {
    border-radius: 10px;
  }

  .destenintrosentence {
    font-weight: 400;
  }

  .nav_lateral {
    flex-flow: column;
    flex: 0 auto;
  }

  .swiper.is-next {
    display: none;
  }

  .databignumbers.lottie {
    max-width: 32%;
  }

  .databignumbers.lottie._100 {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
  }

  .pie {
    color: #686868;
    align-self: flex-end;
    margin-top: 15px;
    font-size: 13px;
  }

  .flashlottie {
    mix-blend-mode: normal;
    align-self: center;
    width: 30%;
    display: flex;
    position: absolute;
    top: -80px;
    right: -3%;
  }

  .flashlottie._2 {
    width: 25%;
    position: static;
  }

  .flashlottie._1 {
    position: static;
  }

  .flashlottie._3, .flashlottie._4 {
    width: 25%;
    position: static;
  }

  .flashlottie.bigger {
    position: static;
  }

  .flex-block-29 {
    width: 100%;
  }

  .div-block-65-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    align-items: flex-start;
    display: flex;
  }

  .allflash {
    top: 10px;
  }

  .solutions {
    display: block;
  }

  .subt2 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
  }

  .div-block-87 {
    width: 100%;
  }

  .magnetoexplicacion0 {
    width: auto;
    height: auto;
  }

  .initialtext.second, .secondtext.second {
    letter-spacing: .02em;
  }

  .flex-block-31 {
    left: 17%;
  }

  .button-sol {
    letter-spacing: 0;
    font-family: Martian Mono, sans-serif;
    font-size: 22px;
    font-weight: 200;
  }

  .text-span-61, .text-span-62 {
    font-weight: 600;
  }

  .lottietitle {
    mix-blend-mode: normal;
    align-self: center;
    display: flex;
    position: absolute;
  }

  .lottietitle._2 {
    width: 25%;
    position: static;
  }

  .lottietitle._1 {
    position: static;
  }

  .lottietitle._3, .lottietitle._4 {
    width: 25%;
    position: static;
  }

  .lottietitle.bigger {
    position: static;
  }

  .beleiveus.neto, .beleiveus.ma, .beleiveus.o {
    font-weight: 600;
  }

  .leyenda {
    font-size: 12px;
    font-weight: 400;
  }

  .leyenda.primero.segundo.intro {
    color: #2c2c2cf7;
    letter-spacing: .02em;
    font-size: 16px;
    font-weight: 400;
  }

  .techmockups {
    margin-left: 0;
    font-size: 14.9vw;
  }

  .techmockups.neto, .techmockups.ma, .techmockups.o {
    font-weight: 600;
  }

  .techmockups.mockups {
    align-self: center;
    font-weight: 600;
  }

  .solutions-2 {
    display: flex;
  }

  .top {
    background-image: none;
    background-repeat: repeat;
  }
}

@media screen and (min-width: 1440px) {
  .big-heading.mag {
    font-size: 18px;
    display: flex;
  }

  .big-heading.neto {
    justify-content: center;
    align-items: flex-start;
    margin-left: -3px;
    font-size: 280px;
  }

  .big-heading.ma {
    justify-content: center;
    align-items: flex-start;
    font-size: 140px;
  }

  .big-heading.o {
    justify-content: center;
    align-items: flex-start;
    margin-left: -6px;
    font-size: 140px;
  }

  .big-heading.mockups {
    justify-content: center;
    align-items: flex-start;
    font-size: 200px;
  }

  .big-heading.by {
    flex: 0 auto;
    font-size: 85px;
  }

  .descripcion-proyecto.primero.segundo.intro {
    align-self: flex-start;
  }

  .descripcion-proyecto.primero.segundo.top {
    align-self: flex-start;
    font-size: 16px;
    font-weight: 300;
  }

  .mag {
    margin-left: -6px;
    display: none;
  }

  .div-block-14._3 {
    padding-top: 0;
    padding-left: 80px;
    padding-right: 80px;
  }

  .introtexts.fds.last {
    text-align: left;
  }

  .lottie-animation.smartmeet {
    width: 100%;
  }

  .lottie-animation.snapbrand {
    flex: 0 auto;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-right: 0;
    overflow: visible;
  }

  .freedesign {
    padding-right: 40px;
  }

  .introtext_hero.hidden {
    font-size: 15px;
  }

  .introtext_hero.second {
    letter-spacing: .02em;
  }

  .neto {
    letter-spacing: 0;
    margin-left: 0;
  }

  .titbig.white {
    letter-spacing: 0;
  }

  .button {
    padding-bottom: 21px;
    font-family: Mona Sans, sans-serif;
    line-height: 1em;
  }

  .button.betasson {
    font-family: Mona Sans, sans-serif;
  }

  .playground {
    border-top-style: none;
    align-self: center;
    padding-right: 40px;
  }

  .flex-block_hero {
    max-width: none;
  }

  .content {
    padding-right: 0;
    display: flex;
  }

  .firstheadline {
    width: auto;
    margin-bottom: 20px;
    font-size: 17px;
  }

  .image-14 {
    right: 1%;
  }

  .coluna {
    border-right-color: #e6e6e6;
    min-width: 200px;
  }

  .bigim-2 {
    z-index: 2000;
    align-self: flex-start;
    padding-left: 0;
    top: 45.5%;
    left: 106px;
  }

  .titlenext {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    margin-top: 2px;
    font-size: 20px;
  }

  .titlenext.home2 {
    font-size: 20px;
  }

  .hiddenblock {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }

  .imagenlibros {
    width: 100%;
    height: auto;
  }

  .ndp-prox {
    flex-flow: wrap;
    flex: 0 auto;
    align-self: auto;
    margin-top: 0;
    margin-left: 3px;
    padding-bottom: 12px;
  }

  .timelinetext {
    font-size: 13px;
  }

  .timelinetext.up {
    text-align: left;
    align-self: flex-start;
    width: 80%;
    padding-bottom: 6px;
    padding-left: 0;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3em;
  }

  .textobloques {
    align-self: center;
    min-width: 340px;
    max-width: 430px;
    margin-bottom: 60px;
  }

  .textobloques.dcha {
    max-width: 600px;
  }

  .textobloques.realtive {
    max-width: 420px;
    display: none;
  }

  .textobloques.centered {
    max-width: 600px;
  }

  .fechaup {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    background-color: #fff0;
    border-radius: 0;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100px;
    margin-right: 0;
    padding: 0;
  }

  .txttitular {
    flex-flow: row;
    margin-top: 0;
    padding-top: 0;
  }

  .txttitular.dos {
    flex-flow: column;
  }

  .video-fotocirc.big {
    aspect-ratio: 3 / 2;
    background-image: none;
    justify-content: flex-start;
    align-self: flex-end;
    align-items: flex-start;
    width: 30vw;
    min-width: auto;
    max-width: none;
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }

  .play-pause-button {
    display: none;
  }

  .bloques-principales {
    max-width: none;
    display: none;
  }

  .bloques-principales._02 {
    max-width: 1900px;
    display: flex;
  }

  .bloques-principales._01 {
    width: auto;
    max-width: 1900px;
    margin-top: 0;
    margin-bottom: 100px;
    display: flex;
  }

  .bloques-principales._03, .bloques-principales._04 {
    max-width: 1900px;
    display: flex;
  }

  .fullscroll {
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1600px;
    margin-top: 0;
    padding-top: 100px;
    padding-left: 0;
    padding-right: 40px;
    top: 0;
  }

  .conectorproyectos2 {
    margin-top: 0;
  }

  .flex-block-25 {
    flex: 0 auto;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
    width: 100%;
    max-width: none;
  }

  .flex-block-24 {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .div-block-80 {
    outline-offset: 0px;
    background-color: #888;
    outline: 3px #555;
    flex: 1;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    height: 1px;
    margin-top: 10px;
    margin-right: 20px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .nombre_app {
    letter-spacing: -.05em;
    font-family: Mona Sans, sans-serif;
    font-size: 55px;
    font-weight: 400;
    line-height: .9em;
    transition: font-size .2s;
  }

  .imagen-video {
    flex-flow: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .circproxb {
    z-index: auto;
    box-sizing: border-box;
    background-color: #0000;
    background-image: linear-gradient(180deg, #ffffff03 27%, #00000080 50%, #ffffff03), linear-gradient(to bottom, null, null), url('../images/hombreMirando.jpg');
    box-shadow: none;
    opacity: .95;
    backface-visibility: hidden;
    perspective: none;
    perspective-origin: 0 0;
    transform-origin: 0 0;
    cursor: pointer;
    border-radius: 600px;
    flex-flow: column;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
    width: 45vh;
    min-width: 450px;
    max-width: 1200px;
    height: 45vh;
    min-height: 450px;
    max-height: 820px;
    margin-left: 0;
    margin-right: 0;
    transition: opacity .275s;
    display: flex;
    position: relative;
    inset: 0% 26% 0% 0%;
    overflow: visible;
    transform: none;
  }

  .circproxb.home2 {
    background-image: linear-gradient(#00000061, #00000061), url('../images/Retrato-Jaume-con-Invisibles_3_11zon-scaled.webp');
  }

  .conectorproyectos {
    margin-top: 0;
  }

  .conectorproyectos.negro {
    width: 2vw;
  }

  .conectorproyectos.lastconector {
    flex: 0 auto;
    width: 20px;
    max-width: none;
  }

  .flex-block-26 {
    width: 100%;
  }

  .sectionsticky-1 {
    letter-spacing: 0;
    text-transform: none;
    align-self: flex-start;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 3px;
    padding-right: 40px;
    font-weight: 300;
  }

  .lottiesgen {
    align-self: center;
  }

  .txtyvideo {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    max-width: none;
    padding-bottom: 20px;
  }

  .txtyvideo.absolute {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 0;
  }

  .lynx-accordion-content {
    display: flex;
  }

  .superheading {
    flex: 0 auto;
    display: block;
  }

  .bloqueseccionb.white {
    box-sizing: border-box;
    align-self: center;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.4em;
  }

  .conectorandndp {
    display: none;
  }

  .ahoratext {
    letter-spacing: -1px;
    align-self: flex-start;
    font-family: Martian Mono, sans-serif;
    font-size: 28px;
    font-weight: 200;
    line-height: 40px;
  }

  .flex-block-18 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .entrdillaprox {
    align-self: flex-start;
    width: auto;
    max-width: 60%;
    padding-top: 0;
    padding-left: 2vw;
    padding-right: 0;
    display: none;
  }

  .lottie-animation-11 {
    background-color: #0000;
    border-radius: 100px;
    align-self: flex-end;
    width: 60px;
    height: auto;
  }

  .lottie-animation-11.absolute {
    background-color: #fff;
  }

  .txtmaindestacados {
    text-transform: none;
    align-self: center;
    width: 80%;
    margin-bottom: 0;
    padding-top: 0;
    font-weight: 400;
  }

  .circulosconproxb {
    perspective: 514px;
    perspective-origin: 50%;
    transform-origin: 0%;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0;
    display: flex;
    left: 180px;
    transform: none;
  }

  .image-28.visisble {
    width: 100%;
    display: none;
  }

  .destnumbig {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .flex-block-27 {
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .contenido_capitulo {
    width: 100%;
  }

  .lottie-animation-9 {
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-right: auto;
    display: flex;
    inset: 1.5% 0% 0%;
  }

  .lottie-animation-9.home2 {
    width: 120px;
    display: none;
  }

  .boton-hidden1 {
    background-color: #3f3ce0;
    align-self: flex-end;
  }

  .bigim {
    z-index: 2000;
    flex: 0 auto;
    align-self: flex-start;
    padding-left: 0;
    top: 30%;
    left: 106px;
  }

  .super-swiper {
    margin-top: 20px;
    margin-bottom: 5px;
    display: none;
    overflow: hidden;
  }

  .div-block-65 {
    margin-bottom: 0;
  }

  .manana {
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    display: none;
  }

  .fechaprox {
    display: none;
  }

  .proximas-actividades {
    background-image: linear-gradient(#fff0 10%, #000000bf), url('../images/sistGraficoA.jpg');
    border-radius: 10px;
    width: 32vh;
    max-width: 600px;
    height: 32vh;
    max-height: 600px;
  }

  .proximas-actividades:hover {
    opacity: .9;
  }

  .proximas-actividades._4 {
    background-image: linear-gradient(#ffffff08 10%, #000000bf), url('../images/icons2.png');
    background-position: 0 0, 50% 100%;
    border-radius: 10px;
    width: 32vh;
    min-width: 300px;
    height: 32vh;
    min-height: 300px;
  }

  .proximas-actividades._2 {
    background-image: linear-gradient(#ffffff0a 10%, #000000bf), url('../images/sistGrafico1.png');
    background-position: 0 0, 50% 100%;
    background-size: auto, cover;
    border-radius: 10px;
    width: 32vh;
    min-width: 300px;
    height: 32vh;
    min-height: 300px;
  }

  .proximas-actividades._5 {
    background-image: linear-gradient(#ffffff0f 10%, #000000bf), url('../images/ENERO-1.jpg');
    background-position: 0 0, 50% 0;
    border-radius: 10px;
    width: 32vh;
    min-width: 300px;
    height: 32vh;
    min-height: 300px;
  }

  .proximas-actividades._3 {
    background-image: linear-gradient(#fff0 10%, #000000bf), url('../images/typeConstruction.png');
    background-position: 0 0, 0%;
    background-size: auto, cover;
    border-radius: 10px;
    width: 32vh;
    min-width: 300px;
    height: 32vh;
    min-height: 300px;
  }

  .swiper-slide {
    mix-blend-mode: luminosity;
    display: flex;
    left: 210px;
  }

  .swiper-slide.is-next {
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    left: 0;
  }

  .numbig {
    font-size: 60px;
  }

  .nav_lateral {
    flex: 1;
    max-width: 10%;
  }

  .itemsacordeon {
    align-self: stretch;
    align-items: stretch;
  }

  .swiper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
    max-width: none;
    margin-bottom: 190px;
    margin-left: 520px;
    padding-top: 130px;
    padding-right: 10px;
    display: flex;
  }

  .swiper.is-next {
    z-index: 1000;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    display: flex;
    overflow: visible;
  }

  .hiddeninfo1 {
    flex: 0 auto;
    display: block;
  }

  .detalleprox {
    color: #fff;
  }

  .swiper-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .swiper-wrapper.is-next {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-self: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .colsdiferentes {
    margin-top: 40px;
  }

  .parrafosbloques.alindcha {
    text-transform: none;
    line-height: 1.4em;
  }

  .parrafosbloques.alindcha.absolute {
    line-height: 1.2em;
  }

  .databignumbers {
    align-self: flex-end;
  }

  .databignumbers.lottie {
    flex-flow: column;
  }

  .databignumbers.lottie._100 {
    margin-bottom: 30px;
  }

  .destacados {
    max-width: none;
  }

  .destacados.dcha {
    width: 100%;
  }

  .intrrosub {
    width: 90%;
  }

  .flex-block-28 {
    background-image: none;
    padding-bottom: 0;
  }

  .before {
    border-radius: 10px;
    width: 100%;
    height: auto;
    line-height: 5px;
  }

  .flashlottie {
    right: 1%;
  }

  .flashlottie._2, .flashlottie._3, .flashlottie._4 {
    width: 22%;
  }

  .flex-block-29 {
    width: 100%;
  }

  .div-block-65-copy {
    flex-flow: row;
    margin-bottom: 0;
  }

  .copyright {
    color: var(--black);
    justify-content: center;
    align-items: flex-start;
    margin-left: 3px;
    font-size: 100px;
  }

  .allflash {
    top: 20px;
  }

  .solutions {
    letter-spacing: .04em;
    margin-bottom: 40px;
    font-size: 22px;
  }

  .solutions.nopadd {
    margin-bottom: 20px;
    margin-left: 0;
  }

  .lottiedemo {
    width: 100%;
    margin-bottom: 40px;
  }

  .magnetoexplicacion0 {
    width: auto;
    height: auto;
  }

  .magnetoexplicacion0-3, .magnetoexplicacion6, .magnetoexplicacion0-4, .magnetoexplicacion6-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .initialtext {
    justify-content: center;
    align-items: flex-start;
  }

  .initialtext.second {
    letter-spacing: .02em;
  }

  .secondtext {
    width: 60%;
  }

  .secondtext.second {
    letter-spacing: .02em;
  }

  .flex-block-31 {
    left: 22%;
  }

  .button-sol {
    font-size: 25px;
  }

  .flex-block-33 {
    padding-bottom: 20px;
  }

  .lottiedemo-2 {
    width: 100%;
  }

  .lottietitle {
    width: 38%;
    margin-top: 0;
    margin-left: 0;
    display: flex;
    top: -37px;
    left: 40%;
    right: 0%;
  }

  .lottietitle._2, .lottietitle._3, .lottietitle._4 {
    width: 22%;
  }

  .lottietitle.hidden {
    display: none;
  }

  .beleiveus {
    width: 75%;
    font-size: 36px;
    line-height: 1.2em;
  }

  .beleiveus.mag {
    font-size: 18px;
    display: flex;
  }

  .beleiveus.neto {
    justify-content: center;
    align-items: flex-start;
    margin-left: -11px;
    font-size: 200px;
  }

  .beleiveus.ma, .beleiveus.o {
    justify-content: center;
    align-items: flex-start;
    font-size: 200px;
  }

  .beleiveus.small {
    font-size: 50px;
    line-height: 1em;
  }

  .beleiveus.smaller {
    font-size: 20px;
  }

  .flex-block-34 {
    border-top: 1px #000;
    margin-bottom: 0;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .leyenda {
    font-size: 12px;
  }

  .leyenda.primero.segundo.intro {
    align-self: flex-start;
  }

  .leyenda.primero.segundo.top {
    align-self: center;
    font-weight: 300;
  }

  .techmockups {
    margin-left: 0;
    font-size: 15vw;
  }

  .techmockups.mag {
    font-size: 18px;
    display: flex;
  }

  .techmockups.neto {
    justify-content: center;
    align-items: flex-start;
    margin-left: -11px;
    font-size: 200px;
  }

  .techmockups.ma, .techmockups.o, .techmockups.mockups {
    justify-content: center;
    align-items: flex-start;
    font-size: 200px;
  }

  .text-span-69 {
    width: 260px;
  }

  .heading-9 {
    font-size: 30px;
    line-height: 1.3em;
  }

  .solutions-2 {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .top {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    width: 65%;
  }

  .subt_top {
    border-top: 1px #000;
    margin-bottom: 0;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

@media screen and (min-width: 1920px) {
  .container-wrap {
    mix-blend-mode: normal;
    object-fit: fill;
    align-items: center;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .row-top {
    object-fit: fill;
    height: 100px;
    padding-top: 0;
    display: flex;
  }

  .row-middle {
    height: 85%;
  }

  .grid {
    grid-template-rows: .25fr 1fr;
    grid-template-columns: 1.3fr 1fr;
  }

  .img-inner.img-1 {
    background-image: url('../images/loeweint.jpg');
  }

  .img-inner.img-2 {
    background-image: url('../images/abatonweb.jpg');
  }

  .text-wrap {
    margin-bottom: 25px;
    position: static;
  }

  .text-hide {
    margin-top: -298px;
  }

  .block-cover {
    display: none;
  }

  .menu-parent {
    top: -10px;
  }

  .menu-parent-slide {
    border-left: 0 solid #000;
    display: block;
  }

  .nav-parent {
    align-self: flex-start;
    display: block;
  }

  .menu-txt {
    margin-bottom: 10px;
  }

  .heading {
    height: 10px;
    padding-top: 45px;
  }

  .contenedor-principal {
    margin-top: 0;
  }

  .body {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    overflow: visible;
  }

  .topheader {
    z-index: 9999;
    box-sizing: border-box;
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    align-items: center;
    width: 100%;
    min-width: auto;
    max-width: 1700px;
    height: auto;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .body-2 {
    overflow: visible;
  }

  .big-heading {
    z-index: 999;
    clear: none;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 55px;
    top: 9px;
  }

  .big-heading.magic {
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 6vh;
    line-height: 1em;
  }

  .big-heading.last {
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 12vw;
  }

  .big-heading.mag {
    letter-spacing: -6px;
    text-indent: 0;
    justify-content: flex-start;
    width: auto;
    font-size: 380px;
    display: flex;
  }

  .big-heading.neto {
    flex: 0 auto;
    align-self: flex-start;
  }

  .big-heading.free {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 6vw;
    line-height: 1em;
  }

  .big-heading.lane {
    text-indent: 0;
    margin-bottom: 0;
    line-height: .65em;
  }

  .big-heading.fds {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 6vw;
    line-height: 1em;
  }

  .big-heading.ma {
    flex: 0 auto;
    align-self: flex-start;
  }

  .big-heading.o {
    text-overflow: clip;
    mix-blend-mode: normal;
    flex: 0 auto;
    align-self: flex-start;
    position: static;
  }

  .big-heading.mockups {
    flex: 0 auto;
    align-self: flex-start;
    font-size: 200px;
  }

  .big-heading.by {
    mix-blend-mode: normal;
  }

  .paragraph-3 {
    color: #000;
    width: 100%;
    padding-right: 100px;
    font-family: Latinotype juana alt, sans-serif;
    font-size: 1.6vw;
    font-weight: 300;
  }

  .image-2 {
    box-sizing: border-box;
    object-fit: cover;
    object-position: 0% 50%;
    background-color: #fff;
    border-radius: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    margin-top: 0;
    position: static;
    top: 0;
    overflow: visible;
  }

  .laneawards {
    z-index: 1;
    box-sizing: border-box;
    clear: none;
    object-fit: contain;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: stretch;
    height: auto;
    margin-top: 1vw;
    margin-bottom: 0;
    margin-right: 0;
    padding-left: 0;
    line-height: 12px;
    display: flex;
    position: static;
    bottom: auto;
    right: auto;
    overflow: visible;
  }

  .grid-4 {
    grid-row-gap: 52px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .descripcion-proyecto.primero {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .descripcion-proyecto.primero.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.primero.segundo.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.primero.segundo.intro {
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1.5em;
  }

  .descripcion-proyecto.primero.segundo.top {
    flex: 0 auto;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5em;
  }

  .descripcion-proyecto.primero.medio {
    line-height: 1em;
  }

  .descripcion-proyecto.primero.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.primero.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.primero.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.primero.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.primero.nest.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.primero.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.relativebig {
    color: #000;
    align-self: flex-start;
    max-width: none;
    font-size: 50px;
    line-height: 1em;
  }

  .descripcion-proyecto.relativebig.segundo {
    align-self: flex-end;
    font-size: 20px;
  }

  .descripcion-proyecto.relativebig.segundo.intro {
    justify-content: flex-end;
    align-self: flex-end;
    padding-left: 10px;
  }

  .descripcion-proyecto.relativebig.medio {
    line-height: 1.1em;
  }

  .descripcion-proyecto.nestappfirst {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .descripcion-proyecto.nestappfirst.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.nestappfirst.segundo.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.nestappfirst.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.nestappfirst.medio {
    line-height: 1em;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.nestappfirst.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.nestappfirst.nest.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.nestappfirst.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.right {
    color: #000;
    text-align: right;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .descripcion-proyecto.right.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.right.segundo.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.right.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.right.medio {
    line-height: 1em;
  }

  .descripcion-proyecto.right.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.right.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.right.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.right.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .descripcion-proyecto.right.nest.ultimo {
    line-height: 1.3em;
  }

  .descripcion-proyecto.right.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .descripcion-proyecto.derecha {
    text-align: left;
  }

  .proyecto {
    display: block;
  }

  .imagen-proyecto {
    object-fit: contain;
    height: auto;
  }

  .div-block-6 {
    box-sizing: border-box;
    flex: 0 auto;
    width: auto;
    max-width: none;
    margin-top: 50px;
  }

  .destacado {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-radius: 30px;
    width: 100%;
    height: 100%;
  }

  .destacado.abajo {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: auto;
    height: auto;
    margin-bottom: 40px;
  }

  .destacado.shorter {
    width: auto;
    height: auto;
    margin-bottom: 60px;
  }

  .destacado.v {
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .destacado.vertresp {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .destacado.lastnomargin {
    margin-bottom: 140px;
  }

  .destacado.full {
    margin-bottom: 0;
  }

  .destacado.last {
    padding-right: 30px;
  }

  .destacado-imagen {
    border-bottom-left-radius: 20px;
    width: 100%;
  }

  .destacado-imagen.segundo {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    border-style: none;
    border-radius: 0 0 0 20px;
    flex: 0 auto;
    height: auto;
    display: block;
  }

  .destacado-imagen.segundoa, .destacado-imagen.vertical {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    width: auto;
    height: 800px;
    display: block;
  }

  .destacado-imagen.vertical2 {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    flex: 0 auto;
    order: -1;
    align-self: flex-start;
    height: auto;
    display: none;
    overflow: hidden;
  }

  .destacado-imagen.nestapp {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    width: auto;
    height: 800px;
    display: block;
  }

  .destacado-imagen.noborder {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    border-style: none;
    border-radius: 0;
    width: auto;
    height: 700px;
    display: block;
  }

  .destacado-imagen.timedoc {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    width: 100%;
    height: auto;
    display: block;
  }

  .destacado-imagen.subway2 {
    -webkit-text-fill-color: inherit;
    object-fit: cover;
    object-position: 100% 50%;
    background-clip: padding-box;
    border-style: none;
    border-radius: 0;
    flex: 1;
    order: -1;
    width: 50%;
    height: auto;
    display: none;
  }

  .destacado-imagen.uhc {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    border-style: none;
    border-color: #b41e1e;
    width: 100%;
    height: auto;
    display: block;
  }

  .destacado-imagen.vertical2-copy {
    -webkit-text-fill-color: inherit;
    background-clip: padding-box;
    flex: 0 auto;
    align-self: flex-start;
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
  }

  .destacado-imagen.fbbva {
    -webkit-text-fill-color: inherit;
    object-fit: contain;
    background-clip: padding-box;
    border-style: none;
    border-radius: 0;
    width: auto;
    height: 800px;
    display: block;
  }

  .link-block-2 {
    flex: 0 auto;
    align-items: center;
    display: flex;
  }

  .newwork {
    margin-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex: 0 auto;
    height: auto;
    margin-left: 0;
    padding-left: 0%;
  }

  .link-block-4 {
    object-fit: cover;
    height: 400px;
  }

  .paragraph-5 {
    color: #00000080;
    margin-bottom: 1px;
    padding-top: 22px;
    padding-bottom: 0;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
  }

  .link-2 {
    text-align: right;
    margin-left: 41px;
  }

  .heading-7 {
    line-height: 1em;
  }

  .ny {
    background-color: #fff;
    border-radius: 0;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    max-width: none;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
    inset: 35.5vw -1% 0% auto;
  }

  .div-block-14._1 {
    justify-content: flex-end;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-14._2 {
    justify-content: flex-end;
    align-items: flex-start;
    min-width: auto;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-14.free {
    justify-content: flex-end;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-14.free.white {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-14._3 {
    justify-content: flex-end;
    align-items: flex-start;
    min-width: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-left: 80px;
    padding-right: 80px;
  }

  .image-8 {
    margin-top: 0;
  }

  .background-video {
    height: 1000px;
  }

  .linkdouble {
    border-radius: 0;
    flex-flow: row;
    flex: 0 auto;
    justify-content: space-between;
    align-items: stretch;
    width: 40%;
    height: auto;
    margin-bottom: 5px;
  }

  .image-9 {
    align-self: flex-start;
    margin-bottom: 0;
  }

  .flex-block {
    max-width: none;
    inset: auto 0% 0% auto;
  }

  .introtexts {
    font-size: 22px;
    line-height: 1.4em;
  }

  .introtexts.fds {
    color: #000;
  }

  .introtexts.white {
    font-size: 20px;
  }

  .lottie-animation.smartmeet {
    border-top-style: solid;
    flex: 0 auto;
    width: 100%;
    display: flex;
    overflow: hidden;
  }

  .lottie-animation.snapbrand {
    border-radius: 0;
    flex: 1;
    width: 31.5%;
    overflow: visible;
  }

  .text-span-12 {
    letter-spacing: -1px;
    font-size: 8vw;
  }

  .text-span-12.smaller {
    letter-spacing: -2px;
  }

  .div-block-15 {
    justify-content: space-between;
    align-items: flex-start;
    max-width: 50%;
  }

  .magic-entry {
    width: 100%;
  }

  .freedesign {
    width: 100%;
    padding-right: 40px;
  }

  .teatro {
    flex: 0 auto;
    width: auto;
    height: 800px;
    overflow: visible;
  }

  .nestapp {
    flex: 0 auto;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .pennydiv {
    margin-top: -110px;
    padding-left: 30px;
    line-height: 20px;
  }

  .flex-block-2 {
    width: 60.1028%;
  }

  .hero {
    mix-blend-mode: normal;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    border-radius: 0;
    flex-flow: column;
    flex: 0 auto;
    align-self: center;
    max-width: 1700px;
  }

  .introtext_hero {
    color: #000;
    align-self: center;
    width: 35%;
    padding-top: 68px;
    padding-left: 20px;
    padding-right: 0;
    font-family: Latinotype juana alt, sans-serif;
    font-size: 31px;
    font-weight: 300;
  }

  .introtext_hero.hidden {
    padding-top: 0;
    font-size: 15px;
  }

  .introtext_hero.second {
    letter-spacing: .02em;
    width: 100%;
    max-width: none;
    padding-top: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4em;
  }

  .neto {
    filter: none;
  }

  .titbig {
    font-weight: 200;
  }

  .titbig.primero {
    color: #000;
    align-self: flex-end;
    max-width: 20ch;
    font-size: 50px;
    line-height: 1em;
  }

  .titbig.primero.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .titbig.primero.segundo.ultimo {
    line-height: 1.3em;
  }

  .titbig.primero.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .titbig.primero.medio {
    line-height: 1em;
  }

  .titbig.primero.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .titbig.primero.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .titbig.primero.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .titbig.primero.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .titbig.primero.nest.ultimo {
    line-height: 1.3em;
  }

  .titbig.primero.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .titbig.relativebig {
    color: #000;
    align-self: flex-end;
    max-width: 20ch;
    font-size: 50px;
    line-height: 1em;
  }

  .titbig.relativebig.segundo {
    align-self: flex-end;
    font-size: 20px;
  }

  .titbig.relativebig.segundo.intro {
    justify-content: flex-end;
    align-self: flex-end;
    padding-left: 10px;
  }

  .titbig.relativebig.medio {
    line-height: 1.1em;
  }

  .titbig.white {
    font-size: 25px;
    line-height: 1.2em;
  }

  .tit-intro40 {
    flex: 1;
    width: auto;
  }

  .magneto {
    width: 100%;
    margin-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .playground {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    width: auto;
    max-width: 1700px;
  }

  .timedocs {
    border-radius: 0 30px 30px 0;
    flex: 0 auto;
    width: 45%;
    height: auto;
  }

  ._4 {
    flex: 0 auto;
    width: auto;
    height: auto;
  }

  .youtube {
    width: 1px;
    height: 1px;
    max-height: 1px;
    overflow: visible;
  }

  .sp-track-wrapper {
    background-color: #0000001a;
  }

  .code-embed {
    background-color: #ededed00;
  }

  .uhc {
    border-color: #ddd;
    flex: 0 auto;
    width: 100%;
    height: auto;
  }

  .kickoff {
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: auto;
  }

  ._5 {
    flex: 0 auto;
    width: auto;
    height: auto;
  }

  .citabig {
    color: #000;
    align-self: center;
    width: auto;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 0;
    font-family: Latinotype juana alt, sans-serif;
    font-size: 70px;
    font-weight: 300;
  }

  .introhidden {
    color: #000;
    align-self: center;
    width: 35%;
    padding-top: 68px;
    padding-left: 20px;
    padding-right: 0;
    font-family: Latinotype juana alt, sans-serif;
    font-size: 31px;
    font-weight: 300;
  }

  .subsubmarcas {
    line-height: 1.3em;
  }

  .flex-block-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .flex-block_hero {
    background-color: var(--white);
    border-radius: 40px;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: center;
    width: 100%;
    max-width: none;
    display: flex;
    overflow: visible;
  }

  .content {
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    max-width: 1700px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 0;
  }

  .firstmodule {
    padding-bottom: 10px;
  }

  .headertop {
    width: auto;
    max-width: none;
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    inset: 0% 0% auto;
  }

  .urlhero.primero {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .urlhero.primero.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.primero.segundo.ultimo {
    line-height: 1.3em;
  }

  .urlhero.primero.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.primero.medio {
    line-height: 1em;
  }

  .urlhero.primero.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.primero.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .urlhero.primero.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.primero.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.primero.nest.ultimo {
    line-height: 1.3em;
  }

  .urlhero.primero.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.relativebig {
    color: #000;
    align-self: flex-start;
    max-width: 20ch;
    font-size: 50px;
    line-height: 1em;
  }

  .urlhero.relativebig.segundo {
    align-self: flex-end;
    font-size: 20px;
  }

  .urlhero.relativebig.segundo.intro {
    justify-content: flex-end;
    align-self: flex-end;
    padding-left: 10px;
  }

  .urlhero.relativebig.medio {
    line-height: 1.1em;
  }

  .urlhero.nestappfirst {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .urlhero.nestappfirst.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.nestappfirst.segundo.ultimo {
    line-height: 1.3em;
  }

  .urlhero.nestappfirst.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.nestappfirst.medio {
    line-height: 1em;
  }

  .urlhero.nestappfirst.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.nestappfirst.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .urlhero.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.nestappfirst.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.nestappfirst.nest.ultimo {
    line-height: 1.3em;
  }

  .urlhero.nestappfirst.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.right {
    color: #000;
    text-align: right;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .urlhero.right.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.right.segundo.ultimo {
    line-height: 1.3em;
  }

  .urlhero.right.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.right.medio {
    line-height: 1em;
  }

  .urlhero.right.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.right.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .urlhero.right.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.right.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .urlhero.right.nest.ultimo {
    line-height: 1.3em;
  }

  .urlhero.right.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .urlhero.derecha {
    text-align: left;
  }

  .visualdriven.primero {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .visualdriven.primero.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.primero.segundo.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.primero.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.primero.medio {
    line-height: 1em;
  }

  .visualdriven.primero.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.primero.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.primero.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.primero.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.primero.nest.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.primero.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.relativebig {
    color: #000;
    align-self: flex-start;
    max-width: 20ch;
    font-size: 50px;
    line-height: 1em;
  }

  .visualdriven.relativebig.segundo {
    align-self: flex-end;
    font-size: 20px;
  }

  .visualdriven.relativebig.segundo.intro {
    justify-content: flex-end;
    align-self: flex-end;
    padding-left: 10px;
  }

  .visualdriven.relativebig.medio {
    line-height: 1.1em;
  }

  .visualdriven.nestappfirst {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .visualdriven.nestappfirst.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.nestappfirst.segundo.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.nestappfirst.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.nestappfirst.medio {
    line-height: 1em;
  }

  .visualdriven.nestappfirst.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.nestappfirst.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.nestappfirst.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.nestappfirst.nest.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.nestappfirst.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.right {
    color: #000;
    text-align: right;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .visualdriven.right.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.right.segundo.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.right.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.right.medio {
    line-height: 1em;
  }

  .visualdriven.right.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.right.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.right.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.right.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .visualdriven.right.nest.ultimo {
    line-height: 1.3em;
  }

  .visualdriven.right.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .visualdriven.derecha {
    text-align: left;
  }

  .firstheadline {
    z-index: 999;
    width: auto;
  }

  .firstheadline.magic {
    letter-spacing: -9px;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 15vh;
    line-height: .3em;
  }

  .firstheadline.last {
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 12vw;
  }

  .firstheadline.studio {
    letter-spacing: -1.85vw;
    text-indent: -20px;
    justify-content: space-between;
    width: auto;
    display: flex;
  }

  .firstheadline.dio {
    text-indent: -24px;
    line-height: .48em;
  }

  .firstheadline.free {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 15vh;
    line-height: .5em;
  }

  .firstheadline.lane {
    text-indent: 0;
    margin-bottom: 0;
    line-height: .65em;
  }

  .firstheadline.fds {
    letter-spacing: -4px;
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 147px;
    line-height: .3em;
  }

  .magento_brand {
    width: 1900px;
    max-width: 1900px;
    margin-top: 0;
    margin-left: 0;
    padding-top: 45px;
    position: relative;
    top: -190px;
    overflow: visible;
  }

  .magnetologo {
    z-index: 999;
    clear: none;
    margin-top: -54px;
    margin-bottom: 20px;
    padding-top: 0;
    top: 9px;
  }

  .magnetologo.magic {
    letter-spacing: 0;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 8vh;
    line-height: .3em;
  }

  .magnetologo.last {
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 12vw;
  }

  .magnetologo.studio {
    letter-spacing: -1.85vw;
    text-indent: -20px;
    justify-content: space-between;
    width: auto;
    display: flex;
  }

  .magnetologo.dio {
    text-indent: -24px;
    line-height: .48em;
  }

  .magnetologo.free {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 15vh;
    line-height: .5em;
  }

  .magnetologo.lane {
    text-indent: 0;
    margin-bottom: 0;
    line-height: .65em;
  }

  .magnetologo.fds {
    letter-spacing: -4px;
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 147px;
    line-height: .3em;
  }

  .image-13 {
    align-self: center;
    margin-top: 0;
    padding-left: 50px;
    padding-right: 50px;
    transform: rotate(0);
  }

  .flex-block-7 {
    width: 50%;
  }

  .tit-intro40-copy {
    border-bottom-width: 4px;
    flex: 1;
    margin-bottom: 0;
  }

  .flex-block-8 {
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    width: 52%;
  }

  .flex-block-2-copy {
    border-bottom-right-radius: 20px;
    width: 60.1028%;
  }

  .destacado-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    height: 100%;
  }

  .destacado-copy.abajo {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: auto;
    height: auto;
    margin-bottom: 140px;
  }

  .destacado-copy.shorter {
    width: auto;
    height: auto;
    margin-bottom: 140px;
  }

  .destacado-copy.v {
    margin-bottom: 140px;
  }

  .destacado-copy.vertresp {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .destacado-copy.lastnomargin {
    margin-bottom: 140px;
  }

  .destacado-copy.full {
    margin-bottom: 0;
  }

  .nombreapp.primero {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .nombreapp.primero.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.primero.segundo.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.primero.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.primero.medio {
    line-height: 1em;
  }

  .nombreapp.primero.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.primero.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.primero.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.primero.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.primero.nest.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.primero.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.relativebig {
    color: #000;
    align-self: flex-start;
    max-width: none;
    font-size: 50px;
    line-height: 1em;
  }

  .nombreapp.relativebig.segundo {
    align-self: flex-end;
    font-size: 20px;
  }

  .nombreapp.relativebig.segundo.intro {
    justify-content: flex-end;
    align-self: flex-end;
    padding-left: 10px;
  }

  .nombreapp.relativebig.medio {
    line-height: 1.1em;
  }

  .nombreapp.nestappfirst {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .nombreapp.nestappfirst.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.nestappfirst.segundo.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.nestappfirst.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.nestappfirst.medio {
    line-height: 1em;
  }

  .nombreapp.nestappfirst.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.nestappfirst.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.nestappfirst.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.nestappfirst.nest.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.nestappfirst.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.right {
    color: #000;
    text-align: right;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .nombreapp.right.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.right.segundo.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.right.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.right.medio {
    line-height: 1em;
  }

  .nombreapp.right.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.right.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.right.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.right.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .nombreapp.right.nest.ultimo {
    line-height: 1.3em;
  }

  .nombreapp.right.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .nombreapp.derecha {
    text-align: left;
  }

  .hero_1 {
    background-color: #fff;
    width: 100%;
    max-width: none;
    height: auto;
  }

  .flex-block-9 {
    justify-content: center;
    align-self: center;
    align-items: flex-start;
    max-width: 1700px;
  }

  .image-14 {
    right: 4%;
  }

  .bigim-2 {
    top: 30%;
  }

  .titlenext {
    margin-top: 0;
    font-size: 24px;
  }

  .timelinetext.up {
    justify-content: center;
    align-self: flex-start;
    align-items: flex-start;
    width: 80%;
    font-size: 15px;
    line-height: 1.3em;
  }

  .textobloques {
    max-width: 500px;
  }

  .fechaup {
    min-height: 100px;
  }

  .txttitular {
    flex: 1;
    margin-top: 0;
    font-size: 14vw;
  }

  .video-fotocirc.big {
    aspect-ratio: 3 / 2;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: auto;
    min-height: auto;
  }

  .bloques-principales._02, .bloques-principales._01, .bloques-principales._03, .bloques-principales._04 {
    max-width: none;
    padding-left: 40px;
    padding-right: 0;
  }

  .div-block-63 {
    flex: 1;
  }

  .fullscroll {
    width: auto;
    max-width: 1700px;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .smallheadings.smaller.hidden {
    display: none;
  }

  .flex-block-25 {
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    max-width: none;
    height: auto;
    overflow: hidden;
  }

  .flex-block-24 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    line-height: 1em;
  }

  .div-block-80 {
    align-self: flex-start;
    margin-top: 10px;
  }

  .nombre_app {
    justify-content: flex-end;
    align-self: flex-end;
    align-items: flex-start;
    width: auto;
    margin-bottom: 30px;
    padding-left: 0;
    font-size: 55px;
    line-height: .9em;
  }

  .div-block-62 {
    flex: 1;
    width: auto;
  }

  .imagen-video {
    width: 40%;
    overflow: hidden;
  }

  .imagen-video.hidden {
    display: none;
  }

  .circproxb {
    background-image: linear-gradient(#ffffff03 39%, #00000080 50%, #ffffff03), linear-gradient(#0000, #0000), url('../images/hombreMirando.jpg');
    background-position: 0 0, 0 0, 50% 100%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    flex-flow: column;
    align-self: center;
    max-width: none;
  }

  .conectorproyectos.negro {
    width: 2vw;
    margin-top: 0;
  }

  .sectionsticky-1 {
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 300;
  }

  .txtyvideo {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-self: flex-start;
    max-width: none;
  }

  .txtyvideo.absolute {
    justify-content: flex-start;
    align-self: flex-start;
    width: 100%;
    max-width: none;
    position: relative;
    left: 0;
    right: auto;
    overflow: visible;
  }

  .superheading {
    flex: 0 auto;
    font-size: 180px;
  }

  .bloqueseccionb.white {
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .conectorandndp {
    display: none;
  }

  .entrdillaprox {
    padding-left: 2vw;
  }

  .lottie-animation-11.absolute {
    background-color: #fff;
  }

  .txtmaindestacados {
    width: 80%;
  }

  .circulosconproxb {
    opacity: 1;
    transform-origin: 100%;
    width: 100%;
    display: flex;
    position: relative;
    left: 160px;
    transform: none;
  }

  .image-28.visisble {
    display: none;
  }

  .flex-block-27 {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    display: flex;
  }

  .contenido_capitulo {
    flex: 0 auto;
    width: 86%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .lottie-animation-9 {
    width: 230px;
    display: none;
  }

  .lottie-animation-9.home2 {
    width: 150px;
  }

  .bigim {
    top: 30%;
  }

  .super-swiper {
    margin-bottom: 12px;
    display: none;
  }

  .div-block-65 {
    padding-top: 0;
  }

  .proximas-actividades {
    transition: height .2s, width .2s;
  }

  .proximas-actividades:hover {
    opacity: .9;
  }

  .proximas-actividades._5 {
    background-image: linear-gradient(#ffffff0f 10%, #000000bf), url('../images/ENERO-1.jpg');
  }

  .proximas-actividades._3 {
    width: 32vh;
    height: 32vh;
  }

  .swiper-slide {
    flex: 0 auto;
    width: 100%;
    height: auto;
    left: 140px;
  }

  .nav_lateral {
    max-width: 10%;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .swiper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: auto;
    width: 78%;
    margin-left: 300px;
    padding-left: 0;
    display: flex;
  }

  .swiper.is-next {
    z-index: 55;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: 0;
    padding-top: 0;
    top: 0;
    left: 0;
    overflow: visible;
  }

  .detalleprox {
    font-size: 15px;
  }

  .swiper-wrapper {
    transform: none;
  }

  .swiper-wrapper.is-next {
    padding-bottom: 0;
    padding-right: 20px;
  }

  .parrafosbloques.alindcha {
    flex: 0 auto;
  }

  .parrafosbloques.alindcha.absolute {
    line-height: 1.1em;
  }

  .tiposhome {
    margin-top: 0;
  }

  .destacados {
    align-self: flex-start;
    max-width: none;
    padding-top: 0;
  }

  .flashlottie {
    align-self: center;
    width: 6%;
    margin-top: 2px;
  }

  .flashlottie._3, .flashlottie._4 {
    width: 22%;
  }

  .div-block-65-copy {
    padding-top: 0;
  }

  .subt1 {
    width: 90%;
    margin-top: 0;
  }

  .copyright {
    color: var(--black);
    font-size: 120px;
  }

  .allflash {
    top: -95px;
  }

  .solutions {
    letter-spacing: .04em;
    font-size: 22px;
  }

  .solutions.nopadd {
    margin-bottom: 20px;
  }

  .subt2 {
    width: 90%;
    margin-top: 0;
  }

  .lottiedemo {
    align-self: center;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .magnetoexplicacion5-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .magnetoexplicacion0-2 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .magnetoexplicacion0-3, .magnetoexplicacion6, .magnetoexplicacion0-4, .magnetoexplicacion6-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .initialtext {
    align-self: center;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .initialtext.hidden {
    padding-top: 0;
    font-size: 30px;
    line-height: 1.2em;
  }

  .initialtext.second {
    letter-spacing: .02em;
    width: 100%;
    max-width: none;
    padding-top: 0;
    font-size: 25px;
    line-height: 1.3em;
  }

  .secondtext {
    align-self: center;
    width: 50%;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .secondtext.hidden {
    padding-top: 0;
    font-size: 30px;
    line-height: 1.2em;
  }

  .secondtext.second {
    letter-spacing: .02em;
    width: 100%;
    max-width: none;
    padding-top: 0;
    font-size: 25px;
    line-height: 1.3em;
  }

  .flex-block-31 {
    left: 25%;
  }

  .button-sol {
    font-size: 26px;
  }

  .lottiedemo-2 {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .lottietitle {
    align-self: center;
    width: 39%;
    left: 44%;
    right: 0%;
  }

  .lottietitle._3, .lottietitle._4 {
    width: 22%;
  }

  .beleiveus {
    z-index: 999;
    clear: none;
    letter-spacing: 0;
    width: 75%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    top: 9px;
  }

  .beleiveus.magic {
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 6vh;
    line-height: 1em;
  }

  .beleiveus.last {
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 12vw;
  }

  .beleiveus.mag {
    letter-spacing: -6px;
    text-indent: 0;
    justify-content: flex-start;
    width: auto;
    font-size: 380px;
    display: flex;
  }

  .beleiveus.neto {
    flex: 0 auto;
    align-self: flex-start;
    margin-left: -11px;
    font-size: 200px;
  }

  .beleiveus.free {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 6vw;
    line-height: 1em;
  }

  .beleiveus.lane {
    text-indent: 0;
    margin-bottom: 0;
    line-height: .65em;
  }

  .beleiveus.fds {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 6vw;
    line-height: 1em;
  }

  .beleiveus.ma {
    flex: 0 auto;
    align-self: flex-start;
    font-size: 200px;
  }

  .beleiveus.o {
    color: #fff;
    text-overflow: clip;
    mix-blend-mode: normal;
    flex: 0 auto;
    align-self: flex-start;
    font-size: 200px;
    position: static;
  }

  .beleiveus.small {
    font-size: 80px;
  }

  .beleiveus.smaller {
    font-size: 20px;
  }

  .text-span-68 {
    line-height: 1.4em;
  }

  .flex-block-34 {
    padding-bottom: 35px;
  }

  .leyenda {
    font-size: 12px;
  }

  .leyenda.primero {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .leyenda.primero.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.primero.segundo.ultimo {
    line-height: 1.3em;
  }

  .leyenda.primero.segundo.intro {
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1.5em;
  }

  .leyenda.primero.segundo.top {
    flex: 0 auto;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5em;
  }

  .leyenda.primero.medio {
    line-height: 1em;
  }

  .leyenda.primero.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.primero.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .leyenda.primero.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.primero.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.primero.nest.ultimo {
    line-height: 1.3em;
  }

  .leyenda.primero.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.relativebig {
    color: #000;
    align-self: flex-start;
    max-width: none;
    font-size: 50px;
    line-height: 1em;
  }

  .leyenda.relativebig.segundo {
    align-self: flex-end;
    font-size: 20px;
  }

  .leyenda.relativebig.segundo.intro {
    justify-content: flex-end;
    align-self: flex-end;
    padding-left: 10px;
  }

  .leyenda.relativebig.medio {
    line-height: 1.1em;
  }

  .leyenda.nestappfirst {
    color: #000;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .leyenda.nestappfirst.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.nestappfirst.segundo.ultimo {
    line-height: 1.3em;
  }

  .leyenda.nestappfirst.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.nestappfirst.medio {
    line-height: 1em;
  }

  .leyenda.nestappfirst.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.nestappfirst.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .leyenda.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.nestappfirst.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.nestappfirst.nest.ultimo {
    line-height: 1.3em;
  }

  .leyenda.nestappfirst.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.right {
    color: #000;
    text-align: right;
    align-self: flex-start;
    max-width: none;
    line-height: 1.1em;
  }

  .leyenda.right.segundo {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.right.segundo.ultimo {
    line-height: 1.3em;
  }

  .leyenda.right.segundo.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.right.medio {
    line-height: 1em;
  }

  .leyenda.right.segundo-copy {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.right.segundo-copy.ultimo {
    line-height: 1.3em;
  }

  .leyenda.right.segundo-copy.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.right.nest {
    align-self: center;
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .leyenda.right.nest.ultimo {
    line-height: 1.3em;
  }

  .leyenda.right.nest.intro {
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    width: auto;
    max-width: none;
    padding-left: 0;
    font-size: 20px;
    line-height: 1em;
  }

  .leyenda.derecha {
    text-align: left;
  }

  .techmockups {
    z-index: 999;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding-top: 0;
    font-size: 11vw;
    top: 9px;
  }

  .techmockups.magic {
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 6vh;
    line-height: 1em;
  }

  .techmockups.last {
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 12vw;
  }

  .techmockups.mag {
    letter-spacing: -6px;
    text-indent: 0;
    justify-content: flex-start;
    width: auto;
    font-size: 380px;
    display: flex;
  }

  .techmockups.neto {
    flex: 0 auto;
    align-self: flex-start;
    margin-left: -11px;
    font-size: 200px;
  }

  .techmockups.free {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 6vw;
    line-height: 1em;
  }

  .techmockups.lane {
    text-indent: 0;
    margin-bottom: 0;
    line-height: .65em;
  }

  .techmockups.fds {
    letter-spacing: -4px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 6vw;
    line-height: 1em;
  }

  .techmockups.ma {
    flex: 0 auto;
    align-self: flex-start;
    font-size: 200px;
  }

  .techmockups.o {
    color: #fff;
    text-overflow: clip;
    mix-blend-mode: normal;
    flex: 0 auto;
    align-self: flex-start;
    font-size: 200px;
    position: static;
  }

  .techmockups.mockups {
    flex: 0 auto;
    align-self: flex-start;
    font-size: 200px;
  }

  .text-span-69 {
    width: 230px;
    font-size: 3vw;
  }

  .heading-9 {
    font-size: 32px;
    font-weight: 300;
  }

  .solutions-2 {
    letter-spacing: .04em;
  }

  .flex-block-35 {
    font-size: 30px;
  }

  .top {
    align-self: center;
    width: 50%;
    height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: none;
  }

  .div-block-91 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .subt_top {
    padding-bottom: 35px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 13vw;
  }

  .container-wrap {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .grid {
    grid-template-rows: 1.4fr 1fr;
  }

  .push-50 {
    margin-top: 30px;
    margin-left: 0%;
  }

  .about-content-inner {
    max-width: 50%;
  }

  .topheader {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 20px 40px 0;
  }

  .heading-4 {
    font-size: 5vw;
  }

  .heading-4.w--current {
    font-size: 22px;
    font-weight: 300;
  }

  .bottom {
    grid-template-columns: 4.75fr;
  }

  .big-heading {
    align-self: flex-end;
    font-size: 2.8vw;
  }

  .big-heading.magic {
    letter-spacing: 0;
    text-indent: -5px;
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7vw;
    line-height: 1em;
  }

  .big-heading.mag {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 20vw;
  }

  .big-heading.neto {
    letter-spacing: -.02em;
    margin-left: -1px;
    padding-top: 0;
    font-size: 25vw;
    line-height: .88em;
  }

  .big-heading.free {
    text-align: left;
    letter-spacing: 0;
    text-indent: -5px;
    margin-top: 80px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
    line-height: 1em;
  }

  .big-heading.lane {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 7vw;
    line-height: .6em;
  }

  .big-heading.fds {
    letter-spacing: 0;
    text-indent: -5px;
    flex: 0 auto;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7vw;
    line-height: 1em;
    display: flex;
  }

  .big-heading.ma {
    margin-left: -7px;
    padding-top: 0;
    font-size: 9vw;
    line-height: .88em;
  }

  .big-heading.o {
    margin-left: -1px;
    padding-top: 0;
    padding-right: 0;
    font-size: 14vw;
    font-weight: 700;
    line-height: .88em;
  }

  .big-heading.mockups {
    letter-spacing: -.06em;
    margin-left: -7px;
    padding-top: 0;
    font-size: 17vw;
    line-height: .88em;
  }

  .big-heading.by {
    margin-right: 5px;
    padding-top: 0;
    padding-right: 0;
    font-size: 5vw;
    line-height: 1em;
  }

  .paragraph-3 {
    width: 100%;
    font-size: 3vw;
  }

  .image-2 {
    order: -1;
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }

  .laneawards {
    flex-flow: row;
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 4.2vw;
    margin-bottom: 0;
    padding-left: 0%;
    padding-right: 0;
    display: flex;
  }

  .block-quote {
    width: 100%;
    max-width: none;
  }

  .trabajos {
    flex-direction: column;
    display: flex;
  }

  .grid-4 {
    grid-column-gap: 19px;
    grid-row-gap: 23px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    align-content: stretch;
    margin-bottom: 10px;
  }

  .descripcion-proyecto {
    font-size: 14px;
    line-height: 1.5em;
  }

  .descripcion-proyecto.primero {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .descripcion-proyecto.primero.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.segundo.intro {
    order: 0;
    align-self: center;
    width: auto;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 15px;
    font-weight: 200;
    line-height: 1.5em;
  }

  .descripcion-proyecto.primero.segundo.top {
    order: 0;
    align-self: flex-start;
    width: auto;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4em;
  }

  .descripcion-proyecto.primero.medio {
    width: 70%;
    font-size: 26px;
  }

  .descripcion-proyecto.primero.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .descripcion-proyecto.primero.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .descripcion-proyecto.relativebig {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
    top: 0;
  }

  .descripcion-proyecto.relativebig.segundo {
    width: 100%;
    max-width: 60ch;
    margin-bottom: 24px;
    padding-left: 0;
  }

  .descripcion-proyecto.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.relativebig.segundo.intro {
    flex-wrap: nowrap;
    align-self: flex-start;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
  }

  .descripcion-proyecto.center {
    order: 1;
    align-self: flex-start;
  }

  .descripcion-proyecto.center.right2 {
    text-align: left;
    align-self: flex-start;
  }

  .descripcion-proyecto.nestappfirst {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .descripcion-proyecto.nestappfirst.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .descripcion-proyecto.nestappfirst.medio {
    width: 70%;
    font-size: 26px;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .descripcion-proyecto.nestappfirst.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .descripcion-proyecto.right {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .descripcion-proyecto.right.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.right.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .descripcion-proyecto.right.medio {
    width: 70%;
    font-size: 26px;
  }

  .descripcion-proyecto.right.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.right.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .descripcion-proyecto.right.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.right.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .descripcion-proyecto.derecha {
    font-size: 16px;
  }

  .descripcion-proyecto.white {
    font-size: 13px;
  }

  .imagen-proyecto {
    height: auto;
  }

  .div-block-6 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    flex-flow: column;
    flex: 0 auto;
    order: -1;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .heading-6 {
    font-size: 8vw;
  }

  .destacado {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-bottom: 0;
    display: flex;
  }

  .destacado.abajo {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: space-between;
    margin-bottom: 0;
  }

  .destacado.shorter {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    height: auto;
    margin-bottom: 0;
    padding-bottom: 40px;
    padding-right: 0;
  }

  .destacado.v {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 0;
  }

  .destacado.vertresp {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    margin-bottom: 100px;
  }

  .destacado.lastnomargin {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    margin-bottom: 100px;
  }

  .destacado.full {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    margin-bottom: 60px;
  }

  .destacado.full.space-after {
    width: auto;
    margin-bottom: 0;
    padding-bottom: 60px;
    padding-left: 0;
  }

  .destacado.last {
    width: auto;
    padding-bottom: 60px;
    padding-right: 0;
  }

  .destacado-imagen {
    object-fit: cover;
    border-bottom-left-radius: 0;
    width: 100%;
    height: auto;
    display: block;
    position: static;
    overflow: hidden;
  }

  .destacado-imagen.segundo {
    object-fit: contain;
    border-radius: 0;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .destacado-imagen.segundoa {
    object-fit: contain;
    width: 100%;
    height: auto;
  }

  .destacado-imagen.bbva {
    width: auto;
  }

  .destacado-imagen.vertical {
    object-fit: contain;
    width: 100%;
    height: auto;
  }

  .destacado-imagen.vertical2 {
    object-fit: cover;
    flex: 1;
    align-self: flex-start;
    width: 100%;
    height: auto;
    display: none;
  }

  .destacado-imagen.nestapp {
    object-fit: contain;
    width: 100%;
    height: auto;
  }

  .destacado-imagen.noborder {
    object-fit: contain;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .destacado-imagen.timedoc {
    object-fit: contain;
    width: 100%;
    height: auto;
  }

  .destacado-imagen.subway2 {
    object-fit: cover;
    align-self: stretch;
    width: 50%;
    height: auto;
    padding: 0;
    overflow: hidden;
  }

  .destacado-imagen.uhc {
    object-fit: contain;
    width: 100%;
    height: auto;
  }

  .destacado-imagen.vertical2-copy {
    object-fit: contain;
    border-radius: 0;
    align-self: center;
    width: 100%;
    height: auto;
    display: block;
  }

  .destacado-imagen.fbbva {
    object-fit: contain;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .link-block-2 {
    justify-content: flex-end;
    align-items: flex-start;
    width: auto;
    max-width: none;
    display: flex;
  }

  .newwork {
    width: auto;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-3 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: row;
    width: 100%;
    max-width: none;
    height: auto;
    padding-left: 0;
  }

  .link-2 {
    align-self: center;
    font-size: 10px;
    line-height: 1em;
  }

  .heading-7 {
    padding-top: 0;
  }

  .image-7 {
    width: 100%;
  }

  .ny {
    order: -1;
    max-width: none;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    top: 4.5%;
  }

  .gallery-image {
    height: 50vh;
  }

  .mag {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-14 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    order: 1;
    align-self: flex-start;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .div-block-14._1 {
    flex-flow: row;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: auto;
    margin: 40px 0 20px;
  }

  .div-block-14._2 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
    order: 0;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 15px;
  }

  .div-block-14.free {
    flex-flow: row;
    order: 1;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: auto;
    max-width: none;
    margin: 0 0 20px;
  }

  .div-block-14.free.first {
    margin-top: 0;
  }

  .div-block-14.free.white {
    order: 0;
    margin-bottom: 0;
  }

  .div-block-14._3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: auto;
    max-width: none;
    margin: 40px 0 0;
    padding: 25px;
  }

  .award {
    font-size: 14px;
  }

  .image-8 {
    align-self: flex-start;
    width: 24px;
    margin-top: 0;
  }

  .background-video {
    width: auto;
    height: 500px;
  }

  .linkdouble {
    background-color: #f4f4f400;
    background-image: none;
    flex-flow: column;
    width: 100%;
  }

  .image-9 {
    width: 100px;
  }

  .flex-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    order: 1;
    align-self: flex-start;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    inset: auto 0% 0% auto;
  }

  .introtexts {
    font-size: 1.6vw;
    line-height: 1.5em;
  }

  .introtexts.white {
    font-size: 14px;
  }

  .lottie-animation.snaplogo {
    width: 100px;
    display: none;
  }

  .lottie-animation.snapbrand {
    align-self: center;
    width: 100%;
    margin-top: 0;
    margin-right: 0;
  }

  .text-span-12 {
    font-size: 7vw;
  }

  .heading-8 {
    font-size: 18px;
  }

  .div-block-15 {
    max-width: none;
  }

  .magic-entry {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .freedesign {
    flex-flow: column;
  }

  .teatro {
    width: 100%;
    max-width: none;
  }

  .nestapp {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 0;
    order: -1;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    display: flex;
  }

  .pennydiv {
    margin-top: -4.4vw;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-block-2 {
    align-self: flex-start;
    max-width: none;
  }

  .hero {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    width: 100.086%;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
    top: 60px;
  }

  .introtext_hero {
    align-self: center;
    width: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    padding-left: 0;
    font-size: 2vw;
  }

  .introtext_hero.hidden {
    text-align: center;
    letter-spacing: .15em;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    font-size: 1.3vw;
    font-weight: 400;
    line-height: 1.5em;
    display: block;
  }

  .introtext_hero.second {
    letter-spacing: 0;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .neto {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .titbig {
    font-size: 19px;
    font-weight: 200;
  }

  .titbig.primero {
    align-self: flex-start;
    width: 90%;
    max-width: none;
    margin-top: 23px;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .titbig.primero.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .titbig.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.primero.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .titbig.primero.medio {
    width: 70%;
    font-size: 26px;
  }

  .titbig.primero.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .titbig.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.primero.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .titbig.primero.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .titbig.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.primero.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .titbig.relativebig {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
    top: 0;
  }

  .titbig.relativebig.segundo {
    width: 100%;
    max-width: 60ch;
    margin-bottom: 24px;
    padding-left: 0;
  }

  .titbig.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.relativebig.segundo.intro {
    flex-wrap: nowrap;
    align-self: flex-start;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
  }

  .titbig.white {
    font-size: 16px;
    line-height: 1.5em;
  }

  .titbig.small {
    font-size: 19px;
  }

  .tit-intro40 {
    order: 1;
    width: 100%;
    max-width: none;
    padding-bottom: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .button {
    align-self: flex-start;
    margin-top: 0;
    padding-bottom: 21px;
    font-family: Mona Sans, sans-serif;
    line-height: 1em;
  }

  .button.betasson {
    margin-top: 0;
    padding-bottom: 21px;
    font-family: Mona Sans, sans-serif;
    line-height: 1em;
  }

  .magneto {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .playground {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    border-top-style: none;
    flex-flow: column;
    width: auto;
    max-width: none;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    line-height: 20px;
    top: 0;
  }

  .playground.fdr {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 20px;
  }

  .playground.fds {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 100px;
    margin-bottom: 40px;
  }

  .playground.final {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-top-style: none;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 100px;
    margin-bottom: 40px;
  }

  .timedocs {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 0;
    width: 100%;
    max-width: none;
    height: auto;
    padding-left: 0;
  }

  ._4 {
    width: 100%;
    max-width: none;
  }

  .sp-elapsed, .sp-duration {
    display: flex;
  }

  .code-embed {
    width: 100%;
  }

  .flex-block-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .uhc {
    border-top-right-radius: 20px;
    width: 100%;
    max-width: none;
    height: auto;
    padding-left: 0;
  }

  .titintro20 {
    order: 1;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .kickoff {
    flex-flow: column;
    width: 100%;
  }

  ._5 {
    width: 100%;
    max-width: none;
  }

  .citabig {
    align-self: center;
    width: 100%;
    margin-bottom: 100px;
    padding-top: 0;
    padding-left: 0;
    font-size: 4vw;
  }

  .text-span-17 {
    font-size: 3vw;
  }

  .introhidden {
    align-self: center;
    width: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    padding-left: 0;
    font-size: 2vw;
  }

  .subsubmarcas {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.1em;
  }

  .flex-block-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-bottom: 10px;
  }

  .paragraph-7 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .flex-block_hero {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: 0;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .firstmodule {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .headertop {
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    top: 20px;
  }

  .urlhero {
    align-self: center;
    font-size: 10px;
  }

  .urlhero.primero {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .urlhero.primero.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.primero.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .urlhero.primero.medio {
    width: 70%;
    font-size: 26px;
  }

  .urlhero.primero.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.primero.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .urlhero.primero.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.primero.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .urlhero.relativebig {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
    top: 0;
  }

  .urlhero.relativebig.segundo {
    width: 100%;
    max-width: 60ch;
    margin-bottom: 24px;
    padding-left: 0;
  }

  .urlhero.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.relativebig.segundo.intro {
    flex-wrap: nowrap;
    align-self: flex-start;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
  }

  .urlhero.center {
    order: 1;
  }

  .urlhero.center.right2 {
    text-align: left;
    align-self: flex-start;
  }

  .urlhero.nestappfirst {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .urlhero.nestappfirst.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.nestappfirst.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .urlhero.nestappfirst.medio {
    width: 70%;
    font-size: 26px;
  }

  .urlhero.nestappfirst.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.nestappfirst.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .urlhero.nestappfirst.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.nestappfirst.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .urlhero.right {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .urlhero.right.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.right.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .urlhero.right.medio {
    width: 70%;
    font-size: 26px;
  }

  .urlhero.right.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.right.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .urlhero.right.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.right.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .visualdriven {
    align-self: center;
    font-size: 10px;
  }

  .visualdriven.primero {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .visualdriven.primero.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.primero.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .visualdriven.primero.medio {
    width: 70%;
    font-size: 26px;
  }

  .visualdriven.primero.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.primero.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .visualdriven.primero.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.primero.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .visualdriven.relativebig {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
    top: 0;
  }

  .visualdriven.relativebig.segundo {
    width: 100%;
    max-width: 60ch;
    margin-bottom: 24px;
    padding-left: 0;
  }

  .visualdriven.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.relativebig.segundo.intro {
    flex-wrap: nowrap;
    align-self: flex-start;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
  }

  .visualdriven.center {
    order: 1;
  }

  .visualdriven.center.right2 {
    text-align: left;
    align-self: flex-start;
  }

  .visualdriven.nestappfirst {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .visualdriven.nestappfirst.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .visualdriven.nestappfirst.medio {
    width: 70%;
    font-size: 26px;
  }

  .visualdriven.nestappfirst.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .visualdriven.nestappfirst.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .visualdriven.right {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .visualdriven.right.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.right.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .visualdriven.right.medio {
    width: 70%;
    font-size: 26px;
  }

  .visualdriven.right.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.right.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .visualdriven.right.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.right.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .div-block-18 {
    align-self: center;
    margin-top: 0;
  }

  .firstheadline {
    letter-spacing: .1em;
    width: auto;
    max-width: none;
    margin-bottom: 10px;
    margin-left: 20px;
    padding-top: 0;
    font-size: 1.5vw;
    font-weight: 400;
    line-height: 1.4em;
  }

  .firstheadline.magic {
    letter-spacing: -.5vw;
    text-indent: -5px;
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 15vw;
    line-height: .4em;
  }

  .firstheadline.studio {
    letter-spacing: -1.85vw;
    text-indent: -8px;
    font-size: 25vw;
  }

  .firstheadline.dio {
    letter-spacing: -1.8vw;
    text-indent: -9px;
    padding-top: 0;
    font-size: 30vw;
    line-height: .49em;
  }

  .firstheadline.free {
    text-align: left;
    letter-spacing: -3px;
    text-indent: -5px;
    margin-top: 80px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 15vw;
    line-height: .6em;
  }

  .firstheadline.lane {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 7vw;
    line-height: .6em;
  }

  .firstheadline.fds {
    letter-spacing: 0;
    text-indent: -5px;
    flex: 0 auto;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14vw;
    line-height: .9em;
    display: flex;
  }

  .bold-text-3 {
    font-size: 14px;
  }

  .magento_brand {
    letter-spacing: 0;
    align-self: center;
    width: 95%;
    margin-left: 0;
    padding-top: 10px;
    padding-left: 0;
    top: -10.7vw;
  }

  .magnetologo {
    letter-spacing: -3px;
    font-size: 18vw;
    line-height: .8em;
  }

  .magnetologo.magic {
    letter-spacing: 0;
    text-indent: -5px;
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 9vw;
    line-height: .4em;
  }

  .magnetologo.studio {
    letter-spacing: -1.85vw;
    text-indent: -8px;
    font-size: 25vw;
  }

  .magnetologo.dio {
    letter-spacing: -1.8vw;
    text-indent: -9px;
    padding-top: 0;
    font-size: 30vw;
    line-height: .49em;
  }

  .magnetologo.free {
    text-align: left;
    letter-spacing: -3px;
    text-indent: -5px;
    margin-top: 80px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 15vw;
    line-height: .6em;
  }

  .magnetologo.lane {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 7vw;
    line-height: .6em;
  }

  .magnetologo.fds {
    letter-spacing: 0;
    text-indent: -5px;
    flex: 0 auto;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14vw;
    line-height: .9em;
    display: flex;
  }

  .image-13 {
    mix-blend-mode: normal;
    width: 100%;
    position: static;
    top: -40px;
  }

  .flex-block-7 {
    width: 80%;
  }

  .tit-intro40-copy {
    order: 1;
    width: 100%;
    max-width: none;
    padding-left: 25px;
    padding-right: 25px;
  }

  .flex-block-8 {
    width: 100%;
    padding-right: 0;
  }

  .flex-block-2-copy {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    align-self: flex-start;
    max-width: none;
    padding-left: 25px;
    padding-right: 25px;
  }

  .destacado-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-bottom: 0;
    display: none;
  }

  .destacado-copy.abajo {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: space-between;
    margin-bottom: 100px;
  }

  .destacado-copy.shorter {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    height: auto;
    margin-bottom: 0;
  }

  .destacado-copy.v {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 100px;
  }

  .destacado-copy.vertresp {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    margin-bottom: 100px;
  }

  .destacado-copy.lastnomargin {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    margin-bottom: 100px;
  }

  .destacado-copy.full {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    margin-bottom: 60px;
  }

  .destacado-copy.full.space-after {
    margin-bottom: 100px;
  }

  .nombreapp {
    font-size: 13px;
    line-height: 1.5em;
  }

  .nombreapp.primero {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .nombreapp.primero.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.primero.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .nombreapp.primero.medio {
    width: 70%;
    font-size: 26px;
  }

  .nombreapp.primero.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.primero.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .nombreapp.primero.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.primero.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .nombreapp.relativebig {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
    top: 0;
  }

  .nombreapp.relativebig.segundo {
    width: 100%;
    max-width: 60ch;
    margin-bottom: 24px;
    padding-left: 0;
  }

  .nombreapp.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.relativebig.segundo.intro {
    flex-wrap: nowrap;
    align-self: flex-start;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
  }

  .nombreapp.center {
    order: 1;
  }

  .nombreapp.center.right2 {
    text-align: left;
    align-self: flex-start;
  }

  .nombreapp.nestappfirst {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .nombreapp.nestappfirst.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .nombreapp.nestappfirst.medio {
    width: 70%;
    font-size: 26px;
  }

  .nombreapp.nestappfirst.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .nombreapp.nestappfirst.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .nombreapp.right {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .nombreapp.right.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.right.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .nombreapp.right.medio {
    width: 70%;
    font-size: 26px;
  }

  .nombreapp.right.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.right.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .nombreapp.right.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.right.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .nombreapp.derecha {
    font-size: 15px;
  }

  .hero_1 {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .flex-block-9 {
    flex-flow: column;
  }

  .bigim-2 {
    display: none;
  }

  .image-35 {
    order: -1;
    width: 100px;
    overflow: visible;
  }

  .titlenext {
    font-size: 1.7vw;
  }

  .relacion {
    margin-bottom: 20px;
  }

  .hiddenblock {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    width: 100%;
    max-width: none;
    padding: 10px 25px 40px;
  }

  .timelinetext {
    color: #fff;
    font-size: 14px;
  }

  .timelinetext.up {
    color: #000;
    font-size: 14px;
  }

  .textobloques {
    grid-row-gap: 5px;
    flex-flow: column;
    flex: 1;
    order: 1;
    align-self: stretch;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 0;
  }

  .textobloques.dcha {
    order: 1;
  }

  .textobloques.realtive {
    margin-top: 0;
  }

  .fechaup {
    min-height: 90px;
    padding: 0 15px 8px 0;
  }

  .txttitular {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-end;
    align-self: center;
    align-items: center;
    margin-top: 0;
    padding-top: 9px;
    padding-right: 20px;
    font-size: 20px;
  }

  .video-fotocirc.big {
    aspect-ratio: 3 / 2;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-right-style: none;
    order: 1;
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: 300px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    transition-property: none;
    overflow: hidden;
  }

  .boton-close {
    margin-bottom: 0;
    padding: 14px 17px 11px;
    font-size: 15px;
  }

  .boton-close.w--current {
    padding-left: 17px;
    padding-right: 17px;
  }

  .play-pause-button {
    display: none;
  }

  .bloques-principales._02 {
    margin-top: 20px;
    padding-right: 0;
  }

  .bloques-principales._01 {
    margin-top: 0;
    padding-right: 0;
  }

  .bloques-principales._03, .bloques-principales._04 {
    margin-top: 20px;
    padding-right: 0;
  }

  .div-block-63 {
    flex: 1;
    align-self: center;
    width: auto;
    padding-top: 40px;
    display: flex;
  }

  .fullscroll {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: nowrap;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 40px;
    padding-top: 0;
    padding-left: 40px;
    padding-right: 40px;
    top: 0;
  }

  .conectorproyectos2 {
    display: none;
  }

  .smallheadings {
    color: #000;
    background-color: #fff;
    line-height: 20px;
  }

  .smallheadings.in {
    display: flex;
  }

  .smallheadings.smaller {
    background-color: #fff0;
  }

  .smallheadings.growth {
    text-align: center;
    background-color: #fff0;
    align-self: center;
    margin-bottom: 5px;
    font-size: 15px;
  }

  .lynx-heading-accordion {
    font-size: 19px;
  }

  ._1botonescols {
    margin-bottom: 0;
    margin-right: 0;
  }

  .nombre_app {
    text-align: left;
    letter-spacing: -.03em;
    flex-flow: row;
    align-self: flex-start;
    width: 100%;
    min-width: auto;
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 6vw;
    display: flex;
  }

  .videocircularentry {
    height: 100%;
  }

  .div-block-62.hidden {
    display: flex;
  }

  .imagen-video {
    width: 100%;
    margin-bottom: 0;
  }

  .circproxb {
    padding-left: 20px;
  }

  .conectorproyectos {
    display: none;
  }

  .conectorproyectos.negro, .conectorproyectos.lastconector {
    border: 1px solid #000;
    width: 4vw;
  }

  .sectionsticky-1 {
    letter-spacing: 0;
    flex-flow: row;
    width: 100%;
    min-width: auto;
    margin-bottom: 10px;
    padding-left: 0;
    font-size: 65px;
    display: none;
  }

  .txtyvideo {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    align-self: stretch;
    padding-bottom: 20px;
  }

  .txtyvideo.izq {
    flex-flow: column;
    align-self: stretch;
  }

  .superheading {
    text-align: left;
    letter-spacing: -.03em;
    align-self: auto;
    margin-top: 0;
    font-size: 14vw;
  }

  .bloqueseccionb {
    flex: 1;
    font-size: 40px;
    line-height: 1em;
  }

  .bloqueseccionb.white {
    text-align: center;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 9px;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.2em;
  }

  .ahoratext {
    color: #000;
    font-size: 40px;
  }

  .number {
    text-align: left;
    letter-spacing: -13px;
    align-self: auto;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
    font-size: 300px;
    display: block;
    inset: 4% 0% 0% auto;
    overflow: hidden;
  }

  .entrdillaprox {
    order: 0;
    align-self: flex-start;
  }

  .headerenhiddenbig {
    align-self: auto;
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
    line-height: 1.4em;
  }

  .txtmaindestacados {
    text-align: left;
    letter-spacing: .01em;
    align-self: auto;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.3vw;
    line-height: 1.2em;
  }

  .circulosconproxb {
    height: auto;
    display: none;
  }

  .destnumbig {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .destnumbig.inside {
    flex-flow: row;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contenido_capitulo {
    width: 100%;
  }

  .txtproximamente {
    color: #000;
    font-size: 14px;
  }

  .headermain {
    text-align: center;
    letter-spacing: 0;
    align-self: auto;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 4vw;
  }

  .div-block-68b {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    flex: 1;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0%;
  }

  .boton-hidden1 {
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 27px 16px;
    font-size: 15px;
  }

  .bigim {
    display: none;
  }

  .super-swiper {
    margin-top: 20px;
    display: none;
  }

  .div-block-65 {
    order: -1;
    margin-bottom: 10px;
    padding-top: 0;
  }

  .manana {
    padding: 4px 15px 8px 14px;
  }

  .fechaprox {
    color: #000;
    font-size: 14px;
  }

  .proximas-actividades {
    height: 32vh;
  }

  .swiper-slide {
    width: auto;
    display: flex;
  }

  .items-menu {
    padding: 6px 14px 10px;
  }

  .divbotonclose {
    margin-bottom: 0;
  }

  .divbotonclose.down {
    margin-top: 0;
  }

  .numbig {
    margin-top: 0;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.2em;
  }

  .numbig.bigger {
    letter-spacing: -1px;
    font-size: 70px;
  }

  .nav_lateral {
    display: none;
  }

  .swiper {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    padding-left: 40px;
    display: flex;
  }

  .hiddeninfo1 {
    align-self: auto;
    width: 100%;
    padding-left: 0;
    line-height: 1.6em;
  }

  .colsdiferentes {
    flex: 1;
    margin-bottom: 0;
    margin-right: 0;
  }

  .parrafosbloques {
    align-self: auto;
    width: 100%;
    padding-left: 0;
    line-height: 1.6em;
  }

  .parrafosbloques.alindcha {
    text-align: left;
    order: -1;
    font-size: 16px;
    line-height: 1.3em;
  }

  .parrafosbloques.alindcha.absolute {
    font-size: 25px;
  }

  .databignumbers {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    width: auto;
  }

  .databignumbers.lottie {
    width: 100%;
    max-width: none;
  }

  .destacados {
    grid-row-gap: 5px;
    flex-flow: column;
    flex: 1;
    order: -1;
    align-self: stretch;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .pie {
    color: #919191;
    background-color: #fff;
    align-self: flex-end;
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
  }

  .intrrosub {
    align-self: auto;
    width: 100%;
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 1.6em;
  }

  .flashlottie {
    display: none;
  }

  .flashlottie._2 {
    width: 22%;
    display: block;
  }

  .flashlottie._1 {
    align-self: center;
    width: 9px;
    margin-top: 0;
    margin-right: 1px;
    display: flex;
  }

  .flashlottie._3, .flashlottie._4 {
    width: 22%;
    display: block;
  }

  .flashlottie.bigger {
    align-self: center;
    width: 12px;
    margin-top: 3px;
    margin-right: 2px;
    display: block;
  }

  .flex-block-29 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    order: -1;
  }

  .flex-block-30 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .div-block-65-copy {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    margin-bottom: 10px;
    padding-top: 0;
  }

  .subt1 {
    justify-content: center;
    align-items: flex-start;
    width: auto;
    height: auto;
    margin-bottom: 3px;
    font-size: 13px;
  }

  .copyright {
    margin-top: 11px;
    margin-left: 2px;
    font-size: 6svw;
  }

  .lottie-animation-13 {
    width: 8%;
    margin-top: -4px;
  }

  .allflash {
    top: 0;
  }

  .solutions {
    letter-spacing: .03em;
    margin-left: 0;
    font-size: 2vw;
  }

  .subt2 {
    width: auto;
  }

  .lottiedemo {
    height: auto;
  }

  .magnetolottie2resp {
    display: none;
  }

  .initialtext {
    align-self: center;
    width: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    padding-left: 0;
    font-size: 2vw;
    display: block;
  }

  .initialtext.hidden {
    text-align: center;
    letter-spacing: 0;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    font-size: 2vw;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .initialtext.second {
    letter-spacing: 0;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .secondtext {
    align-self: center;
    width: 80%;
    margin-bottom: 0;
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
    font-size: 2vw;
    line-height: 1.6em;
  }

  .secondtext.hidden {
    text-align: center;
    letter-spacing: 0;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    font-size: 2vw;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .secondtext.second {
    letter-spacing: 0;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .flex-block-31 {
    z-index: 2;
    top: 41%;
  }

  .flex-block-32 {
    z-index: 2;
    flex-flow: column;
    top: 41%;
  }

  .magnetoexplicacion0-5, .magnetoexplicacion0-5.bigres {
    display: flex;
  }

  .button-sol {
    align-self: center;
    margin-top: 0;
    margin-left: 0;
    font-size: 24px;
    line-height: 1em;
    top: 41%;
  }

  .button-sol.w--current {
    top: 40%;
  }

  .button-sol.betasson {
    margin-top: 20px;
  }

  .flex-block-33 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-bottom: 10px;
  }

  .lottiedemo-2 {
    height: auto;
  }

  .magnetolootiesmall {
    display: none;
  }

  .magnetolootiesmall.bigres {
    display: flex;
  }

  .lottietitle {
    width: 35%;
    margin-top: 0;
    display: flex;
    top: -25px;
    left: 38%;
    right: 0%;
  }

  .lottietitle._2 {
    width: 22%;
    display: block;
  }

  .lottietitle._1 {
    align-self: center;
    width: 12px;
    margin-top: 3px;
    margin-right: 2px;
    display: block;
  }

  .lottietitle._3, .lottietitle._4 {
    width: 22%;
    display: block;
  }

  .lottietitle.bigger {
    align-self: center;
    width: 12px;
    margin-top: 3px;
    margin-right: 2px;
    display: block;
  }

  .beleiveus {
    align-self: flex-end;
    width: 95%;
    font-size: 3vw;
    line-height: 1.3em;
  }

  .beleiveus.magic {
    letter-spacing: 0;
    text-indent: -5px;
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7vw;
    line-height: 1em;
  }

  .beleiveus.mag {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 20vw;
  }

  .beleiveus.neto {
    letter-spacing: -.06em;
    margin-left: -6px;
    padding-top: 0;
    font-size: 17vw;
    line-height: .88em;
  }

  .beleiveus.free {
    text-align: left;
    letter-spacing: 0;
    text-indent: -5px;
    margin-top: 80px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
    line-height: 1em;
  }

  .beleiveus.lane {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 7vw;
    line-height: .6em;
  }

  .beleiveus.fds {
    letter-spacing: 0;
    text-indent: -5px;
    flex: 0 auto;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7vw;
    line-height: 1em;
    display: flex;
  }

  .beleiveus.ma {
    letter-spacing: -.06em;
    margin-left: -7px;
    padding-top: 0;
    font-size: 17vw;
    line-height: .88em;
  }

  .beleiveus.o {
    letter-spacing: 0;
    margin-left: -10px;
    padding-top: 0;
    padding-right: 0;
    font-size: 17vw;
    font-weight: 600;
    line-height: .88em;
  }

  .beleiveus.small {
    font-size: 5vw;
  }

  .beleiveus.smaller {
    width: 100%;
    font-size: 2vw;
  }

  .text-span-67 {
    font-weight: 600;
  }

  .flex-block-34 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .leyenda {
    text-align: right;
    font-size: 12px;
    line-height: 1.5em;
  }

  .leyenda.primero {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .leyenda.primero.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.primero.segundo.intro {
    order: 0;
    align-self: center;
    width: auto;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 15px;
    font-weight: 200;
    line-height: 1.5em;
  }

  .leyenda.primero.segundo.top {
    order: 0;
    align-self: center;
    width: auto;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4em;
  }

  .leyenda.primero.medio {
    width: 70%;
    font-size: 26px;
  }

  .leyenda.primero.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.primero.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .leyenda.primero.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.primero.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .leyenda.relativebig {
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
    top: 0;
  }

  .leyenda.relativebig.segundo {
    width: 100%;
    max-width: 60ch;
    margin-bottom: 24px;
    padding-left: 0;
  }

  .leyenda.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.relativebig.segundo.intro {
    flex-wrap: nowrap;
    align-self: flex-start;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
  }

  .leyenda.center {
    order: 1;
    align-self: flex-start;
  }

  .leyenda.center.right2 {
    text-align: left;
    align-self: flex-start;
  }

  .leyenda.nestappfirst {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .leyenda.nestappfirst.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.nestappfirst.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .leyenda.nestappfirst.medio {
    width: 70%;
    font-size: 26px;
  }

  .leyenda.nestappfirst.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.nestappfirst.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .leyenda.nestappfirst.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.nestappfirst.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .leyenda.right {
    align-self: flex-start;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 26px;
  }

  .leyenda.right.segundo {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.right.segundo.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
  }

  .leyenda.right.medio {
    width: 70%;
    font-size: 26px;
  }

  .leyenda.right.segundo-copy {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.right.segundo-copy.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .leyenda.right.nest {
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.right.nest.intro {
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .leyenda.derecha {
    font-size: 16px;
  }

  .leyenda.white {
    font-size: 13px;
  }

  .price {
    align-self: center;
    margin-bottom: 10px;
  }

  .techmockups {
    margin-bottom: 0;
    margin-left: 0;
    font-size: 14vw;
  }

  .techmockups.magic {
    letter-spacing: 0;
    text-indent: -5px;
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7vw;
    line-height: 1em;
  }

  .techmockups.mag {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 20vw;
  }

  .techmockups.neto {
    letter-spacing: -.06em;
    margin-left: -6px;
    padding-top: 0;
    font-size: 17vw;
    line-height: .88em;
  }

  .techmockups.free {
    text-align: left;
    letter-spacing: 0;
    text-indent: -5px;
    margin-top: 80px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
    line-height: 1em;
  }

  .techmockups.lane {
    letter-spacing: 0;
    text-indent: 0;
    font-size: 7vw;
    line-height: .6em;
  }

  .techmockups.fds {
    letter-spacing: 0;
    text-indent: -5px;
    flex: 0 auto;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7vw;
    line-height: 1em;
    display: flex;
  }

  .techmockups.ma {
    letter-spacing: -.06em;
    margin-left: -7px;
    padding-top: 0;
    font-size: 17vw;
    line-height: .88em;
  }

  .techmockups.o {
    letter-spacing: 0;
    margin-left: -10px;
    padding-top: 0;
    padding-right: 0;
    font-size: 17vw;
    font-weight: 600;
    line-height: .88em;
  }

  .techmockups.mockups {
    letter-spacing: -.06em;
    margin-left: -7px;
    padding-top: 0;
    font-size: 17vw;
    line-height: .88em;
  }

  .div-block-89 {
    height: 100px;
  }

  .heading-9 {
    font-size: 3vw;
  }

  .solutions-2 {
    margin-left: 0;
    font-size: 2vw;
  }

  .flex-block-35, .flex-block-35.dos {
    padding-left: 27px;
    padding-right: 27px;
  }

  .top {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    width: 105%;
    height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .subt_top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 20px;
    padding-top: 60px;
    font-size: 20vw;
  }

  h2 {
    font-size: 5vw;
    line-height: 90%;
  }

  .container-wrap {
    margin-top: 0;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .nav-parent {
    margin-left: 40px;
  }

  .about-content-inner {
    max-width: 100%;
  }

  .heading {
    padding-top: 45px;
  }

  .topheader {
    align-self: stretch;
    width: auto;
    height: auto;
    margin-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-4.w--current {
    font-size: 20px;
  }

  .bottom {
    grid-template-columns: 1fr;
  }

  .paragraph-2 {
    padding-right: 49px;
  }

  .big-heading {
    font-size: 3.5vw;
  }

  .big-heading.magic {
    letter-spacing: 0;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .big-heading.last {
    letter-spacing: -3px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15vw;
  }

  .big-heading.mag {
    letter-spacing: 0;
    text-indent: 0;
    width: 100%;
    max-width: none;
    font-size: 21vw;
  }

  .big-heading.neto {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    letter-spacing: -.015em;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -1px;
  }

  .big-heading.free {
    letter-spacing: 0;
    text-indent: -5px;
    order: -1;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .big-heading.lane {
    letter-spacing: -1.5vw;
    text-indent: -10px;
    align-self: flex-end;
    margin-bottom: 0;
    font-size: 24vw;
  }

  .big-heading.fds {
    letter-spacing: 0;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .big-heading.ma {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: left;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: 0;
    display: flex;
  }

  .big-heading.o {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    color: var(--naranjaelectrico);
    text-align: center;
    letter-spacing: -1px;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -1px;
    display: none;
  }

  .big-heading.mockups {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -4px;
    display: flex;
  }

  .big-heading.by {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 8vw;
    display: flex;
  }

  .paragraph-3 {
    width: 100%;
    font-size: 6vw;
    line-height: 1.2em;
  }

  .image-2 {
    order: -1;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }

  .laneawards {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-self: flex-start;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .block-quote {
    box-sizing: border-box;
    width: auto;
    max-width: none;
    margin-bottom: 0;
    font-size: 13px;
    overflow: visible;
  }

  .trabajos {
    display: block;
  }

  .grid-4 {
    grid-column-gap: 0px;
    grid-row-gap: 13px;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.primero {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .descripcion-proyecto.primero.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    line-height: 1.5em;
    display: flex;
    overflow: visible;
  }

  .descripcion-proyecto.primero.segundo.top {
    text-align: left;
    flex: 0 auto;
    order: 0;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4em;
    display: flex;
    overflow: visible;
  }

  .descripcion-proyecto.primero.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .descripcion-proyecto.primero.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .descripcion-proyecto.primero.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .descripcion-proyecto.relativebig {
    margin-left: 0;
    font-size: 20px;
  }

  .descripcion-proyecto.relativebig.segundo {
    width: 100%;
    padding-left: 0;
  }

  .descripcion-proyecto.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.relativebig.segundo.intro {
    padding-right: 20px;
  }

  .descripcion-proyecto.center {
    order: 1;
  }

  .descripcion-proyecto.nestappfirst {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .descripcion-proyecto.nestappfirst.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .descripcion-proyecto.nestappfirst.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .descripcion-proyecto.nestappfirst.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .descripcion-proyecto.right {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .descripcion-proyecto.right.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.right.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .descripcion-proyecto.right.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .descripcion-proyecto.right.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.right.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .descripcion-proyecto.right.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .descripcion-proyecto.right.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .descripcion-proyecto.derecha {
    font-size: 13px;
  }

  .imagen-proyecto {
    max-width: none;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .div-block-6 {
    width: 100%;
    margin-bottom: 0;
    padding-right: 0;
  }

  .destacado {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .destacado.abajo {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .destacado.shorter {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .destacado.v {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    flex-flow: column;
    height: auto;
  }

  .destacado.vertresp, .destacado.lastnomargin {
    margin-bottom: 100px;
  }

  .destacado.full {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    height: auto;
  }

  .destacado-imagen {
    width: 100%;
    height: auto;
  }

  .destacado-imagen.segundo {
    object-fit: cover;
    padding: 0;
  }

  .destacado-imagen.segundoa {
    object-fit: cover;
    width: 100%;
  }

  .destacado-imagen.bbva {
    width: 100%;
  }

  .destacado-imagen.vertical {
    object-fit: cover;
    width: 100%;
  }

  .destacado-imagen.vertical2 {
    object-fit: cover;
    border-top-right-radius: 30px;
    width: 100%;
    display: none;
  }

  .destacado-imagen.nestapp {
    object-fit: cover;
    width: 100%;
  }

  .destacado-imagen.noborder {
    object-fit: cover;
    width: 100%;
    padding: 0;
  }

  .destacado-imagen.timedoc {
    object-fit: cover;
    width: 100%;
  }

  .destacado-imagen.subway2 {
    object-fit: cover;
    width: 50%;
    padding: 0;
    overflow: hidden;
  }

  .destacado-imagen.uhc {
    object-fit: cover;
    width: 100%;
  }

  .destacado-imagen.vertical2-copy {
    object-fit: cover;
    width: 100%;
    display: block;
  }

  .destacado-imagen.fbbva {
    object-fit: cover;
    width: 100%;
    padding: 0;
  }

  .link-block-2 {
    width: 100%;
  }

  .newwork {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    max-width: none;
    height: auto;
  }

  .link-2 {
    align-self: center;
    line-height: 1em;
  }

  .grid-5 {
    grid-template-columns: 2.25fr .25fr;
  }

  .heading-7 {
    padding-top: 0;
    font-size: 10vw;
  }

  .ny {
    max-width: none;
    margin-top: 0;
  }

  .gallery-image {
    min-width: 22.5%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .mag {
    align-self: flex-start;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-14 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    order: 1;
    align-self: flex-start;
    width: auto;
    min-width: auto;
    margin-bottom: 0;
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-14._1 {
    box-sizing: border-box;
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    object-fit: fill;
    flex: 0 auto;
    order: 1;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
  }

  .div-block-14._2 {
    box-sizing: border-box;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: fill;
    flex: 0 auto;
    order: 1;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 0;
    padding-top: 10px;
    padding-right: 0;
  }

  .div-block-14.free {
    box-sizing: border-box;
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    object-fit: fill;
    flex: 0 auto;
    order: 1;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
    padding-right: 0;
  }

  .div-block-14.free.first {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 20px;
  }

  .div-block-14._3 {
    box-sizing: border-box;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    object-fit: fill;
    flex: 0 auto;
    order: 1;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    padding: 25px 25px 15px;
  }

  .award {
    font-size: 14px;
  }

  .image-8 {
    width: 25px;
  }

  .background-video {
    height: 350px;
  }

  .linkdouble {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    align-self: stretch;
  }

  .image-9 {
    margin-bottom: 0;
  }

  .flex-block {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    order: 1;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .introtexts {
    color: #000;
    width: auto;
    max-width: none;
    font-size: 2.5vw;
    line-height: 1.5em;
    display: inline;
  }

  .introtexts.fds {
    font-size: 16px;
  }

  .introtexts.white {
    font-size: 14px;
  }

  .link-block-6, .link-block-7, .link-block-8, .link-block-9 {
    width: 100%;
  }

  .lottie-animation.snaplogo {
    width: 150px;
    display: none;
  }

  .lottie-animation.snapbrand {
    flex: 1;
  }

  .heading-8 {
    letter-spacing: 0;
    align-self: flex-start;
    margin-bottom: 0;
    font-size: 17px;
  }

  .div-block-15 {
    min-width: 300px;
    max-width: none;
  }

  .magic-entry {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .freedesign {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-bottom: 0;
  }

  .teatro {
    max-width: none;
  }

  .nestapp {
    order: -1;
    width: 100%;
  }

  .pennydiv {
    flex-flow: column;
    margin-top: -2vw;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-block-2 {
    max-width: none;
  }

  .hero {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: 1;
    align-self: center;
    align-items: flex-start;
    width: auto;
    margin-bottom: 5px;
    padding: 0 0;
  }

  .introtext_hero {
    align-self: flex-end;
    width: 100%;
    padding-top: 9vw;
    font-size: 2.5vw;
    line-height: 1.2em;
  }

  .introtext_hero.hidden {
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 2vw;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
    overflow: visible;
  }

  .introtext_hero.second {
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 16px;
    font-weight: 300;
    display: block;
    overflow: visible;
  }

  .neto {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    text-align: center;
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
    width: 100%;
    margin: 5px 0 6px;
    padding-left: 0;
    line-height: 20px;
    display: flex;
  }

  .titbig {
    font-size: 18px;
  }

  .titbig.primero {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 20px;
  }

  .titbig.primero.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .titbig.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.primero.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .titbig.primero.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .titbig.primero.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .titbig.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.primero.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .titbig.primero.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .titbig.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.primero.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .titbig.relativebig {
    margin-left: 0;
    font-size: 20px;
  }

  .titbig.relativebig.segundo {
    width: 100%;
    padding-left: 0;
  }

  .titbig.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .titbig.relativebig.segundo.intro {
    padding-right: 20px;
  }

  .titbig.white {
    font-size: 16px;
    line-height: 1.3em;
  }

  .tit-intro40 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    order: 1;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button {
    text-align: center;
    flex: 0 auto;
    align-self: flex-start;
    margin-top: 0;
  }

  .button.betasson {
    margin-top: 0;
  }

  .magneto {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .playground {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    border-top-style: none;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    top: 0;
  }

  .playground.fdr {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .playground.fds {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    justify-content: space-around;
    align-self: stretch;
    margin-top: 60px;
    margin-bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .playground.final {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border-top-style: none;
    flex-flow: column;
    justify-content: space-around;
    align-self: stretch;
    margin-top: 60px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .timedocs {
    width: 100%;
    max-width: none;
    height: auto;
  }

  ._4 {
    max-width: none;
  }

  .sp-track-wrapper {
    padding: 20px;
  }

  .flex-block-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 30px;
  }

  .uhc {
    border-top-right-radius: 20px;
    width: 100%;
    max-width: none;
    height: auto;
  }

  .titintro20 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    order: 1;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .kickoff {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  ._5 {
    max-width: none;
  }

  .citabig {
    align-self: flex-end;
    width: 100%;
    margin-bottom: 60px;
    padding-top: 0;
    font-size: 6vw;
    line-height: 1.2em;
  }

  .introhidden {
    color: #fff;
    text-align: left;
    letter-spacing: .7px;
    align-self: flex-end;
    width: 100%;
    padding-top: 5vw;
    font-family: Manrope, sans-serif;
    font-size: 3.5vw;
    line-height: 1.35em;
    display: flex;
  }

  .subsubmarcas {
    color: #000;
    width: auto;
    max-width: none;
    font-size: 16px;
    line-height: 1.3em;
    display: inline;
  }

  .paragraph-7 {
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 0;
  }

  .div-block-16 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    order: -1;
    align-self: flex-start;
  }

  .flex-block_hero {
    border-radius: 0;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .content {
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .firstmodule {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 0;
  }

  .headertop {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    top: 20px;
  }

  .urlhero {
    font-size: 16px;
    display: none;
  }

  .urlhero.primero {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .urlhero.primero.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.primero.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .urlhero.primero.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .urlhero.primero.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.primero.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .urlhero.primero.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.primero.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .urlhero.relativebig {
    margin-left: 0;
    font-size: 20px;
  }

  .urlhero.relativebig.segundo {
    width: 100%;
    padding-left: 0;
  }

  .urlhero.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.relativebig.segundo.intro {
    padding-right: 20px;
  }

  .urlhero.center {
    order: 1;
  }

  .urlhero.nestappfirst {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .urlhero.nestappfirst.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.nestappfirst.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .urlhero.nestappfirst.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .urlhero.nestappfirst.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .urlhero.nestappfirst.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.nestappfirst.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .urlhero.right {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .urlhero.right.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.right.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .urlhero.right.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .urlhero.right.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.right.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .urlhero.right.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .urlhero.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .urlhero.right.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .visualdriven {
    align-self: center;
    font-size: 10px;
  }

  .visualdriven.primero {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .visualdriven.primero.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.primero.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .visualdriven.primero.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .visualdriven.primero.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.primero.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .visualdriven.primero.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.primero.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .visualdriven.relativebig {
    margin-left: 0;
    font-size: 20px;
  }

  .visualdriven.relativebig.segundo {
    width: 100%;
    padding-left: 0;
  }

  .visualdriven.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.relativebig.segundo.intro {
    padding-right: 20px;
  }

  .visualdriven.center {
    order: 1;
  }

  .visualdriven.nestappfirst {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .visualdriven.nestappfirst.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .visualdriven.nestappfirst.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .visualdriven.nestappfirst.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .visualdriven.nestappfirst.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .visualdriven.right {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .visualdriven.right.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.right.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .visualdriven.right.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .visualdriven.right.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.right.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .visualdriven.right.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .visualdriven.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .visualdriven.right.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .div-block-18 {
    display: none;
  }

  .firstheadline {
    align-self: center;
    width: 85%;
    max-width: none;
    margin-bottom: 12px;
    margin-left: 15px;
    font-size: 2vw;
    line-height: 1.4em;
  }

  .firstheadline.magic {
    letter-spacing: -.4vw;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14vw;
    line-height: .5em;
  }

  .firstheadline.last {
    letter-spacing: -3px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15vw;
  }

  .firstheadline.studio {
    letter-spacing: -2vw;
    text-indent: -10px;
    width: 100%;
    max-width: none;
    font-size: 32vw;
  }

  .firstheadline.dio {
    letter-spacing: -2.1vw;
    text-indent: -12px;
    font-size: 36vw;
    line-height: .4em;
  }

  .firstheadline.free {
    letter-spacing: -3px;
    text-indent: -5px;
    order: -1;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18vw;
    line-height: .5em;
  }

  .firstheadline.lane {
    letter-spacing: -1.5vw;
    text-indent: -10px;
    align-self: flex-end;
    margin-bottom: 0;
    font-size: 24vw;
  }

  .firstheadline.fds {
    letter-spacing: -1px;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14vw;
    line-height: .6em;
  }

  .magento_brand {
    letter-spacing: -1px;
    align-self: center;
    width: 95%;
    margin-left: 0;
    padding-left: 0;
    top: -13vw;
  }

  .magnetologo {
    letter-spacing: -7px;
    font-size: 30vw;
  }

  .magnetologo.magic {
    letter-spacing: 0;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: .5em;
  }

  .magnetologo.last {
    letter-spacing: -3px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15vw;
  }

  .magnetologo.studio {
    letter-spacing: -2vw;
    text-indent: -10px;
    width: 100%;
    max-width: none;
    font-size: 32vw;
  }

  .magnetologo.dio {
    letter-spacing: -2.1vw;
    text-indent: -12px;
    font-size: 36vw;
    line-height: .4em;
  }

  .magnetologo.free {
    letter-spacing: -3px;
    text-indent: -5px;
    order: -1;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18vw;
    line-height: .5em;
  }

  .magnetologo.lane {
    letter-spacing: -1.5vw;
    text-indent: -10px;
    align-self: flex-end;
    margin-bottom: 0;
    font-size: 24vw;
  }

  .magnetologo.fds {
    letter-spacing: -1px;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14vw;
    line-height: .6em;
  }

  .image-13 {
    mix-blend-mode: normal;
    width: 100%;
    margin-left: 0;
  }

  .tit-intro40-copy {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    order: 1;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .flex-block-8 {
    border-top-right-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-block-2-copy {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .destacado-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    display: none;
  }

  .destacado-copy.abajo {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .destacado-copy.shorter {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .destacado-copy.v {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    height: auto;
  }

  .destacado-copy.vertresp, .destacado-copy.lastnomargin {
    margin-bottom: 100px;
  }

  .destacado-copy.full {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    height: auto;
  }

  .onlyavaiilable {
    font-size: 11px;
  }

  .nombreapp.primero {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .nombreapp.primero.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.primero.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .nombreapp.primero.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .nombreapp.primero.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.primero.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .nombreapp.primero.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.primero.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .nombreapp.relativebig {
    margin-left: 0;
    font-size: 20px;
  }

  .nombreapp.relativebig.segundo {
    width: 100%;
    padding-left: 0;
  }

  .nombreapp.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.relativebig.segundo.intro {
    padding-right: 20px;
  }

  .nombreapp.center {
    order: 1;
  }

  .nombreapp.nestappfirst {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .nombreapp.nestappfirst.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .nombreapp.nestappfirst.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .nombreapp.nestappfirst.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .nombreapp.nestappfirst.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .nombreapp.right {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .nombreapp.right.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.right.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .nombreapp.right.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .nombreapp.right.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.right.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .nombreapp.right.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .nombreapp.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .nombreapp.right.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .nombreapp.white {
    font-size: 13px;
  }

  .hero_1 {
    padding-bottom: 10px;
    padding-left: 0;
  }

  .text-span-21 {
    line-height: 1.6em;
  }

  .coluna {
    border-right-style: none;
    min-width: auto;
    margin-top: 10px;
    margin-bottom: 0;
    padding-right: 0;
  }

  .image-35 {
    order: -1;
    width: 120px;
  }

  .hiddenblock {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hiddenblock.executivesummary {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 20px;
  }

  .imagenlibros {
    overflow: visible;
  }

  .timelinetext.up {
    padding-right: 10px;
    font-size: 12px;
  }

  .textobloques {
    width: auto;
    max-width: none;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .textobloques.dcha {
    text-align: center;
    align-self: flex-start;
    min-width: auto;
    margin-bottom: 0;
  }

  .textobloques.realtive {
    margin-top: 0;
  }

  .textobloques.centered {
    align-self: flex-start;
  }

  .fechaup {
    min-height: 110px;
    padding-left: 0;
    padding-right: 10px;
  }

  .txttitular {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .txttitular.dos {
    width: 100%;
    margin-top: auto;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .video-fotocirc.big {
    flex-flow: row;
    width: 100%;
    min-height: 200px;
    margin-bottom: 0;
  }

  .boton-close {
    margin-bottom: 0;
    padding-bottom: 9px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 15px;
  }

  .boton-close.w--current {
    padding-left: 18px;
    padding-right: 18px;
  }

  .div-block-82 {
    margin-top: auto;
  }

  .bloques-principales {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .bloques-principales._02, .bloques-principales._01, .bloques-principales._03, .bloques-principales._04 {
    margin-top: 10px;
  }

  .div-block-63 {
    align-self: center;
    width: 100%;
    padding-top: 10px;
    display: flex;
  }

  .fullscroll {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .smallheadings {
    background-color: #fff;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
  }

  .smallheadings.in {
    flex: 0 auto;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .smallheadings.smaller {
    font-size: 12px;
  }

  .smallheadings.growth {
    background-color: #fff0;
    align-self: center;
    margin-bottom: 0;
    font-size: 12px;
  }

  .smallheadings.link {
    justify-content: center;
    margin-bottom: 0;
    padding: 20px 20px 16px;
    font-size: 13px;
  }

  .lynx-heading-accordion {
    text-align: left;
    font-size: 18px;
  }

  ._1botonescols {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    flex: 0 auto;
    place-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
  }

  .conector {
    display: none;
  }

  .nombre_app {
    text-align: left;
    letter-spacing: -.03em;
    margin-bottom: 10px;
    padding-bottom: 0;
    padding-left: 0;
    font-size: 30px;
    font-weight: 400;
  }

  .videocircularentry {
    height: 100%;
  }

  .videocircularentry.keytosucess {
    display: block;
    position: relative;
  }

  .div-block-62 {
    flex: 0 auto;
    width: 100%;
  }

  .imagen-video {
    height: auto;
    margin-bottom: 0;
  }

  .conectorproyectos.negro, .conectorproyectos.lastconector {
    display: flex;
  }

  .sectionsticky-1 {
    letter-spacing: 0;
    margin-bottom: 10px;
    padding-bottom: 0;
    padding-left: 0;
    font-size: 55px;
    font-weight: 400;
  }

  .txtyvideo {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-self: stretch;
    display: flex;
  }

  .txtyvideo.izq {
    align-self: stretch;
  }

  .txtyvideo.absolute {
    background-color: #1d1d1d00;
    height: auto;
  }

  .lynx-accordion-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .superheading {
    text-align: left;
    letter-spacing: -.03em;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    font-size: 22vw;
    font-weight: 400;
    display: flex;
  }

  .bloqueseccionb {
    font-size: 34px;
    line-height: 1em;
  }

  .bloqueseccionb.white {
    text-align: center;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    display: block;
  }

  .ahoratext {
    color: #000;
    font-size: 30px;
  }

  .number {
    letter-spacing: -7px;
    margin-bottom: 10px;
    font-size: 200px;
    font-weight: 500;
  }

  .entrdillaprox {
    grid-column-gap: 2px;
  }

  .headerenhiddenbig.spaceafter {
    line-height: 1.6em;
  }

  .txtmaindestacados {
    letter-spacing: 0;
    margin-bottom: 0;
    line-height: 1.3em;
  }

  .circulosconproxb {
    height: auto;
  }

  .image-28.visisble {
    max-width: none;
    margin-top: auto;
    overflow: visible;
  }

  .destnumbig {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .destnumbig.inside {
    flex-flow: row;
    justify-content: space-between;
    align-self: stretch;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contenido_capitulo {
    width: 100%;
  }

  .headermain {
    letter-spacing: -.5px;
    margin-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 5vw;
    font-weight: 400;
    line-height: 1.3em;
  }

  .boton-hidden1 {
    justify-content: center;
    align-self: flex-end;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
    padding: 22px 25px 16px;
    font-size: 15px;
  }

  .boton-hidden1.w--current {
    padding-left: 25px;
    padding-right: 25px;
  }

  .boton-hidden1.executivesummary {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .super-swiper {
    display: none;
    overflow: hidden;
  }

  .div-block-65 {
    margin-bottom: 10px;
    padding-top: 0;
  }

  .proximas-actividades, .proximas-actividades._4, .proximas-actividades._2, .proximas-actividades._5, .proximas-actividades._3 {
    width: 15vw;
    min-width: 200px;
    height: 15vw;
    min-height: 200px;
  }

  .swiper-slide {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: auto;
    display: flex;
    left: 0;
  }

  .divbotonclose {
    margin-bottom: 0;
  }

  .divbotonclose.down, .numbig {
    margin-top: 0;
  }

  .numbig.bigger {
    letter-spacing: 0;
    font-size: 50px;
  }

  .nav_lateral {
    display: none;
  }

  .swiper {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hiddeninfo1 {
    margin-bottom: 10px;
    line-height: 1.6em;
  }

  .colsdiferentes {
    grid-column-gap: 10px;
    grid-row-gap: 26px;
    column-count: 1;
    flex-flow: column;
    flex: 0 auto;
    place-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    display: flex;
  }

  .parrafosbloques {
    text-align: left;
  }

  .parrafosbloques.alindcha {
    align-self: flex-start;
    line-height: 1.3em;
  }

  .parrafosbloques.alindcha.absolute {
    font-size: 22px;
  }

  .databignumbers {
    flex: 0 auto;
    align-self: center;
    width: auto;
  }

  .databignumbers.lottie._100 {
    order: -1;
    margin-bottom: 10px;
    display: flex;
  }

  .tiposhome {
    display: flex;
  }

  .destacados {
    flex-flow: column;
    width: auto;
    max-width: none;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .pie {
    background-color: #fff;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 12px;
  }

  .intrrosub {
    line-height: 1.6em;
  }

  .flashlottie._1 {
    width: 9px;
    margin-top: 0;
    margin-right: 1px;
  }

  .flashlottie.bigger {
    width: 10px;
    margin-top: 2px;
    margin-right: 2px;
  }

  .flex-block-29 {
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .flex-block-30 {
    flex-flow: column;
  }

  .div-block-65-copy {
    flex-flow: column;
    margin-bottom: 10px;
    padding-top: 0;
  }

  .subt1 {
    height: auto;
  }

  .copyright {
    color: var(--black);
    margin-top: 10px;
    margin-left: 3px;
    font-size: 7svw;
    display: flex;
  }

  .lottie-animation-13 {
    margin-top: -4px;
  }

  .solutions {
    margin-bottom: 0;
    font-size: 3vw;
  }

  .solutions.nopadd {
    font-size: 3vw;
  }

  .lottiedemo {
    order: 1;
  }

  .magnetolottie2resp {
    display: flex;
  }

  .magnetolottie2resp.hidden {
    display: none;
  }

  .initialtext {
    align-self: center;
    width: 90%;
    padding-top: 9vw;
    font-size: 3vw;
    line-height: 1.2em;
  }

  .initialtext.hidden {
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3em;
    display: block;
    overflow: visible;
  }

  .initialtext.second {
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 16px;
    font-weight: 300;
    display: block;
    overflow: visible;
  }

  .secondtext {
    align-self: center;
    width: 90%;
    padding-top: 9vw;
    font-size: 3vw;
    line-height: 1.3em;
  }

  .secondtext.hidden {
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3em;
    display: block;
    overflow: visible;
  }

  .secondtext.second {
    flex: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 16px;
    font-weight: 300;
    display: block;
    overflow: visible;
  }

  .flex-block-31 {
    top: 42%;
  }

  .flex-block-32 {
    flex-flow: column;
    flex: 0 auto;
    top: 42%;
    right: 0;
  }

  .magnetoexplicacion0-5 {
    margin-top: 10px;
    margin-bottom: 10px;
    display: none;
  }

  .magnetoexplicacion0-5.bigres {
    display: none;
  }

  .button-sol {
    opacity: 1;
    text-align: center;
    border-radius: 20px;
    flex: 0 auto;
    align-self: center;
    margin-top: 0;
    margin-left: 0;
    font-size: 26px;
    font-weight: 200;
    display: flex;
    top: 42%;
  }

  .button-sol.w--current {
    align-self: flex-start;
    top: 43%;
  }

  .button-sol.betasson {
    margin-top: 0;
  }

  .flex-block-33 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
  }

  .lottiedemo-2 {
    order: 1;
  }

  .magnetolootiesmall {
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
  }

  .magnetolootiesmall.bigres {
    display: none;
  }

  .lottietitle {
    width: 40%;
    margin-top: 0;
    top: -26px;
    left: 42%;
    right: 0%;
  }

  .lottietitle._1, .lottietitle.bigger {
    width: 10px;
    margin-top: 2px;
    margin-right: 2px;
  }

  .beleiveus {
    font-size: 3.5vw;
  }

  .beleiveus.magic {
    letter-spacing: 0;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .beleiveus.last {
    letter-spacing: -3px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15vw;
  }

  .beleiveus.mag {
    letter-spacing: 0;
    text-indent: 0;
    width: 100%;
    max-width: none;
    font-size: 21vw;
  }

  .beleiveus.neto {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -4px;
  }

  .beleiveus.free {
    letter-spacing: 0;
    text-indent: -5px;
    order: -1;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .beleiveus.lane {
    letter-spacing: -1.5vw;
    text-indent: -10px;
    align-self: flex-end;
    margin-bottom: 0;
    font-size: 24vw;
  }

  .beleiveus.fds {
    letter-spacing: 0;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .beleiveus.ma {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -4px;
    display: flex;
  }

  .beleiveus.o {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    letter-spacing: -1px;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -7px;
    display: flex;
  }

  .beleiveus.small {
    margin-bottom: 0;
  }

  .beleiveus.smaller {
    width: auto;
    font-size: 2.5vw;
  }

  .text-span-67 {
    font-weight: 600;
  }

  .flex-block-34 {
    margin-bottom: 0;
  }

  .leyenda {
    text-align: center;
  }

  .leyenda.primero {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .leyenda.primero.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.primero.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.primero.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    line-height: 1.5em;
    display: flex;
    overflow: visible;
  }

  .leyenda.primero.segundo.top {
    text-align: center;
    flex: 0 auto;
    order: 0;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4em;
    display: flex;
    overflow: visible;
  }

  .leyenda.primero.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .leyenda.primero.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.primero.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.primero.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .leyenda.primero.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.primero.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.primero.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .leyenda.relativebig {
    margin-left: 0;
    font-size: 20px;
  }

  .leyenda.relativebig.segundo {
    width: 100%;
    padding-left: 0;
  }

  .leyenda.relativebig.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.relativebig.segundo.intro {
    padding-right: 20px;
  }

  .leyenda.center {
    order: 1;
  }

  .leyenda.nestappfirst {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .leyenda.nestappfirst.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.nestappfirst.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.nestappfirst.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .leyenda.nestappfirst.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .leyenda.nestappfirst.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.nestappfirst.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .leyenda.nestappfirst.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.nestappfirst.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.nestappfirst.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .leyenda.right {
    align-self: flex-start;
    width: auto;
    margin-left: 0;
    font-size: 25px;
  }

  .leyenda.right.segundo {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.right.segundo.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.right.segundo.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .leyenda.right.medio {
    align-self: flex-start;
    width: auto;
    font-size: 20px;
  }

  .leyenda.right.segundo-copy {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.right.segundo-copy.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.right.segundo-copy.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .leyenda.right.nest {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }

  .leyenda.right.nest.ultimo {
    width: 100%;
    margin-left: 0;
  }

  .leyenda.right.nest.intro {
    flex: 0 auto;
    order: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .leyenda.derecha {
    font-size: 13px;
  }

  .price {
    order: 9999;
  }

  .techmockups {
    letter-spacing: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .techmockups.magic {
    letter-spacing: 0;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .techmockups.last {
    letter-spacing: -3px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15vw;
  }

  .techmockups.mag {
    letter-spacing: 0;
    text-indent: 0;
    width: 100%;
    max-width: none;
    font-size: 21vw;
  }

  .techmockups.neto {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -4px;
  }

  .techmockups.free {
    letter-spacing: 0;
    text-indent: -5px;
    order: -1;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .techmockups.lane {
    letter-spacing: -1.5vw;
    text-indent: -10px;
    align-self: flex-end;
    margin-bottom: 0;
    font-size: 24vw;
  }

  .techmockups.fds {
    letter-spacing: 0;
    text-indent: -4px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 9vw;
    line-height: 1em;
  }

  .techmockups.ma {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -4px;
    display: flex;
  }

  .techmockups.o {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    letter-spacing: -1px;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -7px;
    display: flex;
  }

  .techmockups.mockups {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 0;
    margin-left: -4px;
    display: flex;
  }

  .solutions-2 {
    margin-bottom: 10px;
    font-size: 2vw;
  }

  .flex-block-35 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    width: 100%;
  }

  .flex-block-35.dos {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-left: 27px;
    padding-right: 27px;
  }

  .flex-block-36 {
    align-self: center;
  }

  .whiteon {
    align-self: stretch;
  }

  .div-block-90 {
    display: none;
  }

  .top {
    width: 100%;
    padding-top: 30px;
  }

  .subt_top {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-bottom: 0;
  }

  h2 {
    font-size: 8vw;
  }

  h3 {
    font-size: 24px;
    line-height: 24px;
  }

  .container-wrap {
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .row-top {
    align-items: flex-start;
    height: 100px;
  }

  .row-bottom {
    height: 60px;
  }

  .grid {
    grid-row-gap: 30px;
    grid-template-rows: 1.2fr 1fr 1.2fr;
    grid-template-columns: 1fr 1fr;
  }

  .content-parent {
    height: 200px;
  }

  .link-block {
    justify-content: flex-start;
    align-items: center;
  }

  .menu-parent {
    width: 50px;
    padding-right: 0;
    top: 3px;
  }

  .menu-parent-slide {
    width: 100%;
  }

  .nav-parent {
    margin-left: 20px;
  }

  .menu-txt {
    font-size: 40px;
  }

  .about-content-inner {
    padding-bottom: 100px;
    padding-right: 30px;
  }

  .close {
    top: 20px;
    right: 20px;
  }

  .heading {
    padding-top: 40px;
  }

  .contenedor-principal {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topheader {
    height: auto;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-4 {
    padding-top: 0;
    font-size: 6vw;
  }

  .heading-4.w--current {
    margin-top: 0;
    font-size: 14px;
  }

  .paragraph-2 {
    padding-right: 0;
  }

  .big-heading {
    text-align: left;
    letter-spacing: .6px;
    margin-top: 0;
    font-size: 5vw;
    display: none;
  }

  .big-heading.magic {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-end;
    font-size: 13vw;
    line-height: 1.1em;
  }

  .big-heading.last {
    letter-spacing: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
  }

  .big-heading.mag {
    letter-spacing: 0;
    text-indent: 0;
    flex: 0 auto;
    width: auto;
    padding-left: 0;
    font-size: 20vw;
    font-weight: 900;
    display: block;
  }

  .big-heading.neto {
    letter-spacing: -.01em;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-right: 0;
    font-size: 27vw;
    font-weight: 600;
    line-height: .88em;
  }

  .big-heading.free {
    text-align: left;
    letter-spacing: 0;
    text-indent: -2px;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 13vw;
    line-height: 1.1em;
  }

  .big-heading.lane {
    letter-spacing: -1.2vw;
    text-indent: -3px;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 26vw;
    font-weight: 900;
  }

  .big-heading.fds {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-start;
    font-size: 13vw;
    line-height: .7em;
  }

  .big-heading.ma {
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-right: 0;
    font-size: 11vw;
    font-weight: 600;
    line-height: .88em;
  }

  .big-heading.o {
    color: #000;
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -3px;
    padding-right: 0;
    font-size: 17vw;
    font-weight: 600;
    line-height: .88em;
  }

  .big-heading.mockups {
    text-align: center;
    letter-spacing: -.05em;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .big-heading.by {
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    margin: 0;
    padding-right: 0;
    font-size: 6vw;
    line-height: .88em;
    display: flex;
  }

  .paragraph-3 {
    width: 100%;
    margin-bottom: 10px;
    font-family: Latinotype juana alt, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
  }

  .image-2 {
    object-fit: cover;
    border-radius: 0;
    width: 100%;
    height: 280px;
    margin-bottom: 0;
  }

  .laneawards {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    order: 0;
    margin-top: -4vw;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .block-quote {
    width: 100%;
    max-width: none;
    margin-top: 10px;
    font-size: 12px;
  }

  .grid-4 {
    grid-column-gap: 0px;
    flex: 1;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    align-self: auto;
    justify-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .descripcion-proyecto {
    flex: 0 auto;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    display: flex;
  }

  .descripcion-proyecto.primero {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .descripcion-proyecto.primero.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .descripcion-proyecto.primero.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .descripcion-proyecto.primero.segundo.intro {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-self: flex-start;
    max-width: none;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 12px;
  }

  .descripcion-proyecto.primero.segundo.top {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    align-self: center;
    max-width: none;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3em;
  }

  .descripcion-proyecto.primero.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .descripcion-proyecto.primero.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.primero.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.primero.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .descripcion-proyecto.primero.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .descripcion-proyecto.primero.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.relativebig {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.1em;
  }

  .descripcion-proyecto.relativebig.segundo {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }

  .descripcion-proyecto.relativebig.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .descripcion-proyecto.relativebig.medio {
    line-height: 1.1em;
  }

  .descripcion-proyecto.center {
    font-size: 14px;
    font-weight: 400;
  }

  .descripcion-proyecto.nestappfirst {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .descripcion-proyecto.nestappfirst.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .descripcion-proyecto.nestappfirst.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .descripcion-proyecto.nestappfirst.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.nestappfirst.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.nestappfirst.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .descripcion-proyecto.nestappfirst.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .descripcion-proyecto.nestappfirst.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.right {
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .descripcion-proyecto.right.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .descripcion-proyecto.right.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .descripcion-proyecto.right.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.right.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .descripcion-proyecto.right.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .descripcion-proyecto.right.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .descripcion-proyecto.right.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.right.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .descripcion-proyecto.right.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .descripcion-proyecto.right.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .descripcion-proyecto.derecha {
    font-size: 14px;
  }

  .descripcion-proyecto.white {
    font-size: 11px;
    line-height: 1.5em;
  }

  .imagen-proyecto {
    height: auto;
  }

  .div-block-6 {
    flex-flow: column;
    width: 100%;
    margin-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .destacado {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    height: auto;
    margin-bottom: 0;
    display: flex;
  }

  .destacado.abajo {
    max-width: none;
    margin-bottom: 0;
    display: none;
  }

  .destacado.shorter {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .destacado.v {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0;
  }

  .destacado.vertresp {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    margin-bottom: 60px;
  }

  .destacado.lastnomargin {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 60px;
  }

  .destacado.full {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 0;
  }

  .destacado.full.space-after {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .destacado.last {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .destacado-imagen {
    width: 100%;
    height: auto;
  }

  .destacado-imagen.segundo {
    object-fit: cover;
    border-radius: 15px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
  }

  .destacado-imagen.segundoa {
    object-fit: cover;
    height: 150px;
  }

  .destacado-imagen.bbva {
    width: 100%;
  }

  .destacado-imagen.vertical {
    object-fit: cover;
    height: 150px;
  }

  .destacado-imagen.vertical2 {
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: auto;
    margin-bottom: 10px;
    display: block;
  }

  .destacado-imagen.nestapp {
    object-fit: cover;
    height: auto;
  }

  .destacado-imagen.noborder {
    object-fit: cover;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    overflow: visible;
  }

  .destacado-imagen.timedoc {
    object-fit: cover;
    height: auto;
  }

  .destacado-imagen.subway2 {
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
  }

  .destacado-imagen.uhc {
    object-fit: cover;
    height: auto;
  }

  .destacado-imagen.vertical2-copy {
    object-fit: cover;
    border-radius: 10px;
    height: auto;
    display: block;
  }

  .destacado-imagen.fbbva {
    object-fit: cover;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    overflow: visible;
  }

  .link-block-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%;
    display: flex;
  }

  .newwork {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    order: -1;
    width: auto;
    height: auto;
    padding-left: 0;
  }

  .link-2 {
    align-self: flex-start;
    font-size: 9px;
    line-height: 1.3em;
    display: none;
  }

  .div-block-8 {
    flex: 0 auto;
    align-self: auto;
    width: 100%;
  }

  .heading-7 {
    padding-top: 0;
    line-height: 1em;
  }

  .div-block-9 {
    flex-flow: row;
    align-content: center;
  }

  .ny {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    height: auto;
    padding: 0;
  }

  .gallery-track {
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-image {
    margin-left: 10px;
    margin-right: 10px;
  }

  .mag {
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .div-block-14 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex: 0 auto;
    order: 1;
    width: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-14._1 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: row;
    flex: 0 auto;
    min-width: auto;
  }

  .div-block-14._2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    min-width: auto;
    padding-top: 5px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .div-block-14.free {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: row;
    min-width: auto;
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .div-block-14.free.first {
    width: auto;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .div-block-14._3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-radius: 10px;
    flex-flow: column;
    min-width: auto;
    margin-top: 20px;
    padding: 20px 15px;
    display: flex;
  }

  .award {
    font-size: 12px;
    line-height: 1.1em;
    display: none;
  }

  .image-8 {
    width: 20px;
  }

  .background-video {
    height: 140px;
  }

  .linkdouble {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    order: -1;
    width: 100%;
    padding-bottom: 0;
    display: flex;
    overflow: visible;
  }

  .image-9 {
    align-self: flex-start;
    width: 60px;
    margin-bottom: 0;
  }

  .flex-block {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-flow: column;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    position: static;
  }

  .introtexts {
    color: #000;
    max-width: none;
    font-size: 4vw;
    line-height: 1.5em;
    display: block;
  }

  .introtexts.fds {
    font-size: 13px;
  }

  .introtexts.fds.last {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
  }

  .introtexts.white {
    font-size: 13px;
    line-height: 1.5em;
  }

  .link-block-6, .link-block-7, .link-block-8, .link-block-9, .link-block-10 {
    width: 100%;
  }

  .lottie-animation {
    display: none;
  }

  .lottie-animation.smartmeet {
    border-radius: 10px;
    flex: 0 auto;
    width: auto;
  }

  .lottie-animation.snapbrand {
    flex: 0 auto;
    align-self: auto;
  }

  .text-span-12 {
    font-size: 17vw;
    line-height: .4em;
  }

  .heading-8 {
    letter-spacing: 0;
    align-self: flex-start;
    font-size: 14px;
  }

  .div-block-15 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    align-self: auto;
    align-items: flex-start;
    min-width: auto;
  }

  .magic-entry {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 40px;
  }

  .freedesign {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .teatro {
    order: -1;
    width: 100%;
    padding: 0 2px;
  }

  .nestapp {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%;
    display: flex;
  }

  .pennydiv {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-block-2 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
  }

  .hero {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    padding: 0;
  }

  .introtext_hero {
    text-align: left;
    order: 1;
    width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    font-family: Latinotype juana alt, sans-serif;
    font-size: 5vw;
    font-weight: 300;
    line-height: 1.3em;
    display: block;
  }

  .introtext_hero.hidden {
    width: 85%;
    margin-top: 0;
    margin-bottom: 5px;
    padding-top: 0;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.4em;
    display: block;
  }

  .introtext_hero.second {
    margin-top: 0;
    margin-bottom: 5px;
    padding-top: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    display: block;
  }

  .neto {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
    height: auto;
    margin-top: 5px;
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 5px;
  }

  .type-style {
    font-weight: 800;
  }

  .titbig {
    flex-flow: column;
    flex: 0 auto;
    width: 100%;
    margin-bottom: 5px;
    font-family: Martian Mono, sans-serif;
    font-size: 14px;
    font-weight: 200;
    line-height: 1.4em;
    display: block;
    overflow: visible;
  }

  .titbig.primero {
    margin-top: 0;
    margin-left: 0;
    font-size: 22px;
    line-height: 1.1em;
  }

  .titbig.primero.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .titbig.primero.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .titbig.primero.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .titbig.primero.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .titbig.primero.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .titbig.primero.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .titbig.primero.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .titbig.primero.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .titbig.primero.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .titbig.primero.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .titbig.relativebig {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.1em;
  }

  .titbig.relativebig.segundo {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }

  .titbig.relativebig.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .titbig.relativebig.medio {
    line-height: 1.1em;
  }

  .titbig.white {
    flex: 0 auto;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3em;
  }

  .titbig.small {
    margin-bottom: 0;
    font-size: 18px;
  }

  .tit-intro40 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    order: 1;
    align-self: flex-start;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .button {
    text-align: center;
    flex: 0 auto;
    align-self: stretch;
    margin-top: 5px;
    padding: 20px 30px 19px;
    font-size: 14px;
  }

  .button.grey {
    background-color: #b6b6b6;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 13px;
  }

  .button.betasson {
    margin-top: 5px;
    font-size: 14px;
  }

  .magneto {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    flex: 0 auto;
    align-items: stretch;
    width: 100%;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    overflow: visible;
  }

  .playground {
    box-sizing: border-box;
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    border-top-style: none;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
    display: flex;
    top: 0;
    overflow: visible;
  }

  .playground.fdr {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .playground.fds, .playground.final {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    justify-content: flex-start;
    align-self: flex-start;
    margin-top: 60px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .timedocs {
    order: -1;
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  ._4 {
    order: -1;
    width: 100%;
    padding: 0 2px;
  }

  .code-embed {
    align-self: center;
    width: 100%;
    margin-bottom: 0;
  }

  .flex-block-3 {
    margin-bottom: 10px;
    padding-top: 10px;
  }

  .uhc {
    order: -1;
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .titintro20 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    order: 1;
    min-width: 200px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .kickoff {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    order: -1;
    width: 100%;
    display: flex;
    overflow: visible;
  }

  ._5 {
    order: -1;
    width: 100%;
    padding: 0 2px;
  }

  .citabig {
    text-align: center;
    order: 1;
    width: 100%;
    margin-bottom: 60px;
    padding-top: 0;
    font-family: Latinotype juana alt, sans-serif;
    font-size: 7vw;
    font-weight: 300;
    line-height: 1.3em;
    display: none;
  }

  .text-span-17 {
    font-size: 5vw;
  }

  .introhidden {
    color: #fff;
    text-align: left;
    letter-spacing: .5px;
    order: 1;
    width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.35em;
    display: block;
  }

  .introhidden.hidden {
    display: none;
  }

  .text-span-18 {
    font-weight: 400;
  }

  .subsubmarcas {
    color: #000;
    align-items: flex-start;
    max-width: none;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2em;
    display: flex;
  }

  .paragraph-7 {
    align-self: auto;
    margin-top: 0;
    display: flex;
  }

  .div-block-16 {
    box-sizing: border-box;
    order: -1;
    align-self: flex-start;
    align-items: flex-start;
  }

  .content {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-11 {
    width: 100%;
  }

  .firstmodule {
    margin-bottom: 10px;
    padding-top: 10px;
  }

  .headertop {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .urlhero {
    flex: 0 auto;
    width: 100%;
    font-size: 16px;
    display: none;
  }

  .urlhero.primero {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .urlhero.primero.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .urlhero.primero.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .urlhero.primero.segundo.intro {
    align-self: flex-start;
    max-width: none;
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.primero.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .urlhero.primero.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.primero.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .urlhero.primero.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.primero.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .urlhero.primero.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .urlhero.primero.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.relativebig {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.1em;
  }

  .urlhero.relativebig.segundo {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }

  .urlhero.relativebig.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .urlhero.relativebig.medio {
    line-height: 1.1em;
  }

  .urlhero.nestappfirst {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .urlhero.nestappfirst.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .urlhero.nestappfirst.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .urlhero.nestappfirst.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.nestappfirst.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .urlhero.nestappfirst.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .urlhero.nestappfirst.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.nestappfirst.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .urlhero.nestappfirst.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .urlhero.nestappfirst.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.right {
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .urlhero.right.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .urlhero.right.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .urlhero.right.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.right.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .urlhero.right.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .urlhero.right.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .urlhero.right.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .urlhero.right.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .urlhero.right.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .urlhero.right.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven {
    text-align: center;
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3em;
    display: flex;
  }

  .visualdriven.primero {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .visualdriven.primero.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .visualdriven.primero.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .visualdriven.primero.segundo.intro {
    align-self: flex-start;
    max-width: none;
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.primero.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .visualdriven.primero.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.primero.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .visualdriven.primero.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.primero.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .visualdriven.primero.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .visualdriven.primero.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.relativebig {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.1em;
  }

  .visualdriven.relativebig.segundo {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }

  .visualdriven.relativebig.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .visualdriven.relativebig.medio {
    line-height: 1.1em;
  }

  .visualdriven.nestappfirst {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .visualdriven.nestappfirst.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .visualdriven.nestappfirst.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .visualdriven.nestappfirst.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.nestappfirst.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .visualdriven.nestappfirst.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.nestappfirst.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .visualdriven.nestappfirst.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .visualdriven.nestappfirst.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.right {
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .visualdriven.right.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .visualdriven.right.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .visualdriven.right.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.right.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .visualdriven.right.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .visualdriven.right.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .visualdriven.right.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .visualdriven.right.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .visualdriven.right.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .visualdriven.right.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .lottie-animation-2 {
    width: 100%;
  }

  .firstheadline {
    letter-spacing: 2px;
    width: 100%;
    max-width: none;
    margin-bottom: 12px;
    margin-left: 0;
    font-size: 3vw;
    line-height: 1.3em;
    display: none;
  }

  .firstheadline.magic {
    text-align: left;
    letter-spacing: -.3vw;
    text-indent: 0;
    align-self: flex-end;
    font-size: 17vw;
    line-height: 1.1em;
  }

  .firstheadline.last {
    letter-spacing: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
  }

  .firstheadline.studio {
    letter-spacing: -.4vw;
    text-indent: -5px;
    flex: 0 auto;
    width: auto;
    padding-left: 0;
    font-size: 14vw;
    font-weight: 900;
    display: block;
  }

  .firstheadline.dio {
    font-variation-settings: "wght" 814;
    text-align: left;
    letter-spacing: -2.5vw;
    text-indent: 0;
    align-self: flex-start;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 43vw;
    font-weight: 300;
    line-height: .5em;
  }

  .firstheadline.free {
    text-align: left;
    letter-spacing: -1px;
    text-indent: -2px;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 17vw;
    line-height: 1.1em;
  }

  .firstheadline.lane {
    letter-spacing: -1.2vw;
    text-indent: -3px;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 26vw;
    font-weight: 900;
  }

  .firstheadline.fds {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-start;
    font-size: 17vw;
    line-height: .7em;
  }

  .magento_brand {
    width: 92%;
    padding-left: 0;
    top: -13.3vw;
  }

  .magnetologo {
    letter-spacing: -3px;
    font-size: 25vw;
  }

  .magnetologo.magic {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-end;
    font-size: 10vw;
    line-height: 1.1em;
  }

  .magnetologo.last {
    letter-spacing: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
  }

  .magnetologo.studio {
    letter-spacing: -.4vw;
    text-indent: -5px;
    flex: 0 auto;
    width: auto;
    padding-left: 0;
    font-size: 14vw;
    font-weight: 900;
    display: block;
  }

  .magnetologo.dio {
    font-variation-settings: "wght" 814;
    text-align: left;
    letter-spacing: -2.5vw;
    text-indent: 0;
    align-self: flex-start;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 43vw;
    font-weight: 300;
    line-height: .5em;
  }

  .magnetologo.free {
    text-align: left;
    letter-spacing: -1px;
    text-indent: -2px;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 17vw;
    line-height: 1.1em;
  }

  .magnetologo.lane {
    letter-spacing: -1.2vw;
    text-indent: -3px;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 26vw;
    font-weight: 900;
  }

  .magnetologo.fds {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-start;
    font-size: 17vw;
    line-height: .7em;
  }

  .image-13 {
    mix-blend-mode: normal;
    width: 100%;
  }

  .flex-block-7 {
    justify-content: center;
    align-items: flex-start;
    width: auto;
  }

  .tit-intro40-copy {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    order: 1;
    align-self: flex-start;
    padding: 25px 20px;
  }

  .flex-block-8 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 20px;
    padding: 0;
  }

  .flex-block-2-copy {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 25px 20px;
  }

  .destacado-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    height: auto;
    margin-bottom: 20px;
    display: none;
  }

  .destacado-copy.abajo {
    max-width: none;
    margin-bottom: 40px;
    display: flex;
  }

  .destacado-copy.shorter {
    margin-bottom: 0;
  }

  .destacado-copy.v {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 40px;
  }

  .destacado-copy.vertresp {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    margin-bottom: 60px;
  }

  .destacado-copy.lastnomargin {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 60px;
  }

  .destacado-copy.full {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 0;
  }

  .destacado-copy.full.space-after {
    margin-bottom: 40px;
  }

  .onlyavaiilable {
    font-size: 9px;
  }

  .nombreapp {
    flex: 0 auto;
    width: 100%;
    font-size: 12px;
    display: flex;
  }

  .nombreapp.primero {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .nombreapp.primero.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .nombreapp.primero.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .nombreapp.primero.segundo.intro {
    align-self: flex-start;
    max-width: none;
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.primero.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .nombreapp.primero.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.primero.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .nombreapp.primero.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.primero.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .nombreapp.primero.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .nombreapp.primero.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.relativebig {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.1em;
  }

  .nombreapp.relativebig.segundo {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }

  .nombreapp.relativebig.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .nombreapp.relativebig.medio {
    line-height: 1.1em;
  }

  .nombreapp.nestappfirst {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .nombreapp.nestappfirst.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .nombreapp.nestappfirst.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .nombreapp.nestappfirst.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.nestappfirst.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .nombreapp.nestappfirst.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.nestappfirst.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .nombreapp.nestappfirst.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .nombreapp.nestappfirst.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.right {
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .nombreapp.right.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .nombreapp.right.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .nombreapp.right.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.right.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .nombreapp.right.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .nombreapp.right.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .nombreapp.right.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.right.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .nombreapp.right.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .nombreapp.right.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .nombreapp.white {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .hero_1 {
    height: auto;
    margin-bottom: 20px;
    overflow: visible;
  }

  .text-span-21 {
    font-weight: 600;
    line-height: 1.3em;
  }

  .coluna {
    border-right-style: none;
    min-width: 100%;
    margin-bottom: 10px;
  }

  .image-35 {
    vertical-align: super;
    width: 100px;
  }

  .text-block-11 {
    font-size: 13px;
  }

  .hiddenblock {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 15px;
  }

  .imagenlibros {
    width: 100%;
  }

  .timelinetext {
    font-size: 15px;
  }

  .timelinetext.up {
    padding-right: 10px;
    font-size: 10px;
    line-height: 13px;
  }

  .textobloques {
    flex-wrap: nowrap;
    flex: 0 auto;
    place-content: center flex-start;
    align-self: auto;
    width: auto;
    max-width: none;
    margin-top: 10px;
    font-size: 12px;
    display: block;
  }

  .textobloques.dcha {
    min-width: auto;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .textobloques.realtive {
    max-width: none;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    inset: 20px 0% auto;
  }

  .textobloques.centered {
    margin-top: 10px;
  }

  .fechaup {
    min-height: 110px;
    padding-left: 0;
    padding-right: 10px;
  }

  .txttitular {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .txttitular.dos {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .video-fotocirc.big {
    aspect-ratio: 1;
    flex-flow: column;
    flex: 0 auto;
    place-content: flex-start flex-end;
    align-self: auto;
    align-items: flex-start;
    width: 100%;
    min-height: auto;
    margin-bottom: 0;
    overflow: hidden;
  }

  .boton-close {
    text-align: center;
    justify-content: center;
    align-items: center;
    min-width: auto;
    padding: 15px 20px 11px;
    font-size: 14px;
  }

  .boton-close.w--current {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-82 {
    flex: 0 auto;
    width: 100%;
    margin-top: auto;
  }

  .bloques-principales {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-self: flex-start;
    margin-bottom: 20px;
  }

  .bloques-principales._01 {
    margin-top: 10px;
  }

  .div-block-63 {
    width: 90%;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 10px;
    padding-right: 0;
    display: flex;
  }

  .fullscroll {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
    margin-top: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    position: static;
  }

  .smallheadings {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 18px;
  }

  .smallheadings.in {
    font-size: 14px;
    display: none;
  }

  .smallheadings.smaller {
    font-size: 13px;
  }

  .smallheadings.growth {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3em;
  }

  .lynx-heading-accordion {
    font-size: 16px;
    line-height: 140%;
  }

  ._1botonescols {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-top: 0;
  }

  .div-block-83 {
    margin-top: auto;
  }

  .nombre_app {
    letter-spacing: -.025em;
    min-width: auto;
    margin-bottom: 8px;
    padding-bottom: 0;
    font-size: 10vw;
    font-weight: 400;
    line-height: 1em;
  }

  .videocircularentry.executivesummary, .videocircularentry.internationalfootprint {
    align-self: center;
  }

  .div-block-62 {
    width: 100%;
  }

  .div-block-62.hidden {
    display: none;
  }

  .imagen-video {
    flex-flow: column;
    flex: 0 auto;
    align-content: flex-start;
    align-self: stretch;
    width: auto;
    height: auto;
    margin-bottom: 0;
  }

  .imagen-video.hidden {
    display: none;
  }

  .div-block-84, .div-block-85 {
    margin-top: auto;
  }

  .sectionsticky-1 {
    min-width: auto;
    margin-bottom: 15px;
    padding-bottom: 0;
    font-size: 35px;
    line-height: 1.05em;
  }

  .txtyvideo {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-self: stretch;
    align-items: flex-start;
    margin-top: 10px;
    padding-bottom: 0;
  }

  .txtyvideo.izq {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .txtyvideo.absolute {
    background-color: #1d1d1d00;
    height: auto;
    margin-top: 10px;
  }

  .lynx-accordion-content {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .superheading {
    letter-spacing: -.02em;
    margin-bottom: 5px;
    font-size: 22vw;
    font-weight: 400;
  }

  .bloqueseccionb {
    font-size: 30px;
    font-weight: 400;
  }

  .bloqueseccionb.white {
    text-align: center;
    flex: 0 auto;
    margin-top: auto;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.2em;
    display: block;
  }

  .ahoratext {
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.2em;
  }

  .number {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
    display: none;
  }

  .lottie-animation-11.absolute {
    display: none;
  }

  .headerenhiddenbig {
    flex: 0 auto;
    width: auto;
    max-width: none;
    font-size: 15px;
  }

  .txtmaindestacados {
    flex: 0 auto;
    width: 100%;
    margin-bottom: 10px;
    font-size: 4.3vw;
    line-height: 1.3em;
  }

  .circulosconproxb {
    height: auto;
  }

  .image-28.visisble {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .destnumbig {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .destnumbig.inside {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .headermain {
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3em;
  }

  .lynx-accordion-header {
    margin-bottom: 5px;
  }

  .div-block-68b {
    display: flex;
  }

  .boton-hidden1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    min-width: auto;
    padding: 18px 10px 14px;
    font-size: 14px;
  }

  .super-swiper {
    width: auto;
    margin-top: 10px;
    display: none;
    overflow: hidden;
  }

  .div-block-65 {
    align-items: flex-start;
    padding-top: 0;
    display: flex;
  }

  .proximas-actividades {
    width: 12vw;
    min-width: 150px;
    max-width: none;
    height: 12vw;
    min-height: 150px;
    max-height: none;
  }

  .proximas-actividades._4 {
    background-image: linear-gradient(#00000082, #00000082), url('../images/icons2.png');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 12vw;
    min-width: 150px;
    max-width: none;
    height: 12vw;
    min-height: 150px;
    max-height: none;
    display: flex;
  }

  .proximas-actividades._2 {
    background-image: linear-gradient(#00000082, #00000082), url('../images/sistGrafico1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 12vw;
    min-width: 150px;
    max-width: none;
    height: 12vw;
    min-height: 150px;
    max-height: none;
    display: flex;
  }

  .proximas-actividades._5 {
    background-image: linear-gradient(#00000082, #00000082), url('../images/Diseño-cliente.jpg');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 12vw;
    min-width: 150px;
    max-width: none;
    height: 12vw;
    min-height: 150px;
    max-height: none;
    display: flex;
  }

  .proximas-actividades._3 {
    background-image: linear-gradient(#00000082, #00000082), url('../images/typeConstruction.png');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 12vw;
    min-width: 150px;
    max-width: none;
    height: 12vw;
    min-height: 150px;
    max-height: none;
    display: flex;
  }

  .swiper-slide {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
    left: auto;
  }

  .swiper-slide.is-next {
    margin-right: 5px;
    display: flex;
  }

  .items-menu {
    display: none;
  }

  .divbotonclose {
    margin-bottom: 0;
  }

  .divbotonclose.down {
    margin-top: 0;
  }

  .numbig {
    font-family: Foundersgrotesk Light, sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: .9em;
  }

  .numbig.bigger {
    font-size: 35px;
    line-height: 60px;
  }

  .swiper {
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 0;
    display: flex;
  }

  .swiper.is-next {
    padding-right: 0;
    overflow: visible;
  }

  .hiddeninfo1 {
    flex: 0 auto;
    width: 99.9999%;
    max-width: none;
    font-size: 13px;
    line-height: 1.4em;
    display: block;
  }

  .detalleprox {
    font-weight: 300;
  }

  .swiper-wrapper.is-next {
    flex: 0 auto;
    height: auto;
    overflow: visible;
  }

  .colsdiferentes {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-top: 0;
  }

  .parrafosbloques {
    flex: 0 auto;
    width: auto;
    max-width: none;
    font-size: 14px;
  }

  .parrafosbloques.alindcha {
    font-size: 14px;
  }

  .parrafosbloques.alindcha.absolute {
    font-size: 20px;
  }

  .lynx-icon-arrow {
    width: 30px;
    height: 30px;
  }

  .databignumbers.lottie._100 {
    padding: 20px;
  }

  .destacados {
    flex-wrap: nowrap;
    flex: 0 auto;
    place-content: center flex-start;
    align-self: auto;
    width: 100%;
    max-width: none;
    padding-top: 0;
    font-size: 12px;
    display: block;
  }

  .pie {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 11px;
    line-height: 16px;
  }

  .intrrosub {
    flex: 0 auto;
    width: auto;
    max-width: none;
    font-size: 14px;
    line-height: 1.5em;
  }

  .flex-block-28 {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    flex-flow: row;
    width: 100%;
  }

  .before {
    width: 100%;
  }

  .flashlottie._1, .flashlottie.bigger {
    width: 8px;
    display: none;
  }

  .flex-block-29 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .flex-block-30 {
    flex-flow: column;
  }

  .div-block-65-copy {
    flex-flow: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-top: 0;
    display: flex;
  }

  .subt1 {
    margin-bottom: 0;
  }

  .copyright {
    color: var(--black);
    margin-top: 0;
    margin-left: 2px;
    font-family: DM Sans, sans-serif;
    font-size: 10vw;
    font-weight: 300;
  }

  .lottie-animation-13 {
    width: 15%;
    margin-top: -3px;
    margin-left: -6px;
    margin-right: 0;
  }

  .allflash {
    top: -29px;
  }

  .solutions {
    letter-spacing: .1em;
    font-size: 3.5vw;
    font-weight: 500;
  }

  .solutions.nopadd {
    font-size: 3.5vw;
  }

  .lottiedemo {
    margin-bottom: 10px;
    padding: 0;
  }

  .initialtext {
    width: 90%;
    padding-top: 0;
    font-size: 4vw;
    line-height: 1.3em;
    display: flex;
  }

  .initialtext.hidden {
    margin-top: 0;
    margin-bottom: 5px;
    padding-top: 0;
    font-size: 3.7vw;
    font-weight: 300;
    line-height: 1.25em;
    display: block;
  }

  .initialtext.second {
    margin-top: 0;
    margin-bottom: 5px;
    padding-top: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .secondtext {
    order: 1;
    width: 90%;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 4vw;
    line-height: 1.4em;
    display: block;
  }

  .secondtext.hidden {
    margin-top: 0;
    margin-bottom: 5px;
    padding-top: 0;
    font-size: 3.7vw;
    font-weight: 300;
    line-height: 1.25em;
    display: block;
  }

  .secondtext.second {
    margin-top: 0;
    margin-bottom: 5px;
    padding-top: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .flex-block-32 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: none;
    top: 40%;
  }

  .magnetoexplicacion0-5 {
    margin-bottom: 0;
  }

  .button-sol {
    text-align: center;
    flex: 0 auto;
    align-self: center;
    margin-top: 5px;
    margin-left: 0;
    padding: 0;
    font-size: 18px;
  }

  .button-sol.grey {
    background-color: #b6b6b6;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 13px;
  }

  .button-sol.betasson {
    margin-top: 5px;
  }

  .flex-block-33 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
    margin-bottom: 5px;
    padding-bottom: 0;
    line-height: 20em;
  }

  .lottiedemo-2 {
    padding: 0;
  }

  .magnetolootiesmall {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lottietitle {
    order: 0;
    width: 25vw;
    margin-bottom: 10px;
    margin-left: 10px;
    display: flex;
    position: static;
    top: 40px;
    right: -9%;
    overflow: hidden;
  }

  .lottietitle._1, .lottietitle.bigger {
    width: 8px;
    display: none;
  }

  .beleiveus {
    text-align: center;
    letter-spacing: .6px;
    align-self: center;
    margin-top: 0;
    font-size: 4.3vw;
    font-weight: 300;
    line-height: 1.4em;
    display: block;
  }

  .beleiveus.magic {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-end;
    font-size: 13vw;
    line-height: 1.1em;
  }

  .beleiveus.last {
    letter-spacing: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
  }

  .beleiveus.mag {
    letter-spacing: 0;
    text-indent: 0;
    flex: 0 auto;
    width: auto;
    padding-left: 0;
    font-size: 20vw;
    font-weight: 900;
    display: block;
  }

  .beleiveus.neto {
    letter-spacing: -.05em;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -1px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .beleiveus.free {
    text-align: left;
    letter-spacing: 0;
    text-indent: -2px;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 13vw;
    line-height: 1.1em;
  }

  .beleiveus.lane {
    letter-spacing: -1.2vw;
    text-indent: -3px;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 26vw;
    font-weight: 900;
  }

  .beleiveus.fds {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-start;
    font-size: 13vw;
    line-height: .7em;
  }

  .beleiveus.ma {
    text-align: center;
    letter-spacing: -.05em;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .beleiveus.o {
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .beleiveus.small {
    text-align: center;
    align-self: center;
    margin-bottom: 10px;
    font-size: 6vw;
  }

  .beleiveus.smaller {
    letter-spacing: .04em;
    width: 85%;
    margin-bottom: 0;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.4em;
  }

  .text-span-68 {
    font-weight: 600;
  }

  .flex-block-34 {
    padding-top: 0;
    padding-bottom: 15px;
  }

  .leyenda {
    text-align: center;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2em;
    display: flex;
  }

  .leyenda.primero {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .leyenda.primero.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .leyenda.primero.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .leyenda.primero.segundo.intro {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-self: flex-start;
    max-width: none;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 12px;
  }

  .leyenda.primero.segundo.top {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    align-self: center;
    max-width: none;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3em;
  }

  .leyenda.primero.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .leyenda.primero.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.primero.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .leyenda.primero.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.primero.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .leyenda.primero.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .leyenda.primero.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.relativebig {
    margin-left: 0;
    font-size: 22px;
    line-height: 1.1em;
  }

  .leyenda.relativebig.segundo {
    width: 100%;
    max-width: none;
    padding-left: 0;
  }

  .leyenda.relativebig.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .leyenda.relativebig.medio {
    line-height: 1.1em;
  }

  .leyenda.center {
    font-size: 12px;
  }

  .leyenda.nestappfirst {
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .leyenda.nestappfirst.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .leyenda.nestappfirst.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .leyenda.nestappfirst.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.nestappfirst.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .leyenda.nestappfirst.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.nestappfirst.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .leyenda.nestappfirst.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.nestappfirst.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .leyenda.nestappfirst.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .leyenda.nestappfirst.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.right {
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    font-family: Foundersgrotesk Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1em;
  }

  .leyenda.right.segundo {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .leyenda.right.segundo.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1em;
  }

  .leyenda.right.segundo.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.right.medio {
    width: auto;
    font-size: 22px;
    line-height: 1.1em;
  }

  .leyenda.right.segundo-copy {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .leyenda.right.segundo-copy.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .leyenda.right.segundo-copy.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.right.nest {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .leyenda.right.nest.ultimo {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .leyenda.right.nest.intro {
    margin-bottom: 0;
    padding-right: 0;
  }

  .leyenda.derecha {
    font-size: 12px;
  }

  .leyenda.white {
    font-size: 11px;
    line-height: 1.5em;
  }

  .price {
    align-self: center;
    margin-bottom: 0;
  }

  .techmockups {
    text-align: center;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 14vw;
    display: flex;
  }

  .techmockups.magic {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-end;
    font-size: 13vw;
    line-height: 1.1em;
  }

  .techmockups.last {
    letter-spacing: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 7vw;
  }

  .techmockups.mag {
    letter-spacing: 0;
    text-indent: 0;
    flex: 0 auto;
    width: auto;
    padding-left: 0;
    font-size: 20vw;
    font-weight: 900;
    display: block;
  }

  .techmockups.neto {
    letter-spacing: -.05em;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -1px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .techmockups.free {
    text-align: left;
    letter-spacing: 0;
    text-indent: -2px;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 13vw;
    line-height: 1.1em;
  }

  .techmockups.lane {
    letter-spacing: -1.2vw;
    text-indent: -3px;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 26vw;
    font-weight: 900;
  }

  .techmockups.fds {
    text-align: left;
    letter-spacing: 0;
    text-indent: 0;
    align-self: flex-start;
    font-size: 13vw;
    line-height: .7em;
  }

  .techmockups.ma {
    text-align: center;
    letter-spacing: -.05em;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .techmockups.o {
    text-align: center;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .techmockups.mockups {
    text-align: center;
    letter-spacing: -.05em;
    text-indent: 0;
    flex: 0 auto;
    align-self: flex-start;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2px;
    padding-right: 0;
    font-family: Mona Sans, sans-serif;
    font-size: 16vw;
    font-weight: 600;
    line-height: .88em;
  }

  .text-span-69 {
    display: none;
  }

  .div-block-89 {
    height: 50px;
  }

  .heading-9 {
    font-size: 4.5vw;
    font-weight: 400;
  }

  .solutions-2 {
    letter-spacing: .1em;
    margin-bottom: 10px;
    font-size: 3.5vw;
    font-weight: 500;
  }

  .flex-block-35 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 100%;
    padding: 18px 17px;
  }

  .flex-block-35.dos {
    padding: 18px 17px;
  }

  .flex-block-36 {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .whiteon {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    padding: 20px 15px 18px;
  }

  .top {
    background-image: url('../images/flashBLANCO.svg');
    background-size: cover;
    width: 100%;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .subt_top {
    padding-top: 0;
    padding-bottom: 15px;
  }
}

#w-node-cf33e9c8-9279-47f5-59d4-a268c5296fac-586c52b3, #w-node-cf33e9c8-9279-47f5-59d4-a268c5297048-586c52b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a00ae685-c4c6-b1e9-6559-91da5b2ddf26-586c52b3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a00ae685-c4c6-b1e9-6559-91da5b2ddf2b-586c52b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b0eba01a-7a79-2aa6-5910-4f60ad1caa0e-586c52b3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b0eba01a-7a79-2aa6-5910-4f60ad1caa13-586c52b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8629038-abf3-0538-18b3-75bf1f65894b-586c52b3 {
  order: 9999;
  align-self: center;
}

#w-node-_954dfdca-50ca-1e9f-5091-80179fe7f311-586c52b3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: center;
}

#w-node-d59bcd10-b0b6-c898-2e1a-3c1006118760-586c52b4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-b22117c3-776e-1703-b34c-4be14996c5f0-586c52b3 {
    align-self: center;
  }

  #w-node-d59bcd10-b0b6-c898-2e1a-3c1006118760-586c52b4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_471a8927-ac60-84eb-bdc9-3cbb7ca41997-586c52b3, #w-node-_1e026723-d423-ff40-8e98-2dbdb5e00c27-586c52b3, #w-node-_0d6c2270-d871-a447-a594-d734e48cca5d-586c52b3 {
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a00ae685-c4c6-b1e9-6559-91da5b2ddf2b-586c52b3, #w-node-a00ae685-c4c6-b1e9-6559-91da5b2ddf2f-586c52b3, #w-node-a00ae685-c4c6-b1e9-6559-91da5b2ddf33-586c52b3, #w-node-b0eba01a-7a79-2aa6-5910-4f60ad1caa13-586c52b3, #w-node-b0eba01a-7a79-2aa6-5910-4f60ad1caa17-586c52b3, #w-node-b0eba01a-7a79-2aa6-5910-4f60ad1caa1b-586c52b3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d8629038-abf3-0538-18b3-75bf1f65894b-586c52b3 {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-a27ade5d-83b4-5f81-ecd8-e9b4aaa2b7ba-586c52b3, #w-node-_471a8927-ac60-84eb-bdc9-3cbb7ca41997-586c52b3, #w-node-_1e026723-d423-ff40-8e98-2dbdb5e00c27-586c52b3, #w-node-_0d6c2270-d871-a447-a594-d734e48cca5d-586c52b3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: auto;
  }

  #w-node-bb4aa143-9744-9ce5-42e4-06769a6db16b-586c52b3, #w-node-_7949bbdd-202b-24cd-9257-3942b00fb458-586c52b3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b22117c3-776e-1703-b34c-4be14996c5f0-586c52b3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-_962e6140-bd3d-aa1c-7509-1487350327c2-586c52b4, #w-node-_3063751e-1179-1a92-e47d-4865de8aab73-586c52b4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: stretch;
  }

  #w-node-d59bcd10-b0b6-c898-2e1a-3c1006118760-586c52b4 {
    grid-area: 2 / 1 / 3 / 3;
  }
}


@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-Thin.woff2') format('woff2'), url('../fonts/Dominique-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bonto Variable';
  src: url('../fonts/Bonto-Variable-Regular.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-Black.ttf') format('truetype'), url('../fonts/Dominique-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-BlackItalic.ttf') format('truetype'), url('../fonts/Dominique-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-Bold.ttf') format('truetype'), url('../fonts/Dominique-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dominique';
  src: url('../fonts/Dominique-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Foundersgrotesk Medium';
  src: url('../fonts/FoundersGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Foundersgrotesk Regular';
  src: url('../fonts/FoundersGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Foundersgrotesk Light';
  src: url('../fonts/FoundersGrotesk-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Latinotype juana alt';
  src: url('../fonts/Latinotype---Juana-Alt-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}