:root {
  --background--warm: #f4f3f1;
  --contrast--primary-black: #262626;
  --contrast--primary: white;
  --ed3237: #ed3237;
  --outline--primary-black-0-20: #26262633;
  --brand--light: #2f5b3c;
  --outline--primary-black-0-40: #26262666;
  --outline--primary-0-40: #fff6;
  --outline--primary-0-20: #fff3;
  --opacity-0: #fff0;
  --brand--outline: #2f5b3c66;
}

#semilleroid {
    padding-bottom: 20px;
    padding-top: 20px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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;
}

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

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background--warm);
  color: var(--contrast--primary-black);
  font-family: Epilogue, sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
  text-decoration: none;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.5rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 125%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 135%;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--contrast--primary-black);
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 1rem;
}

label {
  margin-bottom: 0;
}

figure {
  margin-bottom: 10px;
}

.navbar {
  z-index: 150;
  background-color: #fff0;
  background-image: linear-gradient(270deg, #ed3237, #fff0);
}

.container {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.navbar-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.menu-button {
  background-color: var(--contrast--primary);
  padding: 1rem;
  transition: background-color .25s;
  display: none;
}

.menu-button:hover {
  background-color: var(--background--warm);
}

.menu-button.w--open {
  background-color: var(--contrast--primary);
}

.menu-button.w--open:hover {
  background-color: var(--background--warm);
}

.brand.w--current {
  z-index: 100;
  padding-left: 0;
}

.fixed-top {
  z-index: 20000;
  position: fixed;
  inset: 0% 0% auto;
}

.section {
  z-index: 1000;
  display: block;
  position: relative;
}

.section.full-screen {
  background-color: var(--contrast--primary-black);
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.section.bordets-top {
  border-top: 1px solid var(--outline--primary-black-0-20);
}

.banner-gradient {
  z-index: 90;
  background-image: linear-gradient(#080c1000, #080c10cc);
  position: absolute;
  inset: 0%;
}

.position-absolute-bottom {
  z-index: 100;
  position: absolute;
  inset: auto 0% 0%;
}

.padding-6 {
  padding-top: 3rem;
  padding-bottom: 0;
}

.banner-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  place-items: end center;
  width: 100%;
}

.banner-grid.blog {
  grid-template-columns: 2fr 1fr;
}

.color-text-primary {
  color: var(--contrast--primary);
  margin-top: 32px;
}

.padding-0-5 {
  width: auto;
  min-width: 50vw;
  max-width: 700px;
  height: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.paragraph {
  color: var(--contrast--primary-black);
  background-image: none;
}

.paragraph.color-text-primary {
  color: var(--contrast--primary);
  background-image: none;
  font-weight: 400;
}

.paragraph.footer-hover {
  text-decoration: none;
}

.paragraph.footer-hover:hover {
  color: var(--brand--light);
}

.paragraph.color-text-primary-copy, .paragraph.phhh {
  color: var(--contrast--primary);
  font-weight: 400;
}

.menu-item-link {
  text-decoration: none;
}

.action {
  color: var(--contrast--primary);
}

.action:hover, .action.color-text-primary-black {
  color: var(--contrast--primary-black);
}

.action.color-text-primary-black:hover {
  color: var(--background--warm);
}

.action.color-text-primary-black.footer:hover {
  color: var(--brand--light);
}

.sticky-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  padding-bottom: 117px;
}

.sticky-wrapper {
  position: relative;
}

.sticky-wrapper.margin-top-6 {
  z-index: 5;
  justify-content: center;
  align-items: flex-start;
  margin-top: 6rem;
}

.sticky-wrapper.infra, .sticky-wrapper.infra-copy {
  margin-top: 6rem;
}

.sticky-image {
  object-fit: cover;
  width: 100%;
  position: sticky;
  top: 10rem;
}

.sticky-image._1 {
  z-index: 5;
}

.sticky-image._2 {
  z-index: 5;
  margin-top: 1.5rem;
  position: sticky;
}

.sticky-image._3 {
  margin-top: 1.5rem;
}

.sticky-description-wrapper {
  position: sticky;
  top: 10rem;
}

.margin-top-1 {
  margin-top: 1rem;
}

.margin-top-2 {
  margin-top: 2rem;
}

.button-wrapper {
  z-index: 10;
  border: 1px solid var(--outline--primary-black-0-40);
  margin-bottom: 33px;
  padding: .88rem 1rem .62rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.button-wrapper.secondary {
  border-color: var(--outline--primary-0-40);
  color: var(--contrast--primary);
  padding-right: 1.5rem;
  line-height: 133%;
  transition: background-color .25s;
  display: inline-block;
}

.button-wrapper.secondary:hover {
  border-color: var(--contrast--primary);
  background-color: var(--contrast--primary);
  color: var(--contrast--primary-black);
}

.button-wrapper.padding-right-1-5 {
  padding-right: 1.5rem;
}

.gap-0-5-horizontal {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.layout-left {
  max-width: 41.25rem;
}

.margin-top-4 {
  z-index: 5;
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.three-columns {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-wrapper {
  position: relative;
}

.padding-3-full {
  padding: 3rem;
}

.align-center {
  text-align: center;
}

.grid-template-columns {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

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

.cover-image.width-25 {
  max-width: 25rem;
}

.cover-image.width-30 {
  max-width: 30rem;
}

.cover-image.min-h20 {
  z-index: 5;
  color: var(--contrast--primary-black);
  object-fit: contain;
  min-height: 20rem;
  position: relative;
}

.cover-image.neww {
  max-width: 100%;
  min-height: 20rem;
}

.grid-template-inverse {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
}

.overflow-hidden {
  width: 100%;
  overflow: hidden;
}

.overflow-hidden._2 {
  width: auto;
}

.marquee-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marquee-bottom-train {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.info-card {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--contrast--primary);
  color: var(--contrast--primary-black);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  text-decoration: none;
  transition: box-shadow .25s;
  display: flex;
}

.info-card:hover {
  box-shadow: 0 16px 32px #29252440;
}

.paragraph-secondary {
  font-size: 1rem;
}

.paragraph-secondary.footer-hover:hover {
  color: var(--brand--light);
}

.position-absolute-full {
  position: absolute;
  inset: 0%;
}

.cta-center-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.max-w-41-25 {
  width: 100%;
  max-width: 41.25rem;
}

.cta-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.submit-button {
  background-color: var(--contrast--primary);
  color: var(--contrast--primary-black);
  padding: 1.38rem 2rem 1.13rem;
  line-height: 1.5rem;
  transition: background-color .25s;
}

.submit-button:hover {
  background-color: var(--contrast--primary-black);
  color: var(--contrast--primary);
}

.submit-button.full-width {
  width: 100%;
}

.cta-field {
  border: 1px solid var(--outline--primary-0-40);
  background-color: var(--outline--primary-0-20);
  color: var(--contrast--primary);
  min-height: 4rem;
  margin-bottom: 0;
  padding: 1.25rem 1rem 1.06rem;
  font-family: Epilogue, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
}

.cta-field:focus {
  border-color: var(--contrast--primary);
}

.cta-field::placeholder {
  color: var(--contrast--primary);
  font-family: Epilogue, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
}

.blog-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.blog-link-wrapper {
  color: var(--contrast--primary-black);
  text-decoration: none;
}

.quatre-olumns {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.padding-1-25 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
}

.gap-2-horizontal {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
}

.footer-link {
  color: var(--contrast--primary-black);
  text-decoration: none;
}

.footer-icon {
  transition: all .25s;
}

.footer-icon:hover {
  transform: translate(0, -4px);
}

.margin-top-1-5 {
  margin-top: 1.5rem;
}

.back-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--outline--primary-0-40);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  transition: background-color .25s;
  position: relative;
}

.back-wrapper:hover {
  background-color: var(--contrast--primary);
}

.back-wrapper.w--current {
  background-image: linear-gradient(#00000080, #00000080);
}

.background-primary {
  background-color: var(--contrast--primary);
}

.gap-3-horizontal {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.toc-item {
  border: 1px solid var(--outline--primary-black-0-40);
  background-color: var(--opacity-0);
  color: var(--contrast--primary-black);
  border-radius: 6.25rem;
  padding: .88rem 1.5rem .62rem;
  transition: all .25s;
}

.toc-item:hover {
  border-color: var(--brand--outline);
  color: var(--brand--light);
}

.toc-item.w--current {
  border-color: var(--brand--light);
  background-color: var(--brand--light);
  color: var(--contrast--primary);
}

.toc-item.btnsemillero {
  background-color: #f4f3f1;
}

.toc-item.btnsemillero:hover {
  color: var(--ed3237);
}

.toc-item.btninverna {
  color: var(--contrast--primary-black);
  background-color: #f4f3f1;
}

.toc-item.btninverna:hover {
  color: var(--ed3237);
}

.padding-top-6 {
  z-index: 20;
  padding-top: 6rem;
  position: relative;
}

.category-wrapper {
  text-decoration: none;
}

.hero-header {
  object-fit: cover;
  background-color: #fff;
  height: 100svh;
  overflow: hidden;
}

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

.left-arrow, .right-arrow, .slide-nav {
  display: none;
}

.tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.tabs-content.margin-top-6 {
  margin-top: 6rem;
}

.main-image {
  z-index: 80;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.main-image.mobile {
  display: none;
}

.case-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.case-list.grid-gap-1 {
  grid-template-columns: 1fr 1fr;
}

.place-wrapper {
  color: var(--contrast--primary-black);
  text-decoration: none;
  position: relative;
}

.post-body h3 {
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.post-body p {
  margin-bottom: 2rem;
}

.post-body figure {
  margin-bottom: 3rem;
}

.post-body h4 {
  margin-bottom: 1.5rem;
}

.post-body h5 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.post-body h6 {
  margin-bottom: 1rem;
}

.post-body h2 {
  margin-bottom: 1.5rem;
}

.case-cta-wrapper {
  background-color: var(--contrast--primary);
  padding: 2rem;
}

.cta-item-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-top: 1px solid var(--outline--primary-black-0-40);
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.cta-text-block {
  padding-top: .88rem;
  padding-bottom: .62rem;
  text-decoration: none;
}

.cta-icon-wrapper {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.gallery-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-link {
  width: 100%;
}

.layout-center {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.nav-menu {
  background-color: var(--background--warm);
  text-align: left;
  width: 100%;
  height: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: none;
}

.nav-menu-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center stretch;
  height: auto;
  display: grid;
}

.nav-item-wrapper {
  border: 0 solid #888;
  border-radius: 0;
  padding: 1rem;
}

.nav-link {
  color: var(--contrast--primary-black);
  text-decoration: none;
}

.navbar-logo-hide, .close-icon {
  display: none;
}

.cta-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.cta-wrapper {
  background-color: var(--contrast--primary);
  padding: 2rem;
}

.fixed-wrapper {
  z-index: 200;
  background-color: var(--contrast--primary);
  position: fixed;
  inset: 0% 0% auto;
  transform: translate(0, -100%);
}

.gap-2-social-icons {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
}

.form-block {
  margin-bottom: 0;
}

.utility-page-wrap {
  background-image: url('../images/Fixed-aspect-ratio-spacer.png');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  position: relative;
}

.utility-page-wrap._404 {
  background-image: url('../images/manu-ros-deNw3RxjsT4-unsplash.webp');
  background-position: 50%;
  background-repeat: no-repeat;
}

.utility-page-content {
  z-index: 100;
  text-align: center;
  flex-direction: column;
  width: 30rem;
  display: flex;
  position: relative;
}

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

.arrow-block {
  z-index: 5;
  background-image: url('../images/arrow_right_alt_24dp_5F6368_FILL0_wght200_GRAD0_opsz24-2-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 3rem 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 4rem;
  height: 4rem;
  padding: .5rem;
  transition: all .25s;
  position: relative;
}

.arrow-block:hover {
  background-image: url('../images/arrow_right_alt_24dp_5F6368_FILL0_wght200_GRAD0_opsz24-2-5.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 3rem 3rem;
}

.button-background-hover {
  z-index: 2;
  background-color: var(--contrast--primary-black);
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.button-background-hover.color-brand-light {
  background-color: var(--brand--light);
}

.position-relative {
  z-index: 10;
  position: relative;
}

.arrow-layout-none {
  display: none;
}

.hover-arrow {
  width: 2rem;
  height: 2rem;
}

.hover-arrow.size-3 {
  width: 3rem;
  height: 3rem;
}

.fade-in-button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.padding-right-4-5 {
  padding-right: 4.5rem;
}

.padding-left-4-5 {
  padding-left: 4.5rem;
}

.success-message {
  background-color: var(--contrast--primary);
  text-align: left;
  padding: 1.25rem 1rem 1.06rem;
}

.error-message {
  background-color: var(--background--warm);
  margin-top: 1.5rem;
  padding: 1.25rem 1rem 1.06rem;
}

.cta-icon-none {
  display: none;
}

.two-columns {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
}

.gap-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: space-between;
  align-items: stretch;
}

.square {
  border: 1px solid var(--outline--primary-black-0-40);
  background-color: var(--background--warm);
  min-width: 5.625rem;
  min-height: 5.625rem;
}

.square.contrast-primary {
  border: 1px solid var(--outline--primary-black-0-40);
  background-color: var(--contrast--primary);
}

.square.contrast-primary-black {
  border: 1px solid var(--contrast--primary-black);
  background-color: var(--contrast--primary-black);
}

.square.brand-light {
  background-color: var(--brand--light);
}

.square.brand-outline {
  background-color: var(--brand--outline);
}

.square.outline-primary-0-40 {
  background-color: var(--outline--primary-black-0-40);
}

.square.outline-primary-0-20 {
  background-color: var(--outline--primary-black-0-20);
}

.square.outline-0-20 {
  border: 1px solid var(--outline--primary-black-0-20);
  background-color: var(--outline--primary-0-20);
}

.square.outline-0-40 {
  border: 1px solid var(--outline--primary-black-0-40);
  background-color: var(--outline--primary-0-20);
}

.desktop-layout-none {
  display: none;
}

.toc-item-block {
  z-index: 5;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  position: relative;
}

.gap-2-horizontal-color {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
}

.gap-1-button-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.link-block {
  display: block;
}

.padding-bottom-6 {
  padding-bottom: 6rem;
}

.margin-top-5 {
  margin-top: 5rem;
}

.topics-wrapper {
  background-color: var(--contrast--primary-black);
  color: var(--contrast--primary-black);
  text-decoration: none;
  position: relative;
}

.div-block-8 {
  width: 100%;
  margin-top: 134px;
  position: absolute;
  inset: 30% 50% 50% 32%;
}

.animation3, .animation3-copy {
  outline-offset: 0px;
  color: #fefefe;
  letter-spacing: -3px;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #ed323700;
  text-overflow: clip;
  overflow-wrap: anywhere;
  outline: 3px #fefefe;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.animation5 {
  outline-offset: 0px;
  color: #fefefe;
  letter-spacing: -3px;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: #ed323700;
  text-overflow: clip;
  overflow-wrap: anywhere;
  outline: 3px #fefefe;
  width: auto;
  height: auto;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  position: static;
  inset: 0% auto auto 0%;
}

.div-block-5 {
  background-color: #ed3237;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  margin-top: 4rem;
  padding-left: 44px;
  padding-right: 44px;
  display: flex;
}

.heading-6 {
  color: #fff;
}

.margin-top-1-copy {
  flex-flow: column;
  width: auto;
  height: 100%;
  margin-top: 1rem;
  display: flex;
}

.link-block-3 {
  background-color: #262626;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 2rem;
  text-decoration: none;
  display: flex;
}

.paragraph-secondary-2 {
  color: #fff;
  text-overflow: clip;
  white-space: nowrap;
  word-break: keep-all;
  width: 100%;
  min-width: 100%;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.paragraph-secondary-2:hover {
  color: #ffa8a8;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.auditorias.full-screen {
  background-color: var(--contrast--primary-black);
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.auditorias.bordets-top {
  border-top: 1px solid var(--outline--primary-black-0-20);
}

.variedades.full-screen {
  background-color: var(--contrast--primary-black);
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.variedades.bordets-top {
  border-top: 1px solid var(--outline--primary-black-0-20);
}

.cover-image-2 {
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  min-width: 500px;
  height: 100%;
}

.cover-image-2.width-25 {
  object-fit: fill;
  border-radius: 100%;
  width: 50%;
  max-width: 15rem;
  height: 50%;
}

.marquee-bottom-train-2 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-copy-copy {
  background-color: #0b0b0b;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.div-block-6 {
  width: 300px;
}

.heading-9 {
  color: #f14246;
  background-color: #0b0b0b;
}

.marquee-wrapper-2 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  display: flex;
}

.margin-top-6 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 4rem;
  display: flex;
}

.padding-7 {
  width: 100%;
  margin-top: 0;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.overflow-hidden-2 {
  width: 100%;
  min-width: 200px;
  overflow: hidden;
}

.filosofia {
  background-color: #0b0b0b;
}

.video-2 {
  z-index: 199;
  width: 100%;
  height: 100%;
  max-height: 200px;
  overflow: hidden;
}

.p {
  background-color: #00000080;
  padding: 3rem;
  position: static;
}

.padding-0-5-copy {
  width: auto;
  min-width: auto;
  max-width: 700px;
  height: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.div-block-9 {
  background-color: #ed3237;
  height: 0;
}

.banner-grid-copy {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  place-items: end center;
  width: 100%;
}

.banner-grid-copy.blog {
  grid-template-columns: 2fr 1fr;
}

.div {
  z-index: 100;
  position: absolute;
  inset: auto 0% 0%;
}

.margin-top-2-copy {
  margin-top: 2rem;
}

.paragraph-secondary-2-copy {
  color: #fff;
  text-overflow: clip;
  white-space: nowrap;
  word-break: keep-all;
  width: 100%;
  min-width: 100%;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.padding-6-copy, .otro-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.container-copy {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.div-copy {
  z-index: 2000;
  position: absolute;
  inset: -125px 0% 0%;
}

.paragraph-secondary-2-copy {
  color: #fff;
  text-overflow: clip;
  white-space: nowrap;
  word-break: keep-all;
  justify-content: center;
  align-items: center;
  width: 300px;
  min-width: auto;
  max-width: 300px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.paragraph-secondary-2-copy:hover {
  color: #ffa8a8;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
}

.paragraph-secondary-2-copy-copy {
  color: #fff;
  text-overflow: clip;
  white-space: nowrap;
  word-break: keep-all;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-width: 100%;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.paragraph-secondary-2-copy-copy:hover {
  color: #ffa8a8;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
}

.fff {
  margin-top: 2rem;
  display: none;
}

.margin-top-1-copy-copy {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-flow: row;
  width: auto;
  height: 100%;
  margin-top: 1rem;
  display: flex;
}

.banner-gradient-copy {
  z-index: 90;
  background-image: linear-gradient(#080c1000, #080c10cc);
  position: absolute;
  inset: 0%;
}

.padding-6-copy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: none;
}

.container-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: none;
}

.sobre {
  z-index: 100;
  max-width: 120rem;
  margin-top: 51px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: block;
  position: relative;
}

.sticky-wrapper-copy-infra {
  position: relative;
}

.sticky-wrapper-copy-infra.margin-top-6, .sticky-wrapper-copy-infra.infra, .sticky-wrapper-copy-infra.infra-copy {
  margin-top: 6rem;
}

.section-vieja {
  display: none;
}

.section-vieja.full-screen {
  background-color: var(--contrast--primary-black);
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.section-vieja.bordets-top {
  border-top: 1px solid var(--outline--primary-black-0-20);
}

.image {
  border-radius: 100%;
}

.fluid-design-custom-css {
  display: flex;
}

.line-drawing-wrapper {
  z-index: 1;
  flex-flow: column;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.line-drawing {
  z-index: 0;
  color: #6b2725;
  width: 100%;
  max-width: 70em;
  height: 100%;
  max-height: 100vw;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 5em 0% 0%;
}

.div-block-10 {
  z-index: 81;
  position: relative;
}

.div-block-11 {
  z-index: 200;
  display: none;
  position: relative;
}

.div-block-12 {
  z-index: 100;
  position: relative;
}

.div-block-13 {
  background-color: #f4f3f1;
}

.div-block-10-copy {
  z-index: 81;
  background-color: #f4f3f1;
  position: relative;
}

.lab {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: none;
}

.section-copy {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
  position: relative;
}

.section-copy.full-screen {
  background-color: var(--contrast--primary-black);
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.section-copy.bordets-top {
  border-top: 1px solid var(--outline--primary-black-0-20);
}

.arrow-block-copy-2 {
  z-index: 5;
  background-color: #262626;
  background-image: url('../images/arrow_right_alt_24dp_5F6368_FILL0_wght200_GRAD0_opsz24-2-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 3rem 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 4rem;
  height: 4rem;
  padding: .5rem;
  transition: all .25s;
  position: relative;
}

.arrow-block-copy-2:hover {
  background-image: url('../images/arrow_right_alt_24dp_5F6368_FILL0_wght200_GRAD0_opsz24-2-5.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 3rem 3rem;
}

.heading-11 {
  margin-top: 31px;
}

.auditorias-copy {
  display: none;
}

.auditorias-copy.full-screen {
  background-color: var(--contrast--primary-black);
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.auditorias-copy.bordets-top {
  border-top: 1px solid var(--outline--primary-black-0-20);
}

.variedades-copy {
  display: none;
}

.variedades-copy.full-screen {
  background-color: var(--contrast--primary-black);
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.variedades-copy.bordets-top {
  border-top: 1px solid var(--outline--primary-black-0-20);
}

.section-2 {
  display: none;
}

.ig {
  color: #fff;
  text-overflow: clip;
  white-space: nowrap;
  word-break: keep-all;
  width: 100%;
  min-width: 100%;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
}

.ig:hover {
  color: #ffa8a8;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
}

.paragraph-secondary-2-copy-copy-copy {
  color: #fff;
  text-overflow: clip;
  white-space: nowrap;
  word-break: keep-all;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-width: 100%;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.paragraph-secondary-2-copy-copy-copy:hover {
  color: #ffa8a8;
  text-align: left;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 1.5rem;
}

.link-block-3-copy {
  background-color: #262626;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 2rem;
  text-decoration: none;
  display: flex;
}

.up {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 0;
  background-color: #f000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: fixed;
  inset: auto 2% 1% auto;
}

.back-wrapper-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--outline--primary-0-40);
  background-color: var(--ed3237);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  transition: background-color .25s;
  position: relative;
  transform: rotate(90deg);
}

.back-wrapper-copy:hover {
  background-color: var(--contrast--primary);
}

.back-wrapper-copy.w--current {
  background-image: linear-gradient(to bottom, var(--ed3237), var(--ed3237));
  transform: rotate(90deg);
}

.grid-template-columns-copy {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 6rem;
}

@media screen and (min-width: 1280px) {
  .cover-image.min-h20 {
    object-fit: contain;
  }

  .div-block-8 {
    margin-left: 77px;
    font-size: 0%;
  }

  .animation3, .animation3-copy, .animation5 {
    font-family: PT Serif, serif;
    font-size: 9rem;
  }

  .image {
    border-radius: 100%;
  }

  .fluid-design-custom-css {
    display: block;
  }
}

@media screen and (min-width: 1440px) {
  .banner-gradient {
    height: auto;
  }

  .cover-image {
    height: 400px;
  }

  .cover-image.min-h20 {
    object-fit: contain;
  }

  .link-block {
    height: 400px;
  }

  .div-block-9 {
    background-color: #ed3237;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    display: flex;
  }

  .margin-top-1-copy-copy {
    justify-content: center;
    align-items: center;
  }

  .banner-gradient-copy {
    height: auto;
  }

  .image {
    border-radius: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .navbar {
    background-color: #fff0;
    background-image: linear-gradient(96deg, #ed323700, #ed3237);
    min-height: 60px;
  }

  .container, .navbar-grid {
    height: 100%;
  }

  .navbar-logo {
    color: #ed3237;
    width: 100%;
    min-width: auto;
    max-width: 15vw;
    margin-bottom: 2rem;
  }

  .banner-gradient {
    height: 100%;
  }

  .banner-grid {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-areas: ". Area-2"
                         "Area .";
  }

  .color-text-primary {
    margin-top: 0;
  }

  .menu-item-wrapper.tablet-none, .menu-item-link {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .action.color-text-primary-black {
    font-size: 1.5rem;
  }

  .action.color-text-primary-black:hover {
    color: var(--background--warm);
  }

  .cover-image {
    height: 500px;
  }

  .cover-image.min-h20, .cover-image.neww {
    border-radius: 20px;
  }

  .overflow-hidden {
    filter: drop-shadow(0 2px 14px #000000b3);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .paragraph-secondary {
    font-size: 2rem;
  }

  .blog-item {
    padding: 4rem;
  }

  .blog-link-wrapper {
    background-color: #fff;
    border-radius: 12px;
  }

  .gap-3-horizontal {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .case-list.grid-gap-1 {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    display: none;
  }

  .fade-in-heading {
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
  }

  .text-span {
    letter-spacing: 1.5px;
    text-indent: 0;
    column-count: 0;
    font-size: 1.5rem;
  }

  .div-block-5 {
    width: auto;
    max-width: 500px;
  }

  .margin-top-1-copy {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .link-block-3 {
    white-space: nowrap;
    background-color: #262626;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 2rem;
    display: flex;
  }

  .paragraph-secondary-2 {
    white-space: nowrap;
    word-break: normal;
    width: 100%;
    min-width: auto;
    max-width: 100%;
    font-size: 2rem;
    font-style: normal;
  }

  .paragraph-secondary-2:hover {
    font-size: 2rem;
  }

  .container-2 {
    width: 30px;
    height: 30px;
  }

  .div-block-9 {
    min-width: auto;
    height: 0;
    min-height: auto;
  }

  .banner-grid-copy {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-areas: ". Area-2"
                         "Area .";
  }

  .paragraph-secondary-2-copy {
    width: auto;
    min-width: auto;
    font-size: 2rem;
  }

  .container-copy {
    height: 100%;
  }

  .text-span-2 {
    font-size: 1.5rem;
  }

  .paragraph-secondary-2-copy {
    white-space: nowrap;
    word-break: normal;
    width: auto;
    min-width: auto;
    max-width: 100%;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
  }

  .paragraph-secondary-2-copy:hover {
    color: #e74a4a;
    font-size: 2rem;
  }

  .paragraph-secondary-2-copy-copy {
    width: auto;
    min-width: auto;
    font-size: 2rem;
  }

  .paragraph-secondary-2-copy-copy:hover {
    color: #9af377;
    font-size: 2rem;
  }

  .margin-top-1-copy-copy {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .banner-gradient-copy, .container-copy, .sobre {
    height: 100%;
  }

  .ig {
    white-space: nowrap;
    word-break: normal;
    width: 100%;
    min-width: auto;
    max-width: 100%;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
  }

  .ig:hover {
    font-size: 2rem;
  }

  .paragraph-secondary-2-copy-copy-copy {
    width: auto;
    min-width: auto;
    font-size: 2rem;
    font-weight: 500;
  }

  .paragraph-secondary-2-copy-copy-copy:hover {
    color: #9af377;
    font-size: 2rem;
  }

  .link-block-3-copy {
    white-space: nowrap;
    background-color: #262626;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 2rem;
    display: flex;
  }

  .semillero {
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    background-color: #fff0;
    background-image: linear-gradient(117deg, #0000, #ed3237);
  }

  .navbar-grid {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    background-color: #fff0;
    background-image: none;
  }

  .banner-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .banner-grid.blog {
    grid-template-columns: 1fr;
  }

  .menu-item-wrapper.tablet-none {
    display: none;
  }

  .sticky-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 2fr;
  }

  .sticky-wrapper.padding-left-4-5 {
    padding-left: 0;
  }

  .sticky-image._1, .sticky-image._2, .sticky-image._3 {
    position: relative;
    top: 0;
  }

  .three-columns {
    grid-template-columns: 1fr;
  }

  .grid-template-columns {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 2fr;
  }

  .cover-image.width-25 {
    width: 25rem;
  }

  .cover-image.width-30 {
    width: 30rem;
  }

  .grid-template-inverse {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .marquee-wrapper, .marquee-bottom-train {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .blog-list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .quatre-olumns {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .gap-2-horizontal {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .gap-2-horizontal.tablet-vertical {
    flex-flow: row;
  }

  .image-hero-background {
    object-fit: cover;
  }

  .case-list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .case-list.grid-gap-1 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .gallery-list, .cta-grid {
    grid-template-columns: 1fr;
  }

  .padding-right-4-5 {
    padding-right: 0;
  }

  .padding-left-4-5 {
    padding-left: 0;
  }

  .tablet-layout-none {
    display: none;
  }

  .two-columns {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .two-columns.gab-tablet-1-5 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .desktop-layout-none {
    display: block;
  }

  .toc-item-block {
    flex-flow: row;
  }

  .gap-2-horizontal-color {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .link-block {
    display: block;
  }

  .margin-top-5 {
    margin-top: 4rem;
  }

  .div-block-8 {
    width: 200%;
    padding-bottom: 30px;
    padding-left: 32px;
    font-size: .5rem;
    position: absolute;
    inset: auto 0% 0%;
  }

  .animation3, .animation3-copy, .animation5 {
    font-size: 6rem;
    position: static;
  }

  .div-block-5 {
    margin-bottom: 50px;
  }

  .cover-image-2.width-25 {
    width: 300px;
    min-width: auto;
    height: auto;
  }

  .marquee-bottom-train-2, .marquee-wrapper-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .margin-top-6 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .padding-7 {
    min-width: 100%;
    padding-top: 3rem;
    padding-bottom: 0;
  }

  .overflow-hidden-2 {
    min-width: 200px;
    max-width: 100%;
  }

  .filosofia {
    height: 100%;
  }

  .video-2 {
    margin-bottom: 80px;
  }

  .banner-grid-copy {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .banner-grid-copy.blog {
    grid-template-columns: 1fr;
  }

  .div, .div-copy {
    position: absolute;
    top: -77px;
  }

  .sticky-wrapper-copy-infra.padding-left-4-5 {
    padding-left: 0;
  }

  .image {
    border-radius: 100%;
  }

  .line-drawing {
    padding-left: 15vw;
    padding-right: 15vw;
    top: 0;
  }

  .grid-template-columns-copy {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 2fr;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3rem;
    line-height: 120%;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 122%;
  }

  h3 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 128%;
  }

  .navbar {
    background-image: none;
  }

  .container {
    height: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .menu-button {
    background-color: #ffffff4d;
  }

  .section.full-screen {
    height: 108vh;
    position: relative;
  }

  .position-absolute-bottom {
    height: 100vh;
    top: 71px;
  }

  .padding-6 {
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .banner-grid {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-rows: auto;
    grid-template-columns: auto;
  }

  .sticky-grid {
    grid-template-columns: 1fr;
  }

  .sticky-wrapper.margin-top-6, .sticky-wrapper.infra, .sticky-wrapper.infra-copy {
    margin-top: 4rem;
    display: none;
  }

  .gap-0-5-horizontal {
    justify-content: flex-start;
    width: 100%;
  }

  .margin-top-4 {
    margin-top: 3rem;
  }

  .padding-3-full {
    padding: 2rem;
  }

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

  .cover-image.min-h20, .cover-image.neww {
    min-height: auto;
  }

  .info-card {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .toc-item {
    flex: none;
  }

  .padding-top-6 {
    padding-top: 4rem;
  }

  .hero-header {
    height: 122svh;
  }

  .tabs-menu {
    overflow: auto;
  }

  .tabs-content.margin-top-6 {
    margin-top: 4rem;
  }

  .main-image.mobile {
    display: block;
  }

  .main-image.desktop {
    display: flex;
  }

  .case-list.grid-gap-1 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .case-cta-wrapper {
    padding: 1.5rem;
  }

  .gallery-list {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .hover-case {
    display: flex;
  }

  .nav-menu {
    overflow: auto;
  }

  .nav-menu-grid {
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .nav-item-wrapper {
    padding-top: 1.12rem;
    padding-bottom: .88rem;
  }

  .nav-link {
    justify-content: space-between;
    display: flex;
  }

  .nav-item-list-wrapper {
    display: block;
  }

  .cta-wrapper {
    padding: 1.5rem;
  }

  .mobail-none {
    display: block;
  }

  .menu-item-text {
    font-weight: 600;
    line-height: 150%;
  }

  .utility-page-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fade-in-heading {
    width: 100%;
  }

  .hover-arrow {
    display: none;
  }

  .toc-item-block, .gap-2-horizontal-color {
    flex-flow: column;
  }

  .gap-1-button-block {
    width: 100%;
  }

  .padding-bottom-6 {
    padding-bottom: 4rem;
  }

  .animation3, .animation3-copy, .animation5 {
    text-align: center;
    font-size: 70px;
  }

  .paragraph-secondary-2 {
    text-align: center;
  }

  .container-copy-copy {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .marquee-wrapper-2 {
    flex-flow: column;
  }

  .fade-in-heading-2 {
    width: 100%;
  }

  .margin-top-6 {
    margin-top: 3rem;
  }

  .padding-7 {
    flex-flow: column;
    padding-top: 4rem;
    padding-bottom: 0;
    display: flex;
  }

  .p {
    height: 100%;
  }

  .banner-grid-copy {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-rows: auto;
    grid-template-columns: auto;
  }

  .div {
    height: 100%;
    margin-top: 37px;
  }

  .padding-6-copy, .otro-pad {
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .div-copy {
    height: 100%;
    margin-top: 37px;
  }

  .paragraph-secondary-2-copy {
    text-align: left;
  }

  .margin-top-1-copy-copy {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .padding-6-copy {
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .container-copy, .sobre {
    height: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sticky-wrapper-copy-infra.margin-top-6, .sticky-wrapper-copy-infra.infra, .sticky-wrapper-copy-infra.infra-copy {
    margin-top: 4rem;
    display: none;
  }

  .section-vieja.full-screen {
    height: 108vh;
    position: relative;
  }

  .image {
    border-radius: 100%;
  }

  .lab {
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-copy.full-screen {
    height: 108vh;
    position: relative;
  }

  .ig {
    text-align: center;
  }

  .semillero {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    background-color: #f4f3f100;
    background-image: none;
  }

  .menu-button {
    background-color: #ffffff80;
    background-image: none;
  }

  .brand {
    padding-left: 0;
  }

  .section.full-screen {
    height: 183vh;
  }

  .padding-6 {
    flex-flow: column;
    height: auto;
    margin-top: -33px;
    display: flex;
  }

  .banner-grid {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .margin-top-2 {
    margin-top: 1.5rem;
  }

  .cta-form {
    flex-flow: column;
  }

  .quatre-olumns {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .gap-2-horizontal.tablet-vertical {
    flex-flow: column;
  }

  .footer-icon {
    width: 2rem;
  }

  .hero-header {
    height: 400vw;
  }

  .nav-menu-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .gap-2-social-icons {
    justify-content: space-between;
  }

  .form-block {
    flex-flow: column;
  }

  .gap-1-button-block {
    text-align: center;
    flex-flow: column;
    align-items: stretch;
  }

  .animation3, .animation3-copy, .animation5 {
    letter-spacing: -1px;
    font-family: PT Sans, sans-serif;
    font-size: 46px;
  }

  .div-block-5 {
    background-color: #ed323700;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-top-1-copy {
    justify-content: space-between;
    align-items: center;
    position: static;
  }

  .link-block-3 {
    width: 100%;
    max-width: 100%;
  }

  .paragraph-secondary-2 {
    color: #fff;
    white-space: pre-wrap;
    background-color: #fff0;
    width: auto;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    font-family: Oswald, sans-serif;
    font-size: 13vw;
    font-weight: 600;
  }

  .paragraph-secondary-2:hover {
    color: #fff;
    text-align: center;
    font-size: 13vw;
  }

  .paragraph-secondary-2:active {
    color: #ff77a2;
    text-align: center;
    font-size: 13vw;
  }

  .cover-image-2.width-25 {
    vertical-align: top;
    width: 400px;
    max-width: 100%;
  }

  .marquee-wrapper-2 {
    flex-flow: column-reverse;
    padding-left: 20px;
    padding-right: 20px;
  }

  .fade-in-heading-2 {
    font-size: 3rem;
  }

  .margin-top-6 {
    flex-flow: column;
    width: 90%;
    margin-bottom: 42px;
  }

  .padding-7 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: 1300px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .margin-top-2-copy {
    margin-top: 0;
  }

  .heading-10 {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    display: flex;
  }

  .otro-pad {
    flex-flow: column;
    height: 140vh;
    margin-top: -33px;
    display: flex;
  }

  .container-copy, .div-copy {
    height: 110vh;
  }

  .paragraph-secondary-2-copy {
    color: #fff;
    white-space: pre-wrap;
    background-color: #fff0;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    font-family: Oswald, sans-serif;
    font-size: 9vw;
    font-weight: 600;
  }

  .paragraph-secondary-2-copy:hover {
    color: #fff;
    font-size: 9vw;
  }

  .paragraph-secondary-2-copy:active {
    color: #fa4242;
    font-size: 13vw;
  }

  .paragraph-secondary-2-copy-copy {
    color: #fff;
    white-space: pre-wrap;
    background-color: #262626;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    font-family: Oswald, sans-serif;
    font-size: 13vw;
    font-weight: 600;
  }

  .paragraph-secondary-2-copy-copy:hover {
    color: #fff;
    font-size: 13vw;
  }

  .paragraph-secondary-2-copy-copy:active {
    color: #4dff41;
  }

  .fff {
    margin-top: 1.5rem;
  }

  .margin-top-1-copy-copy {
    justify-content: center;
    align-items: center;
    position: static;
  }

  .padding-6-copy {
    flex-flow: column;
    height: auto;
    margin-top: -33px;
    display: flex;
  }

  .sobre {
    height: 110vh;
  }

  .section-vieja.full-screen {
    height: 183vh;
  }

  .line-drawing-wrapper {
    height: 100%;
    display: none;
  }

  .lab {
    flex-flow: column;
    height: auto;
    margin-top: -33px;
    display: none;
  }

  .section-copy.full-screen {
    height: 183vh;
  }

  .ig {
    color: #fff;
    white-space: pre-wrap;
    background-color: #fff0;
    width: auto;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    font-family: Oswald, sans-serif;
    font-size: 9vw;
    font-weight: 600;
  }

  .ig:hover {
    color: #fff;
    text-align: center;
    font-size: 9vw;
  }

  .ig:active {
    color: #ff77a2;
    text-align: center;
    font-size: 13vw;
  }

  .paragraph-secondary-2-copy-copy-copy {
    color: #fff;
    white-space: pre-wrap;
    background-color: #262626;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    font-family: Oswald, sans-serif;
    font-size: 9vw;
    font-weight: 600;
  }

  .paragraph-secondary-2-copy-copy-copy:hover {
    color: #fff;
    font-size: 9vw;
  }

  .paragraph-secondary-2-copy-copy-copy:active {
    color: #4dff41;
  }

  .link-block-3-copy {
    width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
  }

  .consulta {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    display: flex;
  }
}

#w-node-_245ee968-b026-d622-e6c8-c6d036633868-141a62e1 {
  place-self: end;
}

#w-node-_630cf628-3f13-ab85-86d3-0749605da60c-141a62e1 {
  align-self: end;
}

#w-node-_82181ab4-a966-2792-f674-6510e246f149-141a62e1 {
  place-self: end;
}

#w-node-_82181ab4-a966-2792-f674-6510e246f14a-141a62e1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_950d15e0-9b73-082c-0803-4fa989e0f832-141a62e1, #w-node-_19e6d886-f670-aa38-5f2e-b19db857e8db-141a62e1 {
  align-self: center;
}

#w-node-e94d12da-97c9-fa58-8240-139dd226432b-d2264322 {
  align-self: auto;
}

#w-node-e94d12da-97c9-fa58-8240-139dd226436a-d2264322 {
  justify-self: end;
}

#w-node-_07836ec1-bb72-9fae-3a6b-019f9785e4ab-141a62e8, #w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8012-141a62e9 {
  place-self: end;
}

#w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8013-141a62e9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_9816b1de-a4b6-f302-b371-7c32cf3af299-141a62e9, #w-node-_9816b1de-a4b6-f302-b371-7c32cf3af2ae-141a62e9 {
  align-self: center;
}

#w-node-_7528ec41-7eee-6097-44ce-c362d0a93cdb-141a62ea {
  place-self: end;
}

#w-node-_7528ec41-7eee-6097-44ce-c362d0a93cdc-141a62ea {
  align-self: end;
}

#w-node-fa64f00c-427a-d5f8-5d2c-455df5997868-141a62eb {
  place-self: end;
}

#w-node-fa64f00c-427a-d5f8-5d2c-455df5997869-141a62eb {
  align-self: end;
}

#w-node-_567585e8-c8f8-70e1-01c5-6e5dad805e98-141a62eb, #w-node-cb7f7ddd-921d-dfd9-ece2-9bf39421c7e0-141a62eb, #w-node-_38826c12-400d-daf7-a3f4-3953fd33c37c-141a62eb, #w-node-fcd40409-984e-2886-053d-44e066355ad5-141a62eb {
  align-self: center;
}

#w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8012-141a62ec {
  place-self: end;
}

#w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8013-141a62ec {
  align-self: end;
}

#w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8012-141a62ed {
  place-self: end;
}

#w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8013-141a62ed {
  align-self: end;
}

#w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8012-141a62ee {
  place-self: end;
}

#w-node-_7e33f6d7-cbb8-c90a-04c3-0a072f1d8013-141a62ee {
  align-self: end;
}

#w-node-_71b84f74-1923-bad5-a8ae-afee32a3016e-141a62f0 {
  place-self: end;
}

#w-node-_71b84f74-1923-bad5-a8ae-afee32a3016f-141a62f0 {
  align-self: end;
}

#w-node-_71b84f74-1923-bad5-a8ae-afee32a3016e-141a62f1 {
  place-self: end;
}

#w-node-_71b84f74-1923-bad5-a8ae-afee32a3016f-141a62f1 {
  align-self: end;
}

#w-node-_71b84f74-1923-bad5-a8ae-afee32a3016e-141a62f2 {
  place-self: end;
}

#w-node-_71b84f74-1923-bad5-a8ae-afee32a3016f-141a62f2 {
  align-self: end;
}

#w-node-_6fe71444-d646-d036-d025-03a3f3d5a09c-141a62f4 {
  place-self: end;
}

#w-node-_6fe71444-d646-d036-d025-03a3f3d5a09d-141a62f4 {
  align-self: end;
}

#w-node-_0a4a43a1-5c23-4707-6f3f-8db541852f68-141a62f6 {
  place-self: end;
}

#w-node-b5bf485b-192b-db4d-c748-715d9ca31b47-141a62fb {
  align-self: end;
}

@media screen and (min-width: 1920px) {
  #w-node-e94d12da-97c9-fa58-8240-139dd226436a-d2264322 {
    align-self: auto;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_8151178a-e163-96ae-293c-e7b4b1712736-141a62e1, #w-node-_58bb9099-9ea9-54ef-7437-b52334132d29-141a62e1, #w-node-_19e6d886-f670-aa38-5f2e-b19db857e8da-141a62e1, #w-node-_16c43506-db99-161f-fef1-8a567fc1b298-7fc1b28a, #w-node-_9816b1de-a4b6-f302-b371-7c32cf3af2c0-141a62e9, #w-node-_9816b1de-a4b6-f302-b371-7c32cf3af2c1-141a62e9, #w-node-_9816b1de-a4b6-f302-b371-7c32cf3af2c2-141a62e9, #w-node-c932e985-f3c5-fb3d-28c4-56ff2bdde855-141a62eb {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_19e6d886-f670-aa38-5f2e-b19db857e8db-141a62e1, #w-node-_9816b1de-a4b6-f302-b371-7c32cf3af2ae-141a62e9 {
    align-self: center;
  }
}


