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

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

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

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

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

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

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

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

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

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

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

@font-face {
  font-family: Portraitcond;
  src: url('../fonts/PortraitCond-Heavy.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portraitcond;
  src: url('../fonts/PortraitCond-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: Sharpgrotesk;
  src: url('../fonts/SharpGrotesk-Black10.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white-smoke: #f4f5f0;
  --dim-grey: #4a4a4a;
  --dark-olive-green: #374818;
  --dark-khaki: #9aa341;
  --white: white;
  --bg-modulo: #eff0ec;
  --brown: #7a3b2b;
}

.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 {
  background-color: var(--white-smoke);
  color: var(--dim-grey);
  letter-spacing: 0;
  font-family: Portrait, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
}

h1 {
  color: var(--dark-olive-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Portraitcond, sans-serif;
  font-size: 500%;
  font-weight: 700;
  line-height: 90%;
}

h3 {
  color: var(--dark-olive-green);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Portraitcond, sans-serif;
  font-size: 350%;
  font-weight: 700;
  line-height: 100%;
}

h4 {
  color: var(--dark-khaki);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Portraitcond, sans-serif;
  font-size: 300%;
  font-weight: 300;
  line-height: 90%;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--dim-grey);
  text-decoration: underline;
}

em {
  font-style: italic;
}

figure {
  margin-bottom: 0;
}

.btn {
  background-color: var(--dark-khaki);
  border-bottom-style: none;
  border-radius: 5px;
  padding: 15px 20px;
  font-size: 100%;
  font-weight: 700;
  line-height: 100%;
  transition: all 50ms ease-in-out;
}

.btn.flecha-derecha-copy {
  background-image: url('../images/arrow_right_alt.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 40px;
}

.btn.flecha-derecha-copy:hover {
  background-position: 90% 55%;
  padding-left: 25px;
  padding-right: 35px;
}

.btn.icon-left {
  background-image: url('../images/btn-tienda-blanco.svg');
  background-position: 10px 45%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 40px;
}

.btn.icon-left.blanco {
  background-color: var(--white);
  color: var(--dim-grey);
  background-image: url('../images/btn-tienda.svg');
}

.btn.form {
  background-color: var(--dark-olive-green);
  background-image: url('../images/arrow_right_alt.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: auto;
  padding-right: 35px;
}

.btn.icon-right {
  background-image: url('../images/arrow_right_alt.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-left: 20px;
  padding-right: 40px;
}

.c-1200 {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  position: relative;
}

.h2-del-video {
  margin-bottom: 0;
  font-size: 2.5em;
  font-weight: 700;
}

.edicion-2023 {
  max-width: 35vw;
}

.wsp-btn {
  z-index: 9999;
  width: 64px;
  position: fixed;
  inset: auto 1vw 1.5% auto;
}

.browser_wrap {
  max-width: 300px;
  min-height: 50px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bpewser-center {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15% 0% 0%;
  display: block;
  position: relative;
}

.browser_header {
  color: #20355a;
  text-align: center;
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 28px;
  font-style: normal;
  line-height: 40px;
}

.browser_title {
  color: #7a849e;
  font-size: 14px;
  font-weight: 500;
}

.icon_firefox {
  border-radius: 100px;
  width: 55px;
  height: 55px;
  margin-bottom: 5px;
  padding: 6px;
}

.browser-warning {
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: auto;
  padding: 40px;
  font-style: normal;
  display: flex;
  box-shadow: 11px 11px 55px #355aa41a;
}

.browser-detect {
  z-index: 9999;
  background-color: #00000096;
  justify-content: center;
  align-items: center;
  padding: 325px 150px;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block {
  background-color: #000c;
  padding: 0%;
  display: none;
}

.link_span {
  color: #283556;
  text-decoration: none;
}

.browser_link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.3333%;
  padding: 15px;
  text-decoration: none;
  display: flex;
}

.ie_logo {
  width: 70px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.browser_details {
  color: #7a849e;
  text-align: center;
  letter-spacing: -.2px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}

.text-field {
  color: #fff;
  letter-spacing: .01rem;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 3px solid #fff;
  min-width: 25vw;
  min-height: 60px;
  padding-bottom: 16px;
  font-weight: 300;
}

.text-field:focus {
  color: #0074e8;
}

.text-field::placeholder {
  color: #fff;
}

.p {
  text-align: justify;
  margin-bottom: 0;
}

.p.blanco {
  color: var(--white);
}

.p.bol-verde {
  color: var(--dark-khaki);
  font-weight: 700;
}

.p.smaller {
  font-size: 16px;
}

.container-item-footer-vetical {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.container-item-footer-vetical._1 {
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.form {
  width: 100%;
}

.menu-inner-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.flex {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.flex.r {
  align-items: flex-end;
}

.text-block-2 {
  color: red;
}

.menu-full-sized {
  z-index: 9998;
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: center;
  padding-bottom: 3%;
  padding-left: 6%;
  padding-right: 6%;
  display: block;
  position: fixed;
  inset: 0%;
}

.title-footer {
  color: #9735f1;
  letter-spacing: -.025rem;
  padding-bottom: 10px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 100%;
}

.success-message-2 {
  background-color: #0000;
}

.text-block-6 {
  color: #0074e8;
  text-align: left;
  font-size: 180%;
  font-weight: 300;
  line-height: 100%;
  text-decoration: underline;
}

.container-title-footer {
  border-bottom: 3px solid #9735f1;
  display: inline-block;
}

.container-bottom-footer {
  width: 100%;
  margin-top: 3%;
}

.error-message {
  background-color: #12131e;
}

.formularuaio-conta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-6 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.item-2 {
  position: relative;
}

.menu-left {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 10vh;
  display: flex;
}

.main {
  position: relative;
}

.section {
  background-image: url('../images/bg-aceite.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section.proyecto {
  background-image: url('../images/111.png');
  background-position: 100% 40%;
  background-size: auto;
}

.section.tienda {
  background-color: var(--bg-modulo);
  background-image: url('../images/footer-punto-de-venta.png');
  background-position: 50% 100%;
  background-size: contain;
  padding-bottom: 15vh;
}

.section.contacto {
  background-color: var(--white);
  background-image: none;
  padding-bottom: 30vh;
  font-style: normal;
}

.padding-tyb {
  width: 100%;
  padding-top: 6%;
  padding-bottom: 6%;
  position: relative;
}

.padding-tyb.mas-top {
  padding-top: 12%;
}

.padding-tyb.mas-bottom {
  padding-bottom: 12%;
}

.padding-tyb.hero {
  z-index: 2;
  padding-top: 14%;
  padding-bottom: 0%;
}

.padding-lyr {
  width: 100%;
  padding-left: 6%;
  padding-right: 6%;
  position: relative;
}

.padding-lyr.de-contacto {
  padding-left: 6%;
  padding-right: 6%;
}

.padding-lyr.del-hero {
  padding-left: 9vw;
  padding-right: 7vw;
}

.article {
  position: relative;
}

._100-absolute {
  z-index: 1;
  cursor: none;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

._100-absolute.l {
  z-index: 2;
  width: 15%;
  height: 100%;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

._100-absolute.r {
  z-index: 2;
  width: 15vw;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

._100-absolute._1 {
  z-index: 2;
  width: 80px;
  height: 100px;
  inset: 25% auto auto 51%;
}

.scroll-section {
  opacity: .15;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: .5%;
  display: flex;
  position: relative;
  top: .5%;
  overflow: hidden;
}

.super-text {
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Sharpgrotesk, sans-serif;
  font-size: 30vh;
  font-weight: 700;
  line-height: 100%;
}

.super-text.one {
  margin-left: -200px;
  font-weight: 900;
}

.super-text.two {
  display: none;
}

.container-txt-columns {
  z-index: 1;
  grid-column-gap: 10vh;
  grid-row-gap: 10vh;
  flex-direction: column;
  padding-top: 5vh;
  display: flex;
  position: relative;
}

.container-txt-columns.mas-top {
  padding-top: 15vh;
}

.container-txt-columns.mas-top.mas-gap {
  grid-column-gap: 10vh;
  grid-row-gap: 10vh;
  padding-top: 5vh;
}

.container-txt-columns.proyecto-familiar {
  padding-top: 15vh;
}

.container-txt-columns.proyecto-familiar.mas-gap {
  grid-column-gap: 10vh;
  grid-row-gap: 10vh;
  padding-top: 5vh;
}

.container-txt-columns.contacto {
  grid-column-gap: 30vh;
  grid-row-gap: 30vh;
  padding-top: 15vh;
}

.container-txt-columns.contacto.mas-gap {
  grid-column-gap: 10vh;
  grid-row-gap: 10vh;
  padding-top: 5vh;
}

.container-colum-txt {
  width: 100%;
}

.container-colum-txt.center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-colum-txt.con-dos {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-direction: column;
  display: flex;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

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

.grid._5 {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-element {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.grid-element.right {
  align-items: flex-end;
}

.grid-element.right.center {
  justify-content: center;
}

.img-outer-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-inner-wrapper.content-2 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: 80vh;
}

.img-inner-wrapper.content-3 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: 70vh;
}

.img-inner-wrapper.content-4 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: 100%;
}

.img-slide-overlay {
  background-color: var(--white-smoke);
  width: 100%;
  height: 110%;
  margin-top: -5%;
  position: absolute;
  inset: 0%;
}

.img-slide-overlay.arriba {
  z-index: 2;
}

.img-100 {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
}

.img-png {
  max-width: none;
  max-height: 85vh;
  display: block;
}

.container-png {
  justify-content: center;
  align-items: center;
  max-height: none;
  display: flex;
}

.container-txt-inner {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 10% 10% 10% 20%;
  display: flex;
}

.container-txt-inner.sin-p {
  padding-left: 0%;
  padding-right: 0%;
}

.container-txt-inner.sin-p.top {
  justify-content: flex-start;
}

.container-txt-inner._2 {
  padding-left: 0%;
  padding-right: 20%;
}

.h3-section-title {
  font-size: 450%;
  line-height: 90%;
}

.h3-section-title.blanca {
  color: var(--white);
}

.b {
  font-weight: 700;
}

.container-ch-title {
  max-width: 45ch;
}

.container-ch-title._15 {
  max-width: 25ch;
}

.container-ch-title._25 {
  max-width: 40ch;
}

.container-ch-title.sin-ch, .container-ch-title.largo {
  max-width: none;
}

.foto-left {
  width: 85%;
  position: relative;
}

.foto-left._80vh {
  height: 80vh;
}

.foto-right {
  float: right;
  width: 85%;
  position: relative;
}

.foto-right.trazo-blanco {
  border: 10px solid var(--white);
  border-radius: 5px;
  width: 90%;
  height: 70%;
}

.foto-right._80vh {
  height: 80vh;
}

.slider-100 {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.slide-100 {
  width: 100%;
  height: 100%;
}

.container-2-txt {
  padding-left: 25%;
  padding-right: 15%;
}

.container-2-txt.angosto {
  padding-left: 20%;
}

.img-absolute {
  opacity: .4;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.img-absolute._80 {
  width: 90%;
}

.img-absolute.contacto {
  width: 80%;
}

.arrow {
  font-size: 60%;
}

.arrow.none {
  display: none;
}

.slide-nav {
  font-size: 4px;
}

.slide-nav.none {
  display: none;
}

._2-cols-contanier {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  display: flex;
}

._2-cols-contanier.solo-productosa {
  padding-left: 10%;
  padding-right: 10%;
}

.container-title._15 {
  max-width: 25ch;
}

.center {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.variedad {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  align-items: center;
  max-width: 20vw;
  display: flex;
}

.div-block-7 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.h4-variedad {
  font-size: 250%;
  font-weight: 700;
}

.img-over {
  position: absolute;
  inset: 0% auto auto 0%;
}

.img-over._1 {
  width: 140%;
  max-width: none;
  position: absolute;
  inset: 0% auto auto -42%;
}

.img-over._2 {
  inset: 0% 0% auto auto;
}

.img-over._3 {
  inset: 25% auto auto 3%;
}

.img-over._4 {
  width: 60%;
  inset: 33% 3% auto auto;
}

.img-over._5 {
  inset: 52% 10% auto auto;
}

.img-over._6 {
  width: 49%;
  inset: 42% auto auto 12%;
}

.img-over._11 {
  top: 20%;
}

.img-over._11._1 {
  width: 120%;
  inset: 3% auto auto -46%;
}

.img-over._12 {
  width: 75%;
  inset: 20% 0% auto auto;
}

.img-over._12._1 {
  width: 70%;
  top: 36%;
}

.img-over._14 {
  width: 60%;
  inset: 40% 3% auto auto;
}

.img-over._15 {
  width: 60%;
  inset: auto -40px 0% auto;
}

.img-over._13 {
  width: 60%;
  inset: 60% auto auto 0%;
}

.img-over._13._1 {
  inset: 40% auto auto 5%;
}

.img-over._19 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0%;
}

.link-en-texto {
  color: var(--dark-olive-green);
}

.bold-text {
  color: var(--dark-khaki);
}

.icon-heading-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.image-2 {
  margin-right: 15px;
}

.c-1200-2 {
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.full-width-img-wrapper {
  background-image: linear-gradient(#00000059, #00000059), url('../images/Finca-Nobles-Caciques-Aceite-de-Oliva_-7.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 25vh;
  padding-bottom: 25vh;
  display: flex;
  position: relative;
}

.full-width-img-content-outer-wrapper {
  padding: 0;
}

.h3-main {
  z-index: 10;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.4em;
  position: relative;
}

.h3-main.no-margin {
  margin-bottom: 0;
  font-weight: 500;
}

.full-width-img-content-inner-wrapper {
  max-width: 600px;
}

.s-full-width-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.full-width-img-overlay {
  background-image: linear-gradient(#00000080, #0000);
  padding-bottom: 0;
  position: absolute;
  inset: 0%;
}

.p-white {
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.7em;
}

._100-grid {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: static;
}

.inner-grid-1 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}

.inner-grid-2 {
  width: 100%;
  padding-top: 10%;
  padding-left: 5%;
  padding-right: 40%;
}

.linea {
  background-color: var(--white);
  width: 100%;
  height: 2px;
  position: relative;
}

.conteiner-title-sticky {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  display: flex;
  position: relative;
}

.container-header-sticky {
  width: 100%;
  padding-left: 20%;
  padding-right: 5%;
}

.bajada-sticky-title {
  color: var(--white);
  font-family: Portraitcond, sans-serif;
  font-size: 300%;
  font-weight: 300;
  line-height: 110%;
}

.lista-del-nombre {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.item-lista-nombre {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.container-title-nombre-lista {
  width: 100%;
  position: relative;
}

.title-de-lista {
  color: var(--white);
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-family: Portraitcond, sans-serif;
  font-size: 200%;
  font-weight: 700;
  line-height: 100%;
}

.title-de-lista.negro {
  color: var(--dim-grey);
}

.flex-item-grid-2 {
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.flex-item-grid-2.vertical {
  flex-direction: column;
}

.servicios-2-cols {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 6%;
}

.linea-top {
  background-color: #1d1d1d;
  width: 100%;
  height: 7px;
  margin-top: 0;
}

.grid-2 {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
}

.title {
  flex-direction: column;
  justify-content: space-between;
  display: block;
  position: relative;
}

.sepaerator-dfe-servicio {
  width: 100%;
  height: 100px;
}

.h3-servicvios {
  color: #1d1d1d;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sharpgrotesk, sans-serif;
  font-size: 800%;
  font-weight: 900;
  line-height: 120%;
}

.servicios-list-grid {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 6%;
}

.sep-2 {
  width: 100%;
  height: 40px;
}

._2-servicios {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
}

.container-inner-post-title-servicio {
  width: 100%;
  padding: 0%;
  position: relative;
}

.slide-foto {
  width: 100%;
  height: 100%;
}

.sep-top-servicio {
  width: 100%;
  height: 55px;
}

.slide-nav-2 {
  letter-spacing: 2em;
  font-size: 40%;
  line-height: 50%;
}

.inner-item-grid {
  width: 100%;
  height: 100%;
  position: relative;
}

.linea-list {
  background-color: #1d1d1d;
  width: 100%;
  height: 1px;
  margin-top: 0;
  margin-bottom: 5px;
}

.list-p {
  margin-bottom: 40px;
  font-weight: 400;
}

.list-p.nop {
  margin-bottom: 0;
}

.foto-container {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: relative;
}

.container-slider {
  z-index: 0;
  width: 100%;
  height: 500px;
  position: relative;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.container-slider._2cols {
  height: 300px;
}

.st {
  z-index: 0;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 10%;
}

.padding-lyr-2 {
  width: 100%;
  height: 100%;
  padding-left: 3%;
  padding-right: 3%;
  position: relative;
}

.item-grid {
  width: 100%;
  height: 100%;
  position: relative;
}

.flex-item-grid {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.flex-item-grid.para-stiky {
  display: block;
}

.padding-top {
  width: 100%;
  height: 100%;
  padding-top: 0%;
  padding-bottom: 0%;
  position: relative;
}

.padding-top.de-listado-de-servicios {
  padding-bottom: 250px;
}

.list-servicio-ampliado {
  width: 100%;
  position: relative;
}

.linea-bottom {
  background-color: #1d1d1d;
  width: 100%;
  height: 10px;
  margin-top: 0;
}

.foto-slider {
  z-index: 0;
  background-color: #0000;
  width: 100%;
  height: 100%;
  position: relative;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.icon-list-img {
  width: 24px;
  margin-bottom: 30px;
}

.sep-3 {
  width: 100%;
  height: 25px;
}

.arrow-2 {
  justify-content: center;
  align-items: center;
  font-size: 60%;
  display: flex;
}

.arrow-2.r {
  transform: translate(20px);
}

.arrow-2.l {
  transform: translate(-20px);
}

.list-title {
  margin-bottom: 0;
  font-weight: 700;
}

.mask-foto-slider {
  width: 100%;
  height: 100%;
}

.anime {
  position: relative;
  overflow: hidden;
}

.anime._100 {
  width: 100%;
}

.foto-grid {
  object-fit: cover;
  object-position: 50% 50%;
  grid-template-rows: auto auto auto auto auto;
  width: 100%;
  height: 100%;
}

.sep-1 {
  width: 100%;
  height: 25px;
}

.h2 {
  color: #1d1d1d;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Sharpgrotesk, sans-serif;
  font-size: 500%;
  font-weight: 900;
  line-height: 120%;
}

.h2.number {
  margin-top: 0;
  margin-bottom: 0;
  font-size: .8em;
}

.muy-baja {
  color: #1d1d1d;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 15px;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
}

.sep-b-serv {
  width: 100%;
  height: 20px;
}

.title-sticky-flex {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  padding-right: 10%;
  display: flex;
}

.container-title-sobre-svg {
  justify-content: space-between;
  display: flex;
}

.container-title-sobre-svg.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.bajada-de-section {
  color: var(--dark-olive-green);
  font-family: Portraitcond, sans-serif;
  font-size: 300%;
  font-weight: 300;
  line-height: 110%;
}

.bajada-de-section.negro {
  color: var(--dim-grey);
}

.bajada-de-section.blanco {
  color: var(--white);
  text-align: left;
  font-size: 260%;
}

.bajada-de-section.none {
  display: none;
}

.container-bajada-de-section {
  text-align: right;
  max-width: 65ch;
}

.container-bajada-de-section.bajada-contacto {
  text-align: right;
  justify-content: flex-end;
  max-width: none;
  padding-left: 20%;
  display: flex;
}

.container-img-1-col {
  width: 85%;
}

.center-de-txt {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 10%;
  display: flex;
}

.container-3-col-texto {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20%;
  display: flex;
}

.container-title-left {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 10%;
  padding-right: 20%;
  display: flex;
}

.container-title-left.contacto {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  padding-left: 0%;
  padding-right: 0%;
}

.slider-right {
  float: right;
  width: 100%;
  height: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
  padding-left: 5%;
  position: relative;
}

.slider-right._100 {
  height: 100%;
}

.slider-right._80vh {
  height: 80vh;
}

.mask {
  width: 100%;
  height: 100%;
}

.logos-quote-divider {
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.clients-wrapper-two {
  justify-content: space-between;
  align-items: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.clients-info-two {
  flex-direction: column;
  align-items: flex-start;
  max-width: 350px;
  display: flex;
}

.clients-quote-two {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.clients-divider {
  background-color: #e4ebf3;
  width: 90%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.clients-info {
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.clients-info-image {
  object-fit: cover;
  width: 50px;
  height: 50px;
  margin-right: 24px;
}

.clients-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.img-producto {
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
}

.p-foto {
  mix-blend-mode: multiply;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 35vh;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

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

.nombre-del-producto {
  color: var(--dark-khaki);
  font-family: Portraitcond, sans-serif;
  font-size: 250%;
  font-weight: 300;
  line-height: 110%;
}

.letra-chica {
  color: var(--dim-grey);
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 80%;
  font-weight: 400;
  line-height: 110%;
}

.letra-chica.center {
  text-align: center;
  font-size: 70%;
}

.product-p {
  font-size: 90%;
  line-height: 140%;
}

.icon.r {
  transform: translate(20px);
}

.icon.l {
  transform: translate(-20px);
}

.container-enlaces-footer {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: space-between;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
}

.footer-link {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.contacto-adress {
  font-style: normal;
  position: relative;
}

.container-contact-adress {
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
  font-style: normal;
}

.container-contact-adress.center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

._3-cols-adreesss {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.item-footer-adress {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  font-style: normal;
  display: flex;
}

.item-footer-adress.v {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
}

.img-icon-adress {
  width: 40px;
  max-width: none;
}

.container-txt-item-adress {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 5px;
  padding-right: 0%;
  display: flex;
}

.container-txt-item-adress.verde {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  padding-top: 0;
}

.link {
  font-weight: 500;
  text-decoration: none;
}

.link.b {
  color: var(--white);
}

.container-map {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-direction: column;
  grid-template-rows: 50% 50%;
  grid-template-columns: 40% 60%;
  grid-auto-columns: 1fr;
  align-items: flex-end;
  width: 100%;
  height: auto;
  min-height: auto;
  display: flex;
  position: relative;
}

.adress-y-map {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.map {
  width: 100%;
  height: 100%;
}

.map-container {
  width: 100%;
  height: 60vh;
  min-height: 400px;
}

.form-container {
  width: 100%;
  height: auto;
  padding-top: 2em;
}

.campo-form {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--dim-grey);
  color: var(--dim-grey);
  background-color: #0000;
  font-size: 18px;
  font-weight: 500;
}

.campo-form:focus, .campo-form:focus-visible, .campo-form[data-wf-focus-visible] {
  color: var(--dark-khaki);
}

.campo-form::placeholder {
  color: var(--dim-grey);
}

.form-del-footer {
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.formulario {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

.logo-container-footer {
  z-index: 2;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  border: 5px solid var(--dark-khaki);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  max-width: none;
  height: 70%;
  padding: 0%;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.container-logo {
  background-color: #fff;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 5% 15%;
}

.brand-footer {
  width: 100%;
}

.p-2.blanco {
  color: #fff;
}

.credit-left {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.flex-2 {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.flex-2.r {
  align-items: flex-end;
}

.btn-2 {
  color: #fff;
  letter-spacing: -.025em;
  background-color: #ff9f49;
  border-radius: 10px;
  padding: 1em 1.3em;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 100%;
}

.footer {
  background-color: #181818;
  padding-bottom: 2em;
}

.social-del-footer-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  display: flex;
}

.cuadrado-3 {
  color: var(--dark-khaki);
  font-weight: 700;
}

.padding-lyr-3 {
  width: 100%;
  padding-left: 3em;
  padding-right: 3em;
}

.container-large-2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contacto-1 {
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.credit-txt {
  float: left;
  background-color: #0000;
  font-weight: 300;
  line-height: 100%;
}

.container-footer-items {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.container-item-footer-2 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  display: flex;
}

.title-footer-2 {
  color: #fff;
  letter-spacing: -.025rem;
  padding-bottom: 10px;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 100%;
}

.footer-columns {
  grid-column-gap: 16px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 8em;
  padding-bottom: 3rem;
  display: flex;
}

.social-link-3 {
  margin-bottom: 0;
  margin-right: 0;
}

.text-block {
  color: #38c1f0;
  text-align: left;
  font-size: 180%;
  font-weight: 300;
  line-height: 120%;
  text-decoration: underline;
}

.credit-right-3 {
  font-size: 110%;
  font-weight: 700;
}

.social-link-2 {
  margin-right: 0;
}

.adress {
  width: 100%;
  font-style: normal;
  position: relative;
}

.text-field-2 {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 3px solid #fff;
  border-radius: 0;
  min-width: 25vw;
  min-height: 60px;
  padding-bottom: 16px;
  font-weight: 500;
}

.text-field-2:focus {
  color: #0074e8;
}

.text-field-2::placeholder {
  color: #fff;
}

.item-footer-2 {
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.item-3 {
  font-style: normal;
  position: relative;
}

.small-text {
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .7em;
  line-height: 100%;
}

.small-text.seguinos-en-las-redes {
  text-align: right;
  letter-spacing: .3em;
  min-width: 25ch;
  font-weight: 400;
}

.img-logo {
  width: 160px;
}

.img-logo.footer {
  width: 250px;
}

.icon-footer-adress {
  width: 14px;
}

.grid-footer {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 9%;
  display: grid;
}

.footer-text-block-2 {
  font-weight: 300;
}

.footer-link-2 {
  color: #fff;
  text-decoration: none;
}

.um-credit-3 {
  float: right;
  color: var(--dim-grey);
  text-align: right;
  text-transform: none;
  flex: 1;
  font-size: 100%;
  font-weight: 400;
}

.fooer-credits-2 {
  border-top: 1px solid var(--white-smoke);
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 1% 6% 3%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.error-message-2 {
  background-color: #0000;
}

.um-link-3 {
  text-transform: none;
  text-decoration: none;
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
}

.um-link-3:hover {
  color: var(--dark-khaki);
  border-bottom: 3px solid #fff;
  text-decoration: none;
}

.footer-wrapper-2 {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container-title-footer-2 {
  border-bottom: 3px solid #fff;
  display: inline-block;
}

.footer-adress-link {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
  transition: all .6s cubic-bezier(.23, 1, .32, 1);
}

.footer-adress-link:hover {
  padding-left: 5px;
}

.footer-bottom {
  color: #62717a;
  border-top: 1px solid #7c7c7c;
  height: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.nav-outer-wrapper {
  z-index: 2147483647;
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  padding: 45px 0;
  font-size: 20px;
  position: relative;
  inset: 0% 0% auto;
}

.c-1200-3 {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

.brand {
  color: #fff;
  border-bottom-style: none;
  font-size: 40px;
  font-weight: 600;
}

.image-3 {
  max-width: 75%;
}

.menu-btn {
  cursor: pointer;
  max-width: 30px;
}

.s-hero {
  background-color: var(--white-smoke);
  color: #fff;
  align-items: flex-end;
  padding-top: 100px;
  display: block;
  position: relative;
}

.social-icons-wrapper {
  flex-direction: row;
  display: flex;
}

.hero-content-wrapper {
  justify-content: space-between;
  max-width: 100%;
  display: flex;
  position: relative;
}

.hero-content-right {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.hero-content-left {
  max-width: 60%;
}

.social-icon {
  cursor: pointer;
  max-width: 100%;
  padding: 0 0 0 35px;
}

.subheader {
  opacity: .5;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
}

.social-icon-wrapper {
  border-bottom-style: none;
  transition: all .2s;
}

.social-icon-wrapper:hover {
  transform: translate(0, -5px);
}

.heading {
  margin-bottom: 0;
  font-size: 75px;
  font-weight: 600;
}

.bg-video-black-bar {
  z-index: 4;
  border-style: solid;
  border-width: 4vw 7vw;
  border-color: var(--white-smoke);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 0%;
}

.sticky-wrapper {
  z-index: 0;
  align-items: center;
  display: block;
  position: sticky;
  top: 0;
  overflow: hidden;
}

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

.s-video {
  height: 350vh;
  position: relative;
}

.bg-video-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.video-overlay {
  opacity: .25;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.heading-2 {
  z-index: 100;
  text-align: center;
  margin-bottom: 25px;
  position: static;
}

.bg-video-content-wrap {
  z-index: 5;
  max-width: 750px;
  position: relative;
}

.bg-video {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-txt-del-video {
  overflow: hidden;
}

.texto-del-video {
  font-family: Portraitcond, sans-serif;
  font-size: 500%;
  font-weight: 700;
  line-height: 90%;
}

.flex-del-video {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.hero-container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.container-title-h1 {
  width: 85%;
}

.h1 {
  font-size: 650%;
}

.h1.smaller {
  text-transform: uppercase;
  font-size: 250%;
}

.container-inner-hero {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container-txt-upper {
  margin-bottom: 0%;
  transform: translate(0, 20px);
}

.container-p-del-hero {
  width: 75%;
}

.p-del-hero {
  margin-bottom: 0;
}

.p-del-hero.blanco {
  color: var(--white);
}

.p-del-hero.bol-verde {
  color: var(--dark-khaki);
  font-weight: 700;
}

.txt-upper-del-hero {
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: Sharpgrotesk, sans-serif;
  font-size: 400%;
  font-weight: 900;
  line-height: 100%;
}

.hero-btns-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.absolute-hero-imimg {
  z-index: 1;
  position: absolute;
  inset: 10vh auto auto 0%;
}

.absolute-hero-imimg._2 {
  top: 75vh;
}

.absolute-hero-imimg._3 {
  justify-content: flex-end;
  width: auto;
  display: flex;
  inset: 30vh 0% auto auto;
}

.img-abosulte {
  width: 50%;
  max-width: none;
}

.img-abosulte._2, .img-abosulte._3 {
  width: 55%;
}

.navbar {
  background-color: #0000;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-menu {
  z-index: 99;
  background-color: var(--dark-olive-green);
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.menu-button {
  background-color: var(--white);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 0;
  display: flex;
}

.menu-button.w--open {
  z-index: 999;
  background-color: var(--white);
}

.hambur-menu {
  position: relative;
}

.brand-link {
  z-index: 999;
  background-color: var(--white);
  max-width: 16vw;
  padding: 18px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.brand-link.fixed {
  z-index: 1;
}

.cerrar-icon {
  display: none;
}

.box {
  z-index: 9;
  background-color: var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.menu-top-enlaces {
  z-index: 3;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-end;
  padding-top: 20px;
  display: flex;
  position: absolute;
  inset: 0% 100px auto auto;
}

.top-link {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  background-color: var(--white);
  border-radius: 5px;
  align-items: center;
  padding: 10px 15px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

.top-link.responsive {
  display: none;
}

.fixed-menu-big {
  z-index: 99;
  background-color: var(--dark-olive-green);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-style: normal;
  display: none;
  position: fixed;
  inset: 0%;
}

.container-menu-big {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 6%;
  padding-right: 6%;
  display: grid;
}

.address {
  font-style: normal;
}

.container-menu-big-txt {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3%;
  font-style: normal;
  display: flex;
}

.container-menu-vertical {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-left: 6%;
  display: grid;
}

.container-menu-links {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.title-de-menu-links {
  color: var(--white);
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-family: Portraitcond, sans-serif;
  font-size: 100%;
  font-weight: 700;
  line-height: 100%;
}

.title-de-menu-links.negro {
  color: var(--dim-grey);
}

.container-links-de-menu-top {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.link-de-menu-big {
  color: var(--dark-khaki);
  font-family: Portraitcond, sans-serif;
  font-size: 300%;
  font-weight: 700;
  line-height: 90%;
  text-decoration: none;
  transition: all .6s cubic-bezier(.39, .575, .565, 1);
  display: inline-block;
}

.link-de-menu-big:hover {
  padding-left: 10px;
}

.link-de-menu-big.w--current {
  padding-left: 5px;
  text-decoration: underline;
}

.absulte {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 2.5vw 90px auto;
}

.number {
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 15px;
}

.grid-7-cols {
  grid-column-gap: 2em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 15%;
  padding-right: 15%;
  display: grid;
}

.incas {
  text-align: justify;
  font-weight: 500;
}

.upper {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 100%;
}

.upper.smaller {
  font-size: 80%;
}

.div-block-8 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.div-block-9 {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0%;
  display: flex;
}

.container-fotos-productos {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.container-producto {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.success-message-3 {
  background-color: var(--dark-khaki);
}

.text-block-7 {
  color: var(--white);
  font-family: Portraitcond, sans-serif;
  font-size: 200%;
  font-weight: 700;
  line-height: 110%;
}

.code-embed {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1440px) {
  .p {
    font-size: 100%;
    line-height: 160%;
  }

  .p.smaller {
    font-size: 17px;
  }

  .padding-tyb.hero {
    padding-top: 12%;
  }

  .padding-lyr {
    padding-left: 12%;
    padding-right: 12%;
  }

  .padding-lyr.de-contacto {
    padding-left: 9%;
    padding-right: 9%;
  }

  .padding-lyr.del-hero {
    padding-left: 12vw;
    padding-right: 12vw;
  }

  ._100-absolute._1 {
    top: 28%;
  }

  .super-text {
    font-size: 35vh;
  }

  .super-text.one {
    line-height: 100%;
  }

  .super-text.two {
    font-size: 9em;
    line-height: 100%;
  }

  .container-txt-columns {
    grid-column-gap: 15vh;
    grid-row-gap: 15vh;
  }

  .container-txt-columns.contacto {
    grid-column-gap: 25vh;
    grid-row-gap: 25vh;
  }

  .grid._5, .grid-element {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .container-txt-inner {
    padding-right: 15%;
  }

  .h3-section-title {
    font-size: 650%;
  }

  .h3-section-title.largo {
    font-size: 550%;
  }

  .container-ch-title {
    max-width: 65ch;
  }

  .foto-left._80vh, .foto-right._80vh {
    height: 100%;
  }

  .container-2-txt {
    padding-left: 20%;
    padding-right: 30%;
  }

  ._2-cols-contanier {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
  }

  .center {
    grid-row-gap: 6em;
  }

  .variedad {
    max-width: 15vw;
  }

  .img-over._5 {
    top: 70%;
  }

  .img-over._6 {
    left: -18%;
  }

  .img-over._11._1 {
    width: 70%;
    left: -35%;
  }

  .img-over._12 {
    right: -33%;
  }

  .img-over._14 {
    top: 55%;
    right: -22%;
  }

  .img-over._15 {
    width: 35%;
    right: -16%;
  }

  .img-over._13 {
    left: -24%;
  }

  .img-over._13._1 {
    top: 50%;
    left: -30%;
  }

  .bajada-sticky-title {
    font-size: 350%;
  }

  .title-de-lista {
    font-size: 250%;
  }

  .h3-servicvios {
    font-size: 2.8em;
  }

  .sep-top-servicio {
    height: 48px;
  }

  .h2 {
    font-size: 3.4em;
  }

  .container-title-sobre-svg.grid {
    grid-template-columns: 1fr 1fr;
  }

  .bajada-de-section, .bajada-de-section.blanco {
    font-size: 350%;
  }

  .center-de-txt {
    padding-left: 10%;
  }

  .container-3-col-texto {
    padding-left: 20%;
  }

  .container-title-left {
    padding-left: 5%;
  }

  .nombre-del-producto {
    font-size: 300%;
  }

  .product-p {
    font-size: 100%;
  }

  .h3-dentro-de-p {
    font-size: 350%;
  }

  .adress-y-map {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    padding-left: 3%;
    padding-right: 3%;
  }

  .form-container {
    width: 100%;
  }

  .logo-container-footer {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    inset: 0%;
  }

  .container-logo {
    max-width: 20vw;
  }

  .btn-2 {
    padding: 20px 40px;
    font-size: 1.6em;
  }

  .padding-lyr-3 {
    padding-left: 6em;
    padding-right: 6em;
  }

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

  .img-logo {
    width: 220px;
  }

  .img-logo.footer {
    width: 320px;
  }

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

  .bg-video-black-bar {
    border-width: 5vw 9vw;
  }

  .texto-del-video {
    font-size: 650%;
  }

  .h1 {
    font-size: 900%;
  }

  .brand-link {
    max-width: 13vw;
    padding: 30px;
  }

  .box {
    width: 90px;
    height: 90px;
  }

  .menu-top-enlaces {
    right: 120px;
  }

  .top-link.responsive {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 20px 30px;
    display: flex;
  }

  .container-menu-big {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
    padding-left: 9%;
    padding-right: 9%;
  }

  .container-menu-vertical {
    padding-left: 3%;
    display: flex;
  }

  .container-links-de-menu-top {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .link-de-menu-big {
    font-size: 400%;
  }

  .absulte {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    bottom: 120px;
    right: 2vw;
  }

  .grid-7-cols {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
    padding-left: 10%;
    padding-right: 10%;
  }

  .div-block-8 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.75fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .div-block-9 {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 6%;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .c-1200 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .wsp-btn {
    bottom: 1.5%;
  }

  .container-item-footer-vetical {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    width: 100%;
  }

  .container-item-footer-vetical._1, .flex.r {
    align-items: flex-start;
  }

  .menu-full-sized {
    padding-left: 25px;
    padding-right: 25px;
  }

  .container-bottom-footer {
    margin-top: 3%;
  }

  .menu-left {
    flex-direction: column;
    align-items: stretch;
  }

  .padding-tyb {
    padding-top: 10vh;
  }

  .padding-tyb.hero {
    padding-top: 14%;
  }

  .super-text {
    font-size: 25vw;
  }

  .container-txt-columns.mas-top.mas-gap {
    grid-column-gap: 15vh;
    grid-row-gap: 15vh;
    padding-top: 5vh;
  }

  .container-txt-columns.proyecto-familiar {
    grid-column-gap: 5vh;
    grid-row-gap: 5vh;
    padding-top: 5vh;
  }

  .container-txt-columns.contacto {
    grid-column-gap: 10vh;
    grid-row-gap: 10vh;
    padding-top: 10vh;
  }

  .container-txt-columns.contacto.mas-gap {
    grid-column-gap: 15vh;
    grid-row-gap: 15vh;
    padding-top: 5vh;
  }

  .grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid._1 {
    flex-direction: row;
    grid-auto-columns: 1fr;
  }

  .grid._3-columns {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .grid-element.none {
    display: none;
  }

  .img-outer-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }

  .img-png {
    width: 70%;
    max-height: none;
  }

  .container-png {
    width: 100%;
    height: 100%;
  }

  .container-txt-inner {
    padding-left: 0%;
  }

  .container-txt-inner._2 {
    padding-right: 0%;
  }

  .h3-section-title, .h3-section-title.blanca {
    font-size: 400%;
  }

  .h3-section-title.largo {
    font-size: 350%;
  }

  .container-ch-title._15 {
    max-width: none;
  }

  .foto-left {
    width: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .foto-left._80vh {
    height: 100%;
  }

  .foto-right {
    width: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .foto-right.trazo-blanco {
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .foto-right._80vh {
    height: 100%;
  }

  .container-2-txt, ._2-cols-contanier.solo-productosa {
    padding-left: 0%;
    padding-right: 0%;
  }

  .center {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .h4-variedad {
    font-size: 250%;
  }

  .img-over._3 {
    top: 27%;
  }

  .img-over._4 {
    top: 35%;
    right: -27px;
  }

  .img-over._5 {
    top: 48%;
    right: -15px;
  }

  .img-over._6 {
    width: 80%;
    left: -42px;
  }

  .img-over._11 {
    top: 15%;
  }

  .img-over._12 {
    top: 17%;
    right: -3px;
  }

  .img-over._12._1 {
    top: 29%;
    right: -10px;
  }

  .img-over._14 {
    width: 90%;
    top: 50%;
    right: -15px;
  }

  .img-over._13 {
    top: 65%;
    left: -10px;
  }

  .img-over._13._1 {
    width: 75%;
    top: 35%;
    left: -10px;
  }

  .c-1200-2 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .inner-grid-2 {
    padding-right: 20%;
  }

  .container-header-sticky {
    padding-left: 10%;
  }

  .bajada-sticky-title {
    font-size: 280%;
  }

  .servicios-2-cols {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .linea-top.first {
    display: none;
  }

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

  .sepaerator-dfe-servicio {
    height: 90px;
  }

  .servicio {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    position: relative;
  }

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

  ._2-servicios {
    grid-row-gap: 90px;
    grid-template-columns: 1fr;
  }

  .container-inner-post-title-servicio {
    position: relative;
  }

  .list-p {
    margin-bottom: 10px;
  }

  .container-slider {
    width: 100%;
    height: 45vh;
    min-height: 400px;
    margin-top: 0%;
    position: relative;
    transform: none;
  }

  .container-slider._2cols {
    height: 45vh;
  }

  .flex-item-grid {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .padding-top {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .padding-top.de-listado-de-servicios {
    padding-bottom: 6%;
  }

  .container-title-sobre-svg {
    flex-direction: column;
    padding-right: 10%;
  }

  .container-title-sobre-svg.grid {
    align-items: start;
    padding-right: 0%;
  }

  .container-bajada-de-section {
    text-align: left;
    max-width: none;
  }

  .center-de-txt {
    align-items: flex-start;
    padding-left: 20%;
    padding-right: 20%;
  }

  .container-title-left {
    padding-left: 0%;
  }

  .slider-right {
    height: 80%;
    max-height: 350px;
  }

  .container {
    max-width: 728px;
  }

  .clients-quote-two {
    font-size: 28px;
    line-height: 36px;
  }

  .p-foto {
    height: 120px;
  }

  .h3-dentro-de-p {
    margin-bottom: 10px;
  }

  .container-contact-adress {
    padding-left: 0%;
    padding-right: 0%;
  }

  ._3-cols-adreesss {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
  }

  .container-txt-item-adress {
    grid-column-gap: .1em;
    grid-row-gap: .1em;
  }

  .container-txt-item-adress._1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: row;
    align-items: center;
  }

  .container-map {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .adress-y-map {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
  }

  .form-container {
    width: 100%;
  }

  .logo-container-footer {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
    grid-auto-columns: 1fr;
    width: 100%;
    padding: 6% 3%;
    display: grid;
    position: static;
    left: 0%;
  }

  .container-logo {
    justify-content: center;
    align-items: center;
    padding: 11%;
    display: flex;
  }

  .flex-2.r {
    align-items: flex-start;
  }

  .social-del-footer-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .credit-txt {
    float: none;
    text-align: center;
    margin-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .container-footer-items {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .container-item-footer-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .footer-columns {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .social-link-3 {
    min-width: 18px;
  }

  .adress {
    flex-direction: column;
    display: flex;
  }

  .item-footer-2 {
    align-items: flex-start;
  }

  .img-logo {
    width: 170px;
  }

  .grid-footer {
    grid-column-gap: 6vw;
    grid-row-gap: 6vw;
    flex-direction: column;
    align-items: stretch;
    margin-top: 16%;
    display: flex;
  }

  .um-credit-3 {
    float: none;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .fooer-credits-2 {
    flex-direction: column;
    margin-top: 0;
    padding-top: 3%;
    padding-bottom: 3%;
  }

  .footer-wrapper-2 {
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .nav-outer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .c-1200-3 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content-left {
    max-width: 70%;
  }

  .heading {
    font-size: 60px;
  }

  .bg-video-black-bar {
    border-width: 7vw;
  }

  .h1 {
    font-size: 500%;
  }

  .absolute-hero-imimg._3 {
    top: 35vh;
    overflow: hidden;
  }

  .img-abosulte._3 {
    transform: translate(50px);
  }

  .brand-link {
    max-width: 28vw;
  }

  .menu-top-enlaces {
    display: none;
  }

  .container-menu-big-txt {
    padding-top: 0%;
  }

  .grid-7-cols {
    padding-left: 0%;
    padding-right: 0%;
  }

  .incas {
    margin-top: 10px;
  }

  .div-block-8 {
    display: flex;
  }

  .div-block-9 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
    line-height: 140%;
  }

  .h2-del-video {
    font-size: 1.8em;
  }

  .wsp-btn {
    width: 48px;
    bottom: 10px;
    right: 8px;
  }

  .bpewser-center {
    padding-left: 12%;
    padding-right: 12%;
  }

  .browser-warning {
    padding: 25px;
    display: block;
  }

  .p.blanco {
    line-height: 150%;
  }

  .menu-inner-wrapper {
    width: 100%;
    margin-top: 63px;
  }

  .menu-full-sized {
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .menu-left {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    align-items: stretch;
  }

  .section.tienda {
    padding-bottom: 10vh;
  }

  .padding-tyb.mas-bottom {
    padding-bottom: 18%;
  }

  .padding-tyb.hero {
    padding-top: 15vh;
  }

  .padding-lyr.del-hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  ._100-absolute.l, ._100-absolute.r {
    z-index: 1;
  }

  ._100-absolute._1 {
    inset: 0% 0% auto auto;
  }

  .scroll-section {
    padding-top: 80px;
  }

  .super-text {
    font-size: 14vw;
  }

  .container-txt-columns.mas-top.mas-gap {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .grid {
    display: flex;
  }

  .grid._1 {
    flex-direction: column;
    display: flex;
  }

  .grid._5 {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-element.right.center {
    height: auto;
    display: block;
  }

  .img-png {
    width: 40%;
  }

  .container-txt-inner {
    padding-top: 0%;
    padding-bottom: 0%;
    padding-right: 0%;
  }

  .container-txt-inner.sin-p {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .container-ch-title {
    max-width: none;
  }

  .foto-left {
    z-index: 3;
    border: 10px solid var(--white);
    border-radius: 5px;
    height: 35vh;
    min-height: 300px;
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .foto-left._80vh {
    height: 35vh;
  }

  .foto-right {
    border: 10px solid var(--white);
    border-radius: 5px;
    height: 35vh;
    min-height: 300px;
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .foto-right.trazo-blanco {
    float: none;
    width: 100%;
    height: 35vh;
    position: static;
  }

  .foto-right._80vh {
    height: 35vh;
  }

  .slide-100 {
    overflow: hidden;
  }

  ._2-cols-contanier {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .variedad {
    flex-direction: row;
    max-width: none;
  }

  .variedad-foto {
    width: 30vw;
    max-width: none;
  }

  .div-block-7 {
    align-items: flex-start;
  }

  .img-over._5 {
    right: 5%;
  }

  .img-over._6 {
    width: 60%;
    left: -6%;
  }

  .img-over._11 {
    left: -3%;
  }

  .img-over._12 {
    width: 100%;
    right: -5%;
  }

  .img-over._12._1 {
    width: 100%;
  }

  .img-over._14 {
    width: 90%;
    right: -5%;
  }

  .img-over._13 {
    width: 100%;
  }

  .img-over._13._1 {
    top: 30%;
    left: -5%;
  }

  .full-width-img-wrapper {
    padding-top: 10vh;
  }

  .p-white {
    margin-bottom: 25px;
  }

  ._100-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-direction: column;
    display: flex;
  }

  .inner-grid-2 {
    padding-top: 0%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .container-header-sticky {
    padding-left: 6%;
  }

  .servicios-2-cols, .servicios-list-grid {
    grid-template-columns: 1fr 1fr;
  }

  ._2-servicios {
    grid-row-gap: 90px;
  }

  .slide-nav-2 {
    font-size: 20%;
  }

  .list-p {
    margin-bottom: 0;
  }

  .container-slider {
    height: 300px;
    min-height: auto;
  }

  .container-slider._2cols {
    height: 300px;
  }

  .arrow-2 {
    transform: translate(0, -80px);
  }

  .title-sticky-flex {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    padding-right: 0%;
  }

  .container-title-sobre-svg.grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .container-bajada-de-section.bajada-contacto {
    text-align: left;
    padding-left: 0%;
  }

  .center-de-txt {
    padding-left: 0%;
    padding-right: 0%;
  }

  .container-3-col-texto, .container-title-left {
    padding-right: 0%;
  }

  .slider-right {
    height: 35vh;
    min-height: 300px;
    max-height: none;
    padding-top: 0%;
    padding-bottom: 0%;
    padding-left: 0%;
  }

  .logos-quote-divider {
    padding: 60px 15px;
  }

  .clients-wrapper-two {
    flex-direction: column;
  }

  .clients-info-two {
    max-width: none;
    margin-bottom: 40px;
  }

  .clients-grid {
    grid-column-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 15px;
  }

  ._3-cols-adreesss {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
    align-items: flex-start;
    display: flex;
  }

  .adress-y-map {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .formulario, .logo-container-footer {
    flex-direction: column;
    display: flex;
  }

  .container-logo {
    width: 50%;
    padding: 3%;
  }

  .credit-left {
    margin-bottom: 25px;
    display: block;
    transform: translate(0, 15px);
  }

  .padding-lyr-3 {
    padding-left: 2em;
    padding-right: 2em;
  }

  .credit-txt {
    margin-bottom: 0%;
  }

  .footer-columns {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .img-logo {
    width: 120px;
  }

  .um-credit-3 {
    margin-top: 4%;
    margin-bottom: 4%;
  }

  .fooer-credits-2 {
    z-index: 0;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0% 1.5% 3%;
  }

  .s-hero {
    padding-top: 75px;
  }

  .social-icons-wrapper {
    flex-direction: column;
    display: flex;
  }

  .hero-content-left {
    max-width: 75%;
  }

  .social-icon-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .heading {
    margin-bottom: 0;
    font-size: 50px;
  }

  .heading-2 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 2.5em;
  }

  .texto-del-video {
    font-size: 350%;
  }

  .container-title-h1 {
    width: 90%;
  }

  .h1 {
    font-size: 350%;
  }

  .h1.smaller {
    font-size: 200%;
  }

  .container-p-del-hero {
    width: 95%;
  }

  .txt-upper-del-hero {
    font-size: 200%;
  }

  .hero-btns-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .absolute-hero-imimg {
    top: 5vh;
  }

  .absolute-hero-imimg._3 {
    top: 20vh;
  }

  .img-abosulte {
    width: 35%;
  }

  .img-abosulte._2 {
    width: 40%;
  }

  .img-abosulte._3 {
    width: 50%;
  }

  .brand-link {
    max-width: 30vw;
  }

  .fixed-menu-big {
    align-items: flex-end;
    padding-bottom: 6%;
  }

  .container-menu-big {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .container-menu-vertical {
    padding-left: 0%;
  }

  .container-menu-links {
    display: none;
  }

  .absulte {
    right: 20px;
  }

  .grid-7-cols {
    flex-direction: column;
    display: flex;
  }

  .text-block-7 {
    line-height: 120%;
  }
}

@media screen and (max-width: 479px) {
  .h2-del-video {
    font-size: 2em;
  }

  .edicion-2023 {
    max-width: 50vw;
  }

  .wsp-btn {
    width: 64px;
    inset: auto 10px 5px auto;
  }

  .browser_header {
    font-size: 160%;
    line-height: 100%;
  }

  .browser-warning {
    width: auto;
    max-width: none;
    padding: 6% 3%;
  }

  .container-item-footer-vetical._1 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .menu-full-sized {
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .title-footer {
    font-size: 140%;
  }

  .container-bottom-footer {
    margin-top: 3%;
  }

  .formularuaio-conta {
    flex-direction: column;
    align-items: flex-start;
  }

  .main {
    overflow: hidden;
  }

  .section.tienda, .padding-tyb.mas-top {
    padding-bottom: 18%;
  }

  ._100-absolute.r {
    width: 25vw;
  }

  .scroll-section {
    padding-top: 0;
  }

  .super-text {
    font-size: 40vw;
  }

  .container-txt-columns.mas-top.mas-gap {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    padding-top: 0;
  }

  .container-txt-columns.contacto {
    padding-top: 0;
  }

  .grid-element {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .img-inner-wrapper.content-2, .img-inner-wrapper.content-3, .img-inner-wrapper.content-4 {
    height: 300px;
  }

  .h3-section-title, .h3-section-title.blanca {
    font-size: 350%;
  }

  .foto-right.trazo-blanco {
    height: 50vh;
  }

  ._2-cols-contanier.solo-productosa {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    padding-left: 0%;
    padding-right: 0%;
  }

  .variedad {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: column;
  }

  .variedad-foto {
    width: 40vw;
  }

  .div-block-7 {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .img-over._1 {
    width: 100%;
    left: 0%;
  }

  .img-over._2 {
    width: 150%;
    max-width: none;
    right: -30%;
  }

  .img-over._11 {
    left: -10px;
  }

  .img-over._11._1 {
    width: 140%;
    display: none;
    top: 0;
    left: -15px;
  }

  .img-over._12 {
    right: -35px;
  }

  .img-over._12._1 {
    inset: 23% -49% auto auto;
  }

  .img-over._14 {
    width: 100%;
    top: 45%;
    right: -30px;
  }

  .img-over._13 {
    top: 60%;
  }

  .img-over._13._1 {
    top: 20%;
    left: -15px;
  }

  .img-over._19 {
    top: -30px;
    right: -20px;
  }

  .icon-heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-2 {
    margin-bottom: 20px;
  }

  .c-1200-2 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .full-width-img-wrapper {
    align-items: center;
    padding: 18% 6%;
  }

  .h3-main.no-margin {
    font-size: 1.5em;
  }

  ._100-grid {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .inner-grid-2 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .conteiner-title-sticky {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .container-header-sticky {
    padding-left: 0%;
    padding-right: 0%;
  }

  .servicios-2-cols {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
  }

  .grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }

  .sepaerator-dfe-servicio {
    height: 115px;
  }

  .h3-servicvios {
    font-size: 1.8em;
  }

  .sep-2 {
    height: 45px;
  }

  .sep-top-servicio {
    height: 30px;
  }

  .slide-nav-2 {
    display: none;
  }

  .list-p {
    margin-bottom: 0;
  }

  .container-slider, .container-slider._2cols {
    height: 400px;
  }

  .padding-top {
    padding-bottom: 45px;
  }

  .sep-3, .sep-b-serv {
    height: 15px;
  }

  .bajada-de-section {
    font-size: 250%;
  }

  .container {
    max-width: none;
  }

  .clients-quote-two {
    font-size: 24px;
    line-height: 32px;
  }

  .clients-info-image {
    margin-right: 16px;
  }

  .clients-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .p-foto._1-col-final {
    padding-left: 16%;
    padding-right: 16%;
  }

  .container-enlaces-footer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .item-footer-adress.v {
    flex-direction: row;
  }

  .container-txt-item-adress._1 {
    flex-direction: column;
    align-items: flex-start;
  }

  .adress-y-map, .formulario {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .logo-container-footer {
    height: 100%;
  }

  .container-logo {
    width: 75%;
  }

  .flex-2 {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
  }

  .social-del-footer-2 {
    justify-content: space-around;
  }

  .container-large-2 {
    max-width: none;
  }

  .contacto-1 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .credit-txt {
    margin-bottom: 3%;
  }

  .container-footer-items {
    display: flex;
  }

  .container-item-footer-2 {
    align-items: flex-start;
    margin-top: 23px;
  }

  .title-footer-2 {
    font-size: 1.8em;
  }

  .footer-columns {
    padding-top: 6em;
  }

  .credit-right-3 {
    margin-top: 3%;
  }

  .small-text.seguinos-en-las-redes {
    min-width: auto;
  }

  .img-logo {
    width: 140px;
  }

  .grid-footer {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .footer-text-block-2 {
    text-align: left;
  }

  .fooer-credits-2 {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    padding: 0% 3% 40px;
  }

  .brand {
    padding-left: 0;
  }

  .menu-btn {
    max-width: 25px;
  }

  .s-hero {
    padding-top: 50px;
  }

  .hero-content-wrapper {
    margin-bottom: 25px;
  }

  .hero-content-right {
    display: none;
  }

  .hero-content-left {
    max-width: 100%;
  }

  .heading {
    font-size: 45px;
  }

  .heading-2 {
    font-size: 2em;
  }

  .bg-video-content-wrap {
    padding-left: 25px;
    padding-right: 25px;
  }

  .bg-video {
    height: 100vh;
  }

  .h1 {
    font-size: 350%;
  }

  .h1.smaller {
    font-size: 150%;
  }

  .container-p-del-hero {
    width: 85%;
  }

  .absolute-hero-imimg._2 {
    top: 85vh;
    overflow: hidden;
  }

  .absolute-hero-imimg._3 {
    top: 45vh;
    right: 0%;
    overflow: hidden;
  }

  .img-abosulte._2 {
    transform: translate(-20px);
  }

  .img-abosulte._3 {
    transform: translate(43px);
  }

  .brand-link {
    max-width: 50vw;
  }

  .fixed-menu-big {
    align-items: center;
    padding-bottom: 0%;
    overflow: hidden;
  }

  .container-menu-big {
    justify-content: center;
    align-items: center;
    padding: 16% 6% 0%;
  }

  .container-menu-vertical {
    display: flex;
  }

  .absulte {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    right: 30px;
  }

  .div-block-8 {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-9 {
    padding: 0%;
    display: block;
  }

  .text-block-7 {
    line-height: 100%;
  }
}

#w-node-_4101e3e4-1cc1-e990-3398-bbd14856f317-9225129e {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_4101e3e4-1cc1-e990-3398-bbd14856f31f-9225129e, #w-node-_4101e3e4-1cc1-e990-3398-bbd14856f328-9225129e, #w-node-b7f04722-84c1-f79d-212b-492e222870db-9225129e, #w-node-a5058d64-c6ba-cdfa-180c-0ba6e164f2b8-9225129e, #w-node-_81215168-f835-a5e2-43f9-1d4856fe5a80-9225129e, #w-node-bdaf11b5-1343-66cb-4b35-ff19044048e0-9225129e, #w-node-bdaf11b5-1343-66cb-4b35-ff19044048df-9225129e, #w-node-_5f8fbd55-7fc3-bf85-8ff9-51b96ebd8c0e-9225129e, #w-node-_5f8fbd55-7fc3-bf85-8ff9-51b96ebd8c08-9225129e, #w-node-cdff29da-1d55-9048-fa2b-bd32c3d430c9-9225129e, #w-node-cdff29da-1d55-9048-fa2b-bd32c3d430d7-9225129e, #w-node-b96b5fc9-200c-ead5-bb0b-536e02a2172e-9225129e, #w-node-b96b5fc9-200c-ead5-bb0b-536e02a21758-9225129e, #w-node-b96b5fc9-200c-ead5-bb0b-536e02a21771-9225129e, #w-node-e66c2e64-5821-b3a1-c35a-6540a00af96b-9225129e, #w-node-_1f92fd39-afb3-c9aa-c560-a7ccca696463-9225129e, #w-node-_9192d203-52d0-f628-46e2-55d0062be956-9225129e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a741786-fdc8-0e8f-bd38-2fa738749b6a-9225129e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_4123c775-0056-8354-834b-e13170029664-9225129e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3c5b9edd-36c9-f6e8-d354-63a8eacdabe9-9225129e, #w-node-b3533beb-a93f-cdaf-933d-0c88674a6fda-9225129e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_10bdf636-cbfe-19c9-d1d9-af84e9383d67-9225129e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_10bdf636-cbfe-19c9-d1d9-af84e9383d68-9225129e {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_4ae79145-9524-9796-e568-e9de4cff8e8f-9225129e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_8a673217-b35f-94f9-b0be-7b58bdb752c7-9225129e, #w-node-c4f6188e-1e5e-7a8e-2fca-a9c17b3e342e-9225129e, #w-node-_0134b7f6-6391-2111-8a8b-e6ff4d936c37-9225129e, #w-node-_4efda1cf-8698-3662-a50d-45580cfcc43d-9225129e, #w-node-_45fe2a0f-c69e-275b-599d-46deca37ff33-9225129e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f457eead-6b52-4c22-3add-5fd28044f87e-9225129e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_42974434-1896-0e58-424a-cae767ccc7ff-9225129e {
  grid-area: 3 / 2 / 4 / 3;
  justify-self: end;
}

#w-node-_32d4d402-291c-1044-f4d3-290cdfff3e24-dfff3e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb80090b-4c04-fda2-1dd7-649af2ececdb-1038e7a5 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_97fc7b68-f6e6-d384-dfbf-4f3d23111f36-1038e7a5, #w-node-_97fc7b68-f6e6-d384-dfbf-4f3d23111f42-1038e7a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76a22a68-3f14-bd0d-c85d-6f15b5092ba4-1038e7a5, #w-node-_9a08d6fd-210a-29ee-ce26-a584b6b0cccc-1038e7a5 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_4101e3e4-1cc1-e990-3398-bbd14856f317-cc1391da {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_4101e3e4-1cc1-e990-3398-bbd14856f31f-cc1391da, #w-node-_4101e3e4-1cc1-e990-3398-bbd14856f328-cc1391da, #w-node-b7f04722-84c1-f79d-212b-492e222870db-cc1391da, #w-node-a5058d64-c6ba-cdfa-180c-0ba6e164f2b8-cc1391da, #w-node-_81215168-f835-a5e2-43f9-1d4856fe5a80-cc1391da, #w-node-bdaf11b5-1343-66cb-4b35-ff19044048e0-cc1391da, #w-node-bdaf11b5-1343-66cb-4b35-ff19044048df-cc1391da, #w-node-_5f8fbd55-7fc3-bf85-8ff9-51b96ebd8c0e-cc1391da, #w-node-_5f8fbd55-7fc3-bf85-8ff9-51b96ebd8c08-cc1391da, #w-node-cdff29da-1d55-9048-fa2b-bd32c3d430c9-cc1391da, #w-node-cdff29da-1d55-9048-fa2b-bd32c3d430d7-cc1391da, #w-node-b96b5fc9-200c-ead5-bb0b-536e02a2172e-cc1391da, #w-node-b96b5fc9-200c-ead5-bb0b-536e02a21758-cc1391da, #w-node-b96b5fc9-200c-ead5-bb0b-536e02a21771-cc1391da, #w-node-e66c2e64-5821-b3a1-c35a-6540a00af96b-cc1391da, #w-node-_1f92fd39-afb3-c9aa-c560-a7ccca696463-cc1391da, #w-node-_9192d203-52d0-f628-46e2-55d0062be956-cc1391da {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a741786-fdc8-0e8f-bd38-2fa738749b6a-cc1391da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_4123c775-0056-8354-834b-e13170029664-cc1391da {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bd1c2d23-a9a4-8d51-c96d-d2352e1840be-cc1391da {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4ae79145-9524-9796-e568-e9de4cff8e8f-cc1391da {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_8a673217-b35f-94f9-b0be-7b58bdb752c7-cc1391da, #w-node-c4f6188e-1e5e-7a8e-2fca-a9c17b3e342e-cc1391da, #w-node-_0134b7f6-6391-2111-8a8b-e6ff4d936c37-cc1391da, #w-node-_4efda1cf-8698-3662-a50d-45580cfcc43d-cc1391da {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_90b40a11-a79d-f5af-2ab0-3c9977c0adfc-cc1391da {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_45fe2a0f-c69e-275b-599d-46deca37ff33-cc1391da {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f457eead-6b52-4c22-3add-5fd28044f87e-cc1391da {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_42974434-1896-0e58-424a-cae767ccc7ff-cc1391da {
  grid-area: 3 / 2 / 4 / 3;
  justify-self: end;
}

#w-node-d9140ebc-62d2-f7c3-4de2-a017002648b5-002648b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-f0dce9c2-05a1-eda2-f2d7-ae52494a2d39-9225129e, #w-node-_45fe2a0f-c69e-275b-599d-46deca37ff33-9225129e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_4101e3e4-1cc1-e990-3398-bbd14856f317-9225129e, #w-node-c4f6188e-1e5e-7a8e-2fca-a9c17b3e342e-9225129e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_45fe2a0f-c69e-275b-599d-46deca37ff33-9225129e {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_4101e3e4-1cc1-e990-3398-bbd14856f317-cc1391da, #w-node-c4f6188e-1e5e-7a8e-2fca-a9c17b3e342e-cc1391da {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_90b40a11-a79d-f5af-2ab0-3c9977c0adfc-cc1391da {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_45fe2a0f-c69e-275b-599d-46deca37ff33-cc1391da {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0134b7f6-6391-2111-8a8b-e6ff4d936c37-9225129e, #w-node-_4efda1cf-8698-3662-a50d-45580cfcc43d-9225129e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fb80090b-4c04-fda2-1dd7-649af2ececdb-1038e7a5, #w-node-_76a22a68-3f14-bd0d-c85d-6f15b5092ba4-1038e7a5, #w-node-_9a08d6fd-210a-29ee-ce26-a584b6b0cccc-1038e7a5 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0134b7f6-6391-2111-8a8b-e6ff4d936c37-cc1391da, #w-node-_4efda1cf-8698-3662-a50d-45580cfcc43d-cc1391da {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bd1c2d23-a9a4-8d51-c96d-d2352e1840be-cc1391da {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-HeavyItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portrait';
  src: url('../fonts/Portrait-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portraitcond';
  src: url('../fonts/PortraitCond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portraitcond';
  src: url('../fonts/PortraitCond-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portraitcond';
  src: url('../fonts/PortraitCond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portraitcond';
  src: url('../fonts/PortraitCond-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portraitcond';
  src: url('../fonts/PortraitCond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sharpgrotesk';
  src: url('../fonts/SharpGrotesk-Black10.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}