:root {
    --blue-main: #063D66;
    --green-main: #88D667;
    --blue-second: #13A8E2;
    --text-black: #151515;
    --text-gray: #333333;
    --text-gray-lighter: #555555;
}

html {
    scroll-behavior: smooth;
}

a:visited, a:link {
    color:inherit;
}

@font-face {
    font-family: 'pp_neue_machinalight';
    src: url('fonts/ppneuemachina-light-webfont.woff2') format('woff2'),
         url('fonts/ppneuemachina-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pp_neue_machinaregular';
    src: url('fonts/ppneuemachina-regular-webfont.woff2') format('woff2'),
         url('fonts/ppneuemachina-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pp_neue_machina-bold';
    src: url('fonts/neue-machina-bold.woff2') format('woff2'),
         url('fonts/neue-machina-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal
}


@font-face {
    font-family: 'pp_neue_machinaultrabold';
    src: url('fonts/ppneuemachina-ultrabold-webfont.woff2') format('woff2'),
         url('fonts/ppneuemachina-ultrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal
}

.wow.animate__fadeInLeft, .wow.animate__fadeInRight {
    animation-duration: 1.2s; /* default Animate.css is 1s */
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.wow.animate__fadeInUp {
    animation-duration: 1.2s; /* default Animate.css is 1s */
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.wow.animate__fadeIn {
    animation-duration: 1.4s; /* default Animate.css is 1s */
    animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}


body {
    margin:0;
    padding:0;
    font-family: 'Inter', sans-serif;
    font-weight:300;
    font-size: 14px;
}

strong {
    font-weight:600;
}

.cont-page {
    max-width: 1512px;
    background-color: white;
    margin:0 auto;
}

h1, h2, h3, h4, h5 {
    font-weight:normal;
}

body p {
 letter-spacing: .01em;

}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index:900;
    width:100%;
    margin-left:-100%;
}

header.inter {
    position: absolute;
    margin-left:0;
}

.cont-header {
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,.8);
}

.cont-header .nav {
    width:78%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 84px;
}

.cont-header .nav .user {
    width: 18px;
    height: auto;
    margin: 0 17px 0 39px;
}

.cont-header .nav .user svg {
    display: block;
    transition: transform .3s ease;
    color:white;
}

.cont-header .nav .user a {
    text-decoration: none;
}

.cont-header .nav .user a:hover {
    color:var(--green-main);
}

.cont-header .nav .user a:hover svg {
    transform: scale(1.2);
    color:var(--green-main);
}



.cont-header .logo {
    width:15%;
    background-color: var(--blue-main);
    height: 84px;
    display: flex;
    justify-content: flex-start;
    padding-left: 4%;
}


.cont-header .logo a {
    display: flex;
}


.cont-header .logo img {
    width:76%;
    height:auto;
}

.cont-header .nav .main-menu {
    list-style: none;
    margin:0;
    padding:0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,.3);
    height:100%;
    padding-right:38px;
}


.cont-header .nav .main-menu li {
    margin: 0 0 0 40px;
    font-size: 10px;
    letter-spacing: 0.01em;
    font-family:'pp_neue_machina-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: normal;
    font-style: normal;
}

.cont-header .nav .main-menu li a, .main-row .nav a {
    text-decoration: none;
    color:white;
    transition: color .3s ease;
}

.cont-header .nav .main-menu li a span.underl, .main-row .nav a span.underl {
    border-bottom: 1px solid var(--green-main);
    display: block;
    width: 0;
    transition: all .3s ease;
    height:4px;
}

.cont-header .nav .main-menu li a:hover, .main-row .nav a:hover {
    text-decoration: none;
    color:var(--green-main);
}

.cont-header .nav .main-menu li a:hover span.underl, .main-row .nav a:hover span.underl {
    width: 100%;
}

.main-row .nav a:hover span.underl {
    width: 100%;
    border-color: white;
}


.cont-header .sandwich {
    display:none;
}

.nav-mob {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.sandwich-icon {
    width: 33px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 20; /* on top of nav */
    margin-right: 28px;
  }
  
  .sandwich-icon  .line {
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: #999999;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
  
  .sandwich-icon  .top {
    top: 0;
  }

  .sandwich-icon  .middle {
    top: 9px;
  }

  .sandwich-icon  .bottom {
    top: 18px;
  }
  
  /* Open state animation */
  .sandwich-icon.open .top {
    top: 9px;
    transform: rotate(45deg);
  }
  
  .sandwich-icon.open .middle {
    opacity: 0;
  }
  
  .sandwich-icon.open .bottom {
    top: 9px;
    transform: rotate(-45deg);
  }

  .sandwich .user {
    margin-right:30px;
  }

  .sandwich .user a {
    display:block;
    width:100%;
    height:100%;
  }

  .sandwich .user svg {
    width: 24px;
  }



.cont-hero {

    width:100%;
    position:relative;
    overflow:hidden;
    background-size: cover;
    background-repeat: no-repeat;
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.cont-hero::after {
    content:'';
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    opacity: 1;
    z-index:2;
}

.cont-hero.inter {
    height:465px;
    background-image: none;
    position:relative;
    overflow: hidden;
}

.cont-hero.inter::after  {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    opacity: .8;
}


.cont-hero.inter .main-hero-img {
    display:block;
    height:auto;
    width:100%;
}

.cont-hero.inter .hero {
    display:block;
    width:100%;
    position:absolute;
    left:0;
    top:70px;
    margin-top: 150px;
    margin-left:0;
}


.cont-hero.inter {
    height:465px;
    background-image: none;
}


.hero {
    height:100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    height: 100%;
    margin-top: 210px;
    position: relative;
    z-index:900;
    width:100%;
    margin-left:-100%;
}

.swiper {
    width:100%;
    z-index:500;
}

.swiper .swiper-slide img {
    width:100%;
    height:auto;
    display:block;
}

.hero .content-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index:2;
    width: 60%;
    padding-left: 10%;
}

.hero .content-info h1 {
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-weight:normal;
    font-size:45px;
    line-height: 1.2em;
    margin-bottom: 21px;
}

.hero .content-info h1 .accent {
    color:var(--green-main);
}

.hero .content-info p {
    font-size: 15px;
    margin: 8px 0 45px;
    line-height: 1.7em;
    font-family: 'Inter';
    width: 64%;
    font-weight: 400;
}


.button-basic a {
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.button-basic a svg {
    margin-left: 10px;
}

.button-basic {
    border:1px solid var(--green-main);
    padding: 13px 35px 12px;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    color:white;
    text-align: center;
    width:fit-content;
    cursor:pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    font-weight:600;
    letter-spacing: 0.07em;
    display:flex;
    justify-content: center;
    align-items: center;
}

.button-basic:hover {
    background-color: var(--green-main);
    color:black;
    padding-right: 24px;
}

.button-basic svg {
    color:var(--blue-main);
    transition: all .3s ease;
}

.button-basic:hover svg {
    padding-left: 12px;
    color:black;
}


.button-basic.blue {
    border:1px solid var(--blue-main);
    color:var(--blue-main);
    font-weight:700;
}

.button-basic.blue:hover {
    background-color: var(--blue-main);
    color:white;
}

.button-basic.blue:hover svg {
    color:white;
}

.button-basic.black:hover {
    background-color: var(--blue-main);
    color:white;
    border-color: var(--blue-main);
}

.button-basic.black:hover svg {
    color:white;
}

.button-basic.blue svg {
    color:var(--blue-main);
}

.button-basic.black {
    border:1px solid black;
    color:black;
    font-weight:700;
}

.button-basic.black svg {
    color:black;
}


.button-basic.filled.white {
    border:0;
    background-color: white;
    color:var(--blue-main);
    font-weight:700;
    border:1px solid white;
}

.button-basic.filled.white:hover {
    background-color: transparent;
    color:white;
}

.button-basic.filled.white:hover svg {
    color:white;
}

.button-basic svg {
    width:18px;
    color:white;
    margin-left: 12px;
}

.button-basic.filled.white svg {
    color:var(--blue-main);
}

.button-basic.filled.blue svg {
    color:white;
}

.dnwn-pdf {
display: flex;
justify-content: flex-start;
align-items: center;
margin-top:35px !important;
}

.dnwn-pdf a {
    color:var(--blue-main);
    text-decoration: none;
    font-size: 14px;
    font-family: 'pp_neue_machina-bold', sans-serif;
    letter-spacing: 0.017em;
    font-weight: normal;
    line-height: 1.5em;
}

.dnwn-pdf a:hover {
    text-decoration: underline;
}

.dnwn-pdf svg {
    width:38px;
    height:auto;
    margin-right:16px;
}

.intro-block {
    width: 80%;
    margin: 100px auto;
   
}

.intro-block  .wrap-intro-block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.intro-block  .wrap-intro-block .info {
    background-color: var(--blue-main);
    color: white;
    position: relative;
    max-width: 37%;
    padding: 5% 21% 9% 6%;
    margin-right: -140px;
}

.intro-block  .wrap-intro-block .info h2 {
    font-size: 34px;
    font-family: 'pp_neue_machina-bold', sans-serif;
    letter-spacing: 0.017em;
    font-weight: normal;
}

.intro-block  .wrap-intro-block .info h3 {
    font-size: 21px;
    font-family: 'pp_neue_machina-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0;
    margin-bottom: 68px;
    opacity: .5;
}

.intro-block  .wrap-intro-block .info p {
    font-size: 13px;
    line-height: 1.8em;
    margin: 31px 0 39px;
    font-weight: 300;
}

.intro-block  .wrap-intro-block .photo {
    flex: 1;
    z-index: 1;
    position: relative;
    z-index: 2;
    border: 5px solid white;
}

.intro-block  .wrap-intro-block .photo img {
    display: block;
    width: 100%;
    height: auto;
}

.products {
    width: 100%;
    margin: 80px auto;
    background-color: #f6f6f6;
    padding: 65px 0;
}

.products h2 {
    font-size: 24px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    color:var(--blue-main);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 27px;
}

.products p {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-align: center;
    color: var(--text-gray);
    line-height: 1.7em;
    width: 54%;
    margin: 0 auto;
}

.products .cont-products {
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:80%;
    margin: 66px auto;
}

.products .button-basic {
    margin: 86px auto 30px;
}

.products .cont-products .wrap-product {
    width:30%;
    position:relative;
    aspect-ratio: 1/1;
    overflow:hidden;
}

.products .cont-products .wrap-product::after {
   content: '';
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, .6);
    transition: all .3s ease;
    width: 93%;
     height: 93%;
     top: 3%;
     left: 3%;
}

.products .cont-products .wrap-product:hover::after {
    content: '';
     width: 89%;
     height: 89%;
     top: 5%;
     left: 5%;
 }

.products .cont-products .wrap-product:first-child {
    margin-top:45px;
}

.products .cont-products .wrap-product:last-child {
    margin-top:-45px;
}

.products .cont-products .wrap-product img {
    width:100%;
    height:auto;
    display: block;
    transition: all .8s ease;
}

.products .cont-products .wrap-product:hover img {
    transform: scale(1.1);
}

.products .cont-products .wrap-product span {
    position: absolute;
    width:100%;
    text-align: center;
    font-size: 22px;
    font-family: 'pp_neue_machina-bold', sans-serif;
    color:white;
    top: 50%;
    transform: translateY(-50%);
    z-index:5;
}


.cifras {
    width: 100%;
    margin: 80px auto;
    padding: 45px 0;
}

.cifras.productos {
    background-color: #f3f3f3;
    padding: 70px 0;
    margin-bottom:0;
}


.cifras h2 {
    font-size: 23px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    letter-spacing: 0.14em;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 84px;
    color: var(--text-gray)
}

.wrap-cifras {
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    width:80%;
    margin: 46px auto;
}

.wrap-cifras .item-cifra {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:86%;
    padding: 0 7%;
    border-right:1px dashed #cccccc;
}

.wrap-cifras .item-cifra:first-child {
    padding-left:0;
}

.wrap-cifras .item-cifra:last-child {
    padding-right:0;
    border:0;
}

.wrap-cifras .item-cifra span {
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-align: center;
    color: var(--green-main);
    letter-spacing: 0.04em;
}

.wrap-cifras .item-cifra p {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    color: var(--text-gray);
    line-height: 1.5em;
    margin:24px 0;
}

.wrap-cifras .item-cifra img {
    margin: 0 auto;
}


.corazon {
    background-image: linear-gradient(to bottom, #063D66, #5491C3);
    height:828px;
    position: relative;
}

.corazon #scrollVideo  {
    width:100%;
}

.wrap-corazon {
    width: 80%;
    margin: 40px auto;
    display: flex;
    padding: 60px 10%;
    position: absolute;
    left: auto;
    top: 12px;
    right: auto;
    z-index: 3;
}

.wrap-corazon h2 {
    font-size: 35px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-weight: normal;
    color: white;
    line-height: 1.3em;
    width:45%;
    margin-top: 15px;
}

.wrap-corazon .text {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: white;
    line-height: 1.7em;
    width:55%;
}

.trazabilidad {

}

.trazabilidad .wrap-trazabilidad {
    width:100%;
    display:flex;
    justify-content: flex-start;
    align-items: center;
    
}

.trazabilidad .wrap-trazabilidad .content {
    width:50%;
    aspect-ratio: 1/1;
    background-color: white;
    padding-left:10%;
    padding-right:10%;
    padding-top:5%;
    box-sizing: border-box;
    position: relative;
}

.trazabilidad .wrap-trazabilidad .content h3 {
    font-size: 21px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0;
    margin-bottom: 68px;
    color:var(--green-main);
}

.trazabilidad .wrap-trazabilidad .content h2 {
    font-size: 38px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    letter-spacing: 0.01em;
    font-weight: normal;
    margin-bottom: 24px;
    color: var(--text-gray);
    line-height:1.2em;
}

.trazabilidad .wrap-trazabilidad .content p {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-gray-lighter);
    line-height: 1.7em;
    margin: 34px 0 47px;
}

.trazabilidad .wrap-trazabilidad .photo {
    overflow:hidden;
    width:50%;
    aspect-ratio: 1/1;
    position: relative;
}

.trazabilidad .wrap-trazabilidad .photo img {
    height:100%;
    width:auto;
}

.trazabilidad .wrap-trazabilidad .content .circles {
    position: absolute;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top:50%;
    margin-top:-241px;
    right:-46px;
    z-index: 2;
    height:fit-content;
}

.trazabilidad .wrap-trazabilidad .content .circles .circle {
    border-radius: 200px;
    width:92px;
    height:92px;
    background-color: #88D667;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-top:39px;
    border: 5px solid white;
    box-sizing: border-box;
}

.trazabilidad .wrap-trazabilidad .content .circles .circle:first-child {
    margin-top:0;
}

.trazabilidad .wrap-trazabilidad .content .circles .circle img {
    display: block;
    height:40px;
    width:auto;
}

.trazabilidad .wrap-trazabilidad .content .circles .circle:first-child img {
    height:30px;
}

.trazabilidad .wrap-trazabilidad .content .circles .circle:last-child img {
    height:18px;
}

.sosten {
    width:100%;
    height:776px;
    display: flex;
    justify-content: flex-start;
}

.sosten .wrap-sosten {
    width:100%;
    height:100%;
    margin-left:-100%;
    position:relative;
    overflow: hidden;
    z-index:2;
}

.sosten .wrap-sosten .lwg {
    position: absolute;
    bottom:50px;
    left:50px;
    width: 140px;
}

.sosten .wrap-sosten .lwg img {
   display:block;
   width: 100%;
   height:auto;
}

.sosten .wrap-sosten .content {
    background-color: rgb(88 247 58 / 77%);
    width:100%;
    position:absolute;
    top:0;
    left:50%;
    height:100%;
    width:50%;
    padding-left:7%;
    padding-right:10%;
    padding-top:5%;
    box-sizing: border-box;
}

.sosten .wrap-sosten .content h3 {
    font-size: 21px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0;
    margin-bottom: 121px;
    color:white;
}

.sosten .wrap-sosten .content h2 {
    font-size: 38px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    letter-spacing: 0.01em;
    font-weight: normal;
    margin-bottom: 24px;
    color: black;
    line-height:1.2em;
}

.sosten .wrap-sosten .content p {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: black;
    line-height: 1.7em;
    margin: 34px 0 47px;
    padding: 0 20% 0 0;
}

.planet-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index:1;
}

.planet, .panoramic.animar img  {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    opacity: 1;
    transition: none;
    visibility: hidden;
}

.panoramic.animar {
    height:570px;
    overflow: hidden;
}

.zoom-out {
    /* We don't animate immediately anymore */
}

.planet.animate__animated.zoom-out, .panoramic.animar img.animate__animated.zoom-out {
    animation: zoom-Out 3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes zoom-Out {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        visibility: visible;
    }
}

footer {
    background-color: var(--blue-main);
    padding: 112px 0;
}

footer .wrap-footer  {
    width:80%; 
    margin:0 auto;
}

footer .wrap-footer .main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color:white;
}

footer .wrap-footer .main-row h2 {
    font-size: 15px;
    margin-bottom: 43px;
    letter-spacing: 0.01em;
}

footer .wrap-footer .main-row  .logo {
    width:24%;
}

footer .wrap-footer .main-row  .logo img {
    width:60%;
    height:auto;
}

footer .wrap-footer .main-row  .marcas {
    width:24%;
}

footer .wrap-footer .main-row  .marcas div {
    opacity: .6;
}

footer .wrap-footer .main-row  .marcas .lecom, footer .wrap-footer .main-row  .marcas .gapelli, footer .wrap-footer .main-row  .marcas .parpelli {
    width: 33%;
    padding-bottom: 41px;
}

footer .wrap-footer .main-row .address {
    width: 24%;
    font-size: 13px;
}

footer .wrap-footer .main-row .address strong {
    display: block;
    padding-bottom: 11px;
    padding-left: 0;
    opacity: .7;
}

footer .wrap-footer .main-row .address span {
    display:block;
    padding-bottom: 22px;
    opacity: .7;
}

footer .wrap-footer .main-row .address .email {
    color:var(--blue-second);
    margin-top:9px;
}

footer .wrap-footer .main-row .nav {
    width:24%;
}

footer .wrap-footer .main-row .nav a {
    color: white;
    font-size: 13px;
    text-decoration: none;
    display: block;
    padding-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: block;
    width: fit-content;
}

footer .wrap-footer .main-row .nav a:before {
    content:'';
    background-image: url(images/flecha-footer.svg);
    width:12px;
    height:11px;
    background-repeat: no-repeat;
    display:inline-block;
    margin-right:9px;
}

footer .wrap-footer .main-row .feat {
    width:4%;
}

footer .wrap-footer .main-row .feat .up {
    width:25px;
    height:25px;
    border:1px solid rgba(255,255,255,.3);
    display:flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border .3s ease;
}

footer .wrap-footer .main-row .feat .up:hover { 
    border:1px solid rgba(255,255,255,.8);
}

footer .wrap-footer .main-row .feat .up svg {
    width: 12px;
    height: auto;
    color:var(--green-main);
    margin-top:-2px;
}

footer .wrap-footer .sec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-top:60px;
}

footer .wrap-footer .sec-row span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    margin:55px 0;
    color:white;
    opacity: .5;
    margin: 15px 0;
}

footer .wrap-footer .sec-row .social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 120px;
}

footer .wrap-footer .sec-row .social svg {
    color:white;
    opacity: .6;
    width:18px;
    height:auto;
    cursor: pointer;
    transition: opacity .3s ease;
}

footer .wrap-footer .sec-row .social svg:hover {
    opacity: 1;
}

.mask {
    background-color: rgba(0, 0, 0, .8);
    display:block;
    position:fixed;
    width:100%;
    height:100%;
    z-index: 5;
    top:0;
    left:0;
}

.area-cliente {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 901;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-cliente .login {
 background-color: white;
 border-radius: 8px;
 padding:85px;
 width:450px;
 position:relative;
}

.area-cliente .login h2 {
    font-size:32px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-weight:normal;
    color:#222222;
   }

.area-cliente .login .cont-input {
    width: 100%;
    margin:15px 0;
}

.area-cliente .login .cont-input input {
    width: 100%;
    height:46px;
    background-color: #F9F9F9;
    border:1px solid #cccccc;
    margin:8px 0;
    border-radius: 2px;
    position:relative;
}

.area-cliente .login .cont-input input::after {
    content: "";
    width: 30px;
    height:auto;
    display:block;
    position: absolute;
    right:8px;
    top:8px;
}

.area-cliente .login .cont-input.email input::after {
background-image: url(/images/icon-user-login.svg);
}

.area-cliente .login .cont-input.pass input::after {
    background-image: url(/images/icon-pass-eye-login.svg);
}

.area-cliente .login .cont-input label {
    font-size: 11px;
    color: #555555;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}


.area-cliente .login .cont-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:12px 0 30px;
}

.area-cliente .login .cont-links .remember {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.area-cliente .login .cont-links .remember span {
    font-size: 13px;
    margin-left: 5px;
}

.area-cliente .login .cont-links .forgot a {
    font-size: 13px;
    color:var(--blue-second);
    font-weight: 500;
}

.area-cliente .button-basic {
   width:100%;
   height:48px;
   cursor:pointer;
}

.area-cliente .close {
   position:absolute;
   right:0;
   top:0;
   width:36px;
   height:36px;
   border-radius: 50px;
   background-color: var(--blue-second);
   display: flex;
   justify-content: center;
   align-items: center;
   padding:3px;
   margin-top:-18px;
   margin-right:-18px;
}

.area-cliente .close:hover {
    background-color: var(--blue-main);
}

.area-cliente .close svg {
   color:white;
 }


 .mask,
.area-cliente,
.certif-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* When active, fade in */
.mask.active,
.area-cliente.active,
.certif-modal.active {
  opacity: 1;
  pointer-events: auto;
}



.certif-modal {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certif-modal .wrap-certif-modal {
    background-color: white;
    border-radius: 8px;
    padding: 60px 85px;
    width: 72%;
    max-width: 980px;
    height: 78%;
    position: relative;
    overflow-y:auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.certif-modal .wrap-certif-modal .menu-certif {
    width:100%;
    margin-bottom: 50px;
}

.certif-modal .wrap-certif-modal .menu-certif ul {
    list-style: none;
    margin:0;
    padding:0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
}

.certif-modal .wrap-certif-modal .menu-certif ul li {
    font-family: 'pp_neue_machina-bold';
    font-size: 16px;
    color:#444444;
    text-transform: uppercase;
    padding:14px 0;
    width:17%;
    text-align: center;
    letter-spacing: 0.06em;
    cursor: pointer;
}

.certif-modal .wrap-certif-modal .menu-certif ul li.active {
    border-bottom: 3px solid var(--blue-main);
    color:var(--blue-main);
}

.certif-modal .wrap-certif-modal .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.certif-modal .wrap-certif-modal .wrapper .text {
    width:60%;
}

.certif-modal .wrap-certif-modal .wrapper .text h2 {
    font-family: 'pp_neue_machinaultrabold';
    font-size: 32px;
    color:var(--blue-main);
}

.certif-modal .wrap-certif-modal .wrapper .text span {

}

.certif-modal .wrap-certif-modal .wrapper .text span p {
    font-size: 14px;
    color:#444444;
    line-height: 1.6em;
}


.certif-modal .wrap-certif-modal .wrapper .logo {
    width:34%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 44px;
}

.certif-modal .wrap-certif-modal .wrapper .logo img {
    width:67%;
    height: auto;
    flex-shrink: 0;
}

.certif-modal .close {
   position:absolute;
   right:0;
   top:0;
   width:36px;
   height:36px;
   border-radius: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
   padding:3px;
   margin-top:18px;
   margin-right:18px;
   cursor:pointer;
   color:#666666;
   transition: all .3s ease;
}

.certif-modal .close:hover {
    transform: scale(.85);
}

.tab-content {
    display: none;
    width:100%;
}

.tab-content:first-child {
  display: flex; /* Or block, depending on your layout */
}

.title-text-2-cols .wrapper {
    width: 79%;
    margin: 90px auto 0;
}


.title-text-2-cols .wrapper  h2 {
    font-family: 'pp_neue_machinaultrabold';
    font-size: 34px;
    color:var(--blue-main);
}

.title-text-2-cols .wrapper  .text {
    columns: 2;
    display: flex;
}

.title-text-2-cols .wrapper .text p {
    line-height: 1.7em;
    font-size: 15px;
    width: 96%;
    padding: 0 3% 0 0;
    columns: 1;
    margin-bottom: 72px;
}


.title-text-block .wrapper {
    width: 79%;
    margin: 70px auto;
}

.title-text-block .wrapper h2 {
    font-family: 'pp_neue_machinaultrabold';
    font-size: 34px;
    color:var(--blue-main);
}

.title-text-block .wrapper .content-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.title-text-block .wrapper .content-wrap .text {
    width:43%;
    line-height: 1.7em;
    font-size: 15px;
}

.title-text-block .wrapper .content-wrap .block-apart {
    width:40%;
}

.title-text-block .wrapper .content-wrap .block-apart h3 {
    font-family: 'pp_neue_machinaultrabold';
    font-size: 21px;
    color:var(--blue-main);
    line-height:1.4em;
}


.title-text-block .wrapper .content-wrap .block-apart ul {
    margin: 23px 0 0 0;
    padding:0;
}

.title-text-block .wrapper .content-wrap .block-apart ul li {
    display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        font-size: 15px;
        font-weight: 500;
        padding: 14px 0;
    
}

.title-text-block .wrapper .content-wrap .block-apart ul li::before {
    content: '';
    background-image: url(images/bulet-check.svg);
    background-repeat: no-repeat;
    width:20px;
    height:20px;
    display:block;
    margin-right:18px;
    flex-shrink: 0;
}


#traza-sello {
    padding:80px 0;
    background-color: #f4f4f4;
}

.title-text-block .wrapper {
    width: 79%;
    margin: 70px auto;
}



.photos-3-missaligned {
    width: 79%;
    margin: 20px auto;
    display:flex;
    justify-content: space-between;
    align-items: center;
}


.photos-3-missaligned div {
    width: 79%;
    margin: 70px auto;
    width:32%;
    position:relative;
    overflow: hidden;
}

.photos-3-missaligned div::after {
    content: '';
    background-color: rgba(0,0,0,.3);
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.photos-3-missaligned.nomask div::after {
    background-color: transparent;
}

.photos-3-missaligned div:first-child {
    margin-top: 110px;
}

.photos-3-missaligned div:last-child {
    margin-top: 0;
}

.photos-3-missaligned div img {
  width:100%;
  height:auto;
  display: block;
  transition: all .8s ease;
}


.photos-3-missaligned div:hover img {
    transform: scale(1.1);
}

.photos-3-missaligned div span {
    position: absolute;
    width:100%;
    text-align: center;
    font-family: 'pp_neue_machina-bold', sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    color:white;
    left:0;
    top:75px;
    z-index: 3;
}

.photos-3-missaligned div span.blk {
    color:#111111;
}

.photos-3-missaligned.left div span {
    text-align:left;
    left:44px;
}

.photos-3-missaligned.upper div span {
    text-transform: uppercase;
}

#mision-vision {
    background-color: var(--blue-main);
    width: 100%;
    position:relative;
    overflow:hidden;
}

#mision-vision .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 79%;
    margin: 0 auto;
    padding: 148px 0;
    position: relative;
    z-index: 5;
}

#mision-vision .wrapper div {
    width:46%;
}

#mision-vision .wrapper div h3 {
    color:white;
    font-family: 'pp_neue_machina-bold', sans-serif;
    font-size: 25px;
    letter-spacing: 0.03em;
}

#mision-vision .wrapper div p {
    color:white;
    font-size: 15px;
    line-height: 1.7em;
}

#mision-vision::after {
    content:'';
    background-image: url(images/texture-leathers.jpg);
    background-position: center;
    background-size: cover;
    opacity:0.1;
    background-repeat: no-repeat;
    position: absolute;
    left:0;
    top:0;
    z-index:3;
    width: 100%;
    height: 100%;
}

.text-photo-aside {
    padding:30px 0;
}

.text-photo-aside.notoppadding, .text-photo-aside .cont-wrapper.notoppadding {
    padding-top:0;
  
}


.text-photo-aside .cont-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 79%;
    margin: 0 auto;
    padding: 28px 0;
    flex-direction: column;
}

.text-photo-aside .cont-wrapper .wrapper {
    width:100%;
    padding: 28px 0;
}

.text-photo-aside .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 79%;
    margin: 0 auto;
    padding: 48px 0;
}

.text-photo-aside .title {
    color: #333333;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-size: 38px;
    letter-spacing: 0.01em;
    margin: 3px 0 28px 0;
    width: 67%;
    line-height: 1.3em;
}

.text-photo-aside .title.sub {
    color: var(--blue-main);
    font-size: 35px;
    width: 45%;
    margin-bottom: 5px;
}

.text-photo-aside .cont-wrapper.notoppadding .wrapper .text {
    width:52%;
}

.text-photo-aside .wrapper .text {
    width:42%;
}

.text-photo-aside .wrapper .text h3 {
    color: var(--blue-main);
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-size: 33px;
    letter-spacing: 0.01em;
    margin: 3px 0 28px 0;
}

.text-photo-aside .wrapper .text p {
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom:23px;
}

.text-photo-aside .cont-wrapper .wrapper .text p {
    margin-top:0;
}

.text-photo-aside .wrapper .photo {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-photo-aside .wrapper .photo img {
    width:100%;
    height: auto;
}

.text-photo-aside .wrapper .photo img.lwg {
    width:159px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.text-photo-aside .wrapper .photo span {
    font-size: 12px;
    font-style: italic;
    color: #555555;
    padding-top: 13px;
    display: block;
}

.text-photo-aside .wrapper .photo .logos {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 270px 0 0 0;
    padding: 0;
}

.text-photo-aside .wrapper .photo .logos li {
    width: 15%;
    cursor:pointer;
}

.text-photo-aside .wrapper .photo .logos li img {
    width: 100%;
    height:auto;
}

.panoramic {
    display:flex;
    justify-content: center;
    position: relative;
}

.panoramic .icon-digit {
    width:180px;
    height:180px;
    padding:35px;
    display:flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left:50%;
    top:50%;
    margin-left: -90px;
    margin-top: -90px;
    box-sizing: border-box;
    background-color: var(--green-main);
    border-radius: 100px;
}

.panoramic .icon-digit img {
    width:50%;
    height:auto;
}


.panoramic img {
    width:100%;
}

#tres-empresas {

}

#tres-empresas .wrapper {
    width: 79%;
    margin: 0 auto;
    padding: 102px 0;
}

#tres-empresas .wrapper h3 {
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-size: 29px;
    letter-spacing: 0.01em;
    margin: 3px 0 28px 0;
}

#tres-empresas .wrapper p {
    font-size: 15px;
    margin: 3px 0 28px 0;
    line-height: 1.6em;
}

#tres-empresas .wrapper .wrap-empresas {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 92px;

}

#tres-empresas .wrapper .wrap-empresas .cont-empre {
    display: flex;
    flex-direction: column;
    width: 21%;
    align-items: center;
    justify-content: space-between;
    height: 299px;
}

#tres-empresas .wrapper .wrap-empresas .cont-empre .logo {
    display: block;
    padding-bottom: 20px;
}

#tres-empresas .wrapper .wrap-empresas .cont-empre .icon {
    margin-top: 20px;
}

#tres-empresas .wrapper .wrap-empresas .cont-empre p {
    text-align: center;
    font-size: 14px;
    margin: 13px 0;
    font-weight: 400;
    line-height: 1.5em;
}

#tres-empresas .wrapper .wrap-empresas .cont-empre div {
    height: 100%;
    width: 1px;
    background-color: #cccccc;
    padding: 10px 0;
}



.text-photo-aside.block {
    background-color: #F7F7F7;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 79%;
    margin: 100px auto;
    padding: 0;
}

.text-photo-aside.block  .text {
    width: 47%;
    padding: 73px 0 0 74px;
    box-sizing: border-box;
}

.text-photo-aside.block  .text h3 {
    color: var(--blue-main);
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-size: 33px;
    letter-spacing: 0.01em;
    margin: 3px 0 28px 0;
}

.text-photo-aside.block  .text p {
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom:23px;
}

.text-photo-aside.block  .photo {
    width:37%;
}

.text-photo-aside.block .photo img {
    width:100%;
    height: auto;
}

#graph-procesos {
    padding: 100px 0;
    background-image: url(images/marking-leather-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position:relative;
    z-index: 2;
}

#graph-procesos::after{
    content:'';
    background-color: var(--blue-main);
    opacity: .85;
    width: 100%;
    height:100%;
    position: absolute;
    left:0;
    top:0;
}

#graph-procesos .wrapper {
    width:79%;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}

#graph-procesos .wrapper h2 {
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-size: 28px;
    letter-spacing: 0.025em;
    color:white;
    text-align: center;
    margin:0 0 90px 0;
}

#graph-procesos .wrapper div {
    width: 928px;
    margin:0 auto;
}

#graph-procesos .wrapper div img {
    width:100%;
    max-width:928px;
}




#sello-lecom-logramos {
    padding: 100px 0;
    margin: 0 auto;
    background-color: #F4F4F4;
}

#sello-lecom-logramos h2 {
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-size: 29px;
    letter-spacing: 0.025em;
    color:#111111;
    text-align: center;
    margin:0 0 70px 0;
}


.text-photo-block-white {
    width: 79%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.text-photo-block-white .info {
    background-color: white;
    color: #333333;
    position: relative;
    padding: 5% 13% 6% 24%;
    margin-left: -170px;
    order: 3;
    width: 80%;
    box-sizing: border-box;
}


.text-photo-block-white .info .logos {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 90px auto 20px auto;
    padding: 0;
    width: 85%;
}

.text-photo-block-white .info .logos li {
    width: 16%;
    cursor: pointer;
}

.text-photo-block-white .info .logos li img {
    width: 100%;
    height:auto;
}



.text-photo-block-white .info h2 {
    font-size: 34px;
    font-family: 'pp_neue_machina-bold', sans-serif;
    letter-spacing: 0.017em;
    font-weight: normal;
}

.text-photo-block-white .info ul {
    margin:0;
    padding:0;
}

.text-photo-block-white .info .lista li {
    font-size: 15px;
    margin: 18px 0 28px;
    font-weight: 400;
    line-height: 1.6em;
    color: #444444;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.text-photo-block-white .info .lista li::before {
    content: '';
    background-image: url(images/bulet-check-gray.svg);
    background-repeat: no-repeat;
    width:20px;
    height:20px;
    display:block;
    margin-right:18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.text-photo-block-white .photo {
    flex: 1;
    position: relative;
    z-index: 2;
}

.text-photo-block-white .photo img {
    display: block;
    width: 100%;
    height: auto;
}

#medio-ambiente {
    background-color: var(--green-main);
    padding: 80px 0;
}

#medio-ambiente.text-photo-aside .wrapper {
    width:73%;
}

#medio-ambiente.text-photo-aside .wrapper .photo {
    width: 43%;
}

#medio-ambiente.text-photo-aside .wrapper .text {
    width: 45%;
}

#medio-ambiente.text-photo-aside .wrapper .text p, #medio-ambiente.text-photo-aside .wrapper .text h3 {
    color: #111111;
}


#no-deforestadas {
    padding: 140px 0;
    background-image: url(images/forest.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position:relative;
    z-index: 2;
}

#no-deforestadas::after{
    content:'';
    background-color: black;
    opacity: .55;
    width: 100%;
    height:100%;
    position: absolute;
    left:0;
    top:0;
}

#no-deforestadas .wrapper {
    width:73%;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}

#no-deforestadas .wrapper h3 {
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    font-size: 43px;
    letter-spacing: 0.025em;
    color: white;
    text-align: left;
    margin: 0 0 90px 0;
    width: 33%;
    line-height: 1.2em;
}

#no-deforestadas .wrapper .text  {
    width: 48%;
}


#no-deforestadas .wrapper .text p {
    color:white;
    font-weight: 400;
    font-size: 15px;
}


.energia-limpia {
    width: 80%;
    margin: 100px auto;
   
}

.energia-limpia .wrap-energia-limpia{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.energia-limpia  .wrap-energia-limpia .info {
    background-color: #f7f7f7;
    color: #333333;
    position: relative;
    max-width: 39%;
    padding: 5% 38% 9% 6%;
    margin-right: -380px;
}

.energia-limpia .wrap-energia-limpia .info h2 {
    font-size: 34px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    letter-spacing: 0.017em;
    font-weight: normal;
    color: #333333;
}

.energia-limpia  .wrap-energia-limpia .info h3 {
    font-size: 21px;
    font-family: 'pp_neue_machina-bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0;
    margin-bottom: 68px;
    opacity: .5;
}

.energia-limpia  .wrap-energia-limpia .info p {
    font-size: 14px;
    line-height: 1.8em;
    margin: 22px 0;
    font-weight: 300;
}

.energia-limpia .wrap-energia-limpia .photo {
    flex: 1;
    z-index: 1;
    position: relative;
    z-index: 2;
}

.energia-limpia  .wrap-energia-limpia .photo img {
    display: block;
    width: 100%;
    height: auto;
}



#bienestar-animal {
    background-image: url(images/cattle-feeding-2.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 70px;
    overflow: visible;
}

.wide-photo-2-cols {

}

.wide-photo-2-cols .wrapper {
    width: 79%;
    margin: 0 auto;
    background-color: white;
    margin-top: 370px;
    margin-bottom: 40px;
    padding: 40px 82px;
    box-sizing: border-box;
}

.wide-photo-2-cols .wrapper h2 {
    font-size: 38px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    letter-spacing: 0.016em;
}

.wide-photo-2-cols .wrapper div {
    columns:2;
}

.wide-photo-2-cols .wrapper p {
    font-size: 14px;
    color:#333333;
    line-height:1.6em;
    margin-top: 0;
}




#grasa-industrial .text-photo-aside.block  .text {
    width: 61%;
    padding: 80px 175px 100px 77px;
}


#grasa-industrial .text-photo-aside.block  .photo {
    width: 37%;
    order: -2;
}


#wet-blue {

}

.product-block {
    margin: 50px 0 90px;
}

.product-block .wrapper {
    width:79%;
    margin: 0 auto;
}

.product-block .wrapper .intro {
    background-color: var(--blue-main);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 76px 100px 108px;
    box-sizing: border-box;
}

#crust.product-block .wrapper .intro {
    background-color: #f7f7f7;
}

.product-block .wrapper .intro .info {
    color:white;
    width:52%;
}

#crust.product-block .wrapper .intro .info {
    color:#333333;
}

.product-block .wrapper .intro .info h3 {
    font-size: 28px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    letter-spacing: 0.016em;
}

.product-block .wrapper .intro .info p {
    font-size: 15px;
    line-height: 1.7em;

}

.product-block .wrapper .intro .photo {
    width: 330px;
    height: 330px;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
}

.product-block .wrapper .intro .photo::after {
    content: '';
    width: 311px;
    height: 311px;
    border: 1px dashed white;
    display: block;
    position: absolute;
    z-index: 3;
    left: 9px;
    top: 9px;
    border-radius: 200px;
    opacity: .6;
}

.product-block .wrapper .intro .photo img {
    width:100%;
    display:block;
    height:auto;
}

.product-block .wrapper .caracter {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding:0 100px;
    box-sizing: border-box;
}

.product-block .wrapper .caracter .photo {
    width:44%;
}

.product-block .wrapper .caracter .photo img {
    width:100%;
    display:block;
    height:auto;
    margin-top: -60px;
}

.product-block .wrapper .caracter .info {
    width:47%;
    padding-top: 40px;
}


.product-block .wrapper .caracter .info h4 {
    font-size: 18px;
    font-family: 'pp_neue_machinaultrabold', sans-serif;
    letter-spacing: 0.026em;
    text-transform: uppercase;
    color:var(--blue-main);
}

.product-block .wrapper .caracter .info ul {
    font-size: 14px;
    color:#333333;
    list-style: none;
    line-height: 1.5em;
    padding: 0;
    margin: 38px 0 40px 0;
}

.product-block .wrapper .caracter .info ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin:18px 0;
}

.product-block .wrapper .caracter .info ul li img{
    display:block;
    width:26px;
    height:26px;
    margin-right:22px;
}

.product-block .wrapper .caracter .info ul span {
    font-weight: 400;
}


#product-intro.text-photo-aside .wrapper .text {
    width: 62%;
}

#product-intro.text-photo-aside .wrapper .text p {
    font-size: 15px;
    line-height: 1.8em;
    margin-bottom: 23px;
}

#product-intro.text-photo-aside {
    padding: 80px 0 0;
}

#product-intro.text-photo-aside .cont-wrapper {
    padding-bottom:0;
}

#product-intro.text-photo-aside .cont-wrapper .wrapper {
    padding-top:4px;
}

#contacto-form input::placeholder,
textarea::placeholder {
  color: #bbb; /* Light gray */
  opacity: 1;  /* Ensures full opacity if browser applies a default */
}

#contacto-form .wrapper {
    width:80%;
    margin:80px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#contacto-form .wrapper .form {
    width:66%;
}

.button-basic.filled.blue {
    border: 0;
    background-color: var(--blue-main);
    color: white;
    font-weight: 700;
}

#contacto-form .wrapper .form p {
    line-height: 1.7em;
    margin:0;
    margin-bottom:27px;
}

#contacto-form .wrapper .form .block-inputs {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

#contacto-form .wrapper .form .block-inputs .col1 {
    width: 48%;
}

#contacto-form .wrapper .form .block-inputs .input-wrap {
    margin: 38px 0;
}

#contacto-form .wrapper .form .block-inputs .input-wrap label, #contacto-form .wrapper .form .block-message .input-wrap label {
 display: block;
 text-transform: uppercase;
 font-weight: 500;
 font-size:11px;
 letter-spacing:0.09em;
 color:#333333;
}

#contacto-form .wrapper .form .block-inputs .col1 .input-wrap input, #contacto-form .wrapper .form .block-inputs .col2 .input-wrap input {
    display: block;
    background-color: #f6f6f6;
    border-radius: 3px;
    border: 0;
    width: 100%;
    height: 48px;
    margin-top: 8px;
    padding: 9px;
    box-sizing: border-box;
}

#contacto-form .wrapper .form .block-inputs .col2 {
    width: 48%;
}

#contacto-form .wrapper .form .block-message {
    width:100%;
    margin-bottom: 40px;
}

#contacto-form .wrapper .form .block-message .legal {
    margin-top:20px;
    display: flex;
    justify-content: flex-start;
    text-align: center;
}

#contacto-form .wrapper .form .block-message .legal span {
    font-weight: 400;
    font-size:12px;
    line-height: 2em;
    letter-spacing: 0.02em;
    text-align: left;
    line-height: 2em;
}

#contacto-form .wrapper .form .block-message .legal input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right:14px;
}


#contacto-form .wrapper .form .block-message textarea {
    width:100%;
    background-color: #f6f6f6;
    border-radius: 3px;
    margin-top: 8px;
    border: 0;
    height:200px;
    padding: 9px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

#contacto-form .wrapper .info {
    width: 23%;
    border-left: 1px dashed #cccccc;
    padding-left: 5%;
}

#contacto-form .wrapper .info .address {
   margin-bottom:40px;
}

#contacto-form .wrapper .info .address strong {
   display:block;
   margin-bottom:10px;
}

#contacto-form .wrapper .info .address span {
    display:block;
    margin-bottom:22px;
}


#contacto-form .wrapper .info .map {
    
}

.hidden-gallery .modula-gallery {
    display: none;
}


footer .wrap-footer .main-row .feat .up a {
    display:block;
    margin-bottom:3px;
}

.language {
    background-color: rgba(0, 0, 0, .8);
}

.trp-language-switcher {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height:initial;
}

.trp-language-switcher > div {
    border: 0;
    background-color:transparent;
}

.trp-language-switcher > div > a {
    color: #999999;
    font-size: 15px;
}

.trp-language-switcher > div > a:hover {
    color:var(--blue-second);
    background-color: #333333;
}



@media only screen and (max-width: 760px) {

    .title-text-2-cols .wrapper .text p {
        margin-bottom: 2px;
    }

    .cont-header .logo {
        width: 220px;
        height: 74px;
    }

    .cont-header .logo img {
        width:120px;
    }

    .cont-header .nav, .language.desk  {
        display: none;
      }

    .nav-mob {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #333333;
        z-index: 9900;
        padding: 20px;
        height: 100%;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
      }

      .nav-mob ul {
        padding:20px;
        list-style: none;
        margin:0;
      }

      .nav-mob ul li {
        padding: 20px 0;
        font-size: 14px;
        font-family: 'pp_neue_machinaultrabold', sans-serif;
        letter-spacing: 0.08em;
        font-weight: normal;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
      }

      .nav-mob ul li a {
        text-decoration: none;
        color:var(--green-main);
      }

      .nav-mob ul li a:before {
        content:"";
        background-image: url(images/chevron.svg);
        background-repeat: no-repeat;
        width:9px;
        height:9px;
        margin-right:10px;
        display: inline-block;
      }
    
      body.menu-open .nav-mob {
        opacity: 1;
        visibility: visible;
        display:block;
      }

      .nav-mob .user {
        width: 60px;
        padding: 20px;
      }


      .nav-mob .user svg {
        color:white;
        width:24px;
        flex-shrink: 0;
      }

      .nav-mob .user #open-login span {
        color:white;
        font-size:15px;
        margin-left:12px;
        flex-shrink: 0;
      }

      .nav-mob .user #open-login {
        display: flex;
        align-items: center;
        text-decoration: none;
      }

    .cont-header .sandwich {
        display: flex;
        width: 50%;
        height: 74px;
        justify-content: flex-end;
        align-items: center;
    }

    .cont-header .sandwich svg {
        color: #999999;
        margin-right: 15%;
    }

    .sandwich .user svg {
        width: 24px;
    }

    .sandwich-icon {
        width: 24px;
        height: 24px;
    }

    .cont-hero {
        height: 550px;
    }

    .cont-hero {
        background-position-x: center;
    }

    .hero {
        margin-top: 143px;
    }

    .hero .content-info {
        width: 100%;
        padding-left: 6%;
    }

    .hero .content-info h1 {
        font-size: 32px;
        line-height: 1.2em;
        margin-bottom: 16px;
    }

    .hero .content-info p {
        margin: 0 0 25px;
        width: 85%;
    }

    .cont-header {
    background-color: rgba(0, 0, 0, .9);
    }

    .cont-hero.inter .main-hero-img {
        display:block;
        height: 72%;
        width:auto;
        margin-top: 74px;
    }

    .cont-hero.inter .hero {
        margin-top: 96px;
    }

    .cont-hero::after {
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .cont-hero.inter::after  {
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }


    .language {
        background-color: #161616;
    }

    .intro-block {
        width: 100%;
        margin: 0 auto;
    }

    .intro-block .wrap-intro-block {
        flex-direction: column;
    }

    .intro-block .wrap-intro-block .info {
        max-width: 100%;
        padding: 5% 11% 9% 6%;
        margin-right: 0;
    }

    .intro-block .wrap-intro-block .info h3 {
        margin-top: 22px;
        margin-bottom: 26px;
    }

    .intro-block .wrap-intro-block .info p {
        margin: 18px 0 28px;
    }

    .intro-block .wrap-intro-block .photo {
        border: 0;
    }

    .intro-block .wrap-intro-block .info h2 {
        font-size: 33px;
        line-height: 1.2em;
    }

    .products {
        margin: 0;
    }

    .products p {
        font-size: 14px;
        width: 80%;
    }

    .products h2 {
        padding: 0 3%;
    }

    .products .cont-products {
        width: 86%;
        margin: 29px auto;
        flex-direction: column;
    }

    .products .cont-products .wrap-product {
        width: 100%;
        height: 153px;
        aspect-ratio: initial;
        overflow: hidden;
        margin-top: 12px;
    }

    .products .cont-products .wrap-product::after {
        width: 95.5%;
        height: 89%;
        top: 5%;
        left: 2%;
    }

    .products .cont-products .wrap-product:first-child, .products .cont-products .wrap-product:last-child {
        margin-top: 12px;
    }

    .products .cont-products .wrap-product span {
        font-size: 18px;
        letter-spacing: 0.07em;
    }

    .products .button-basic {
        margin: 46px auto 30px;
    }

    .products {
        padding: 41px 0;
    }

    .cifras {
        width: 100%;
        margin: 30px auto;
        padding: 35px 0;
    }

    .cifras h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .wrap-cifras {
        align-items: center;
        width: 66%;
        margin: 21px auto;
        flex-direction: column;
    }

    .wrap-cifras .item-cifra {
        align-items: center;
        width: 100%;
        padding: 30px 0;
        border:0;
        border-bottom: 1px dashed #cccccc;
    }

    .corazon {
        height: 800px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        background-color: #304472;
        overflow: hidden;
        background-image: none;
    }

    .corazon #scrollVideo {
        width: 180%;
    }

    .wrap-corazon {
        width: 86%;
        margin: 0 auto;
        padding: 30px 0;
        flex-direction: column; 
    }

    .wrap-corazon h2 {
        font-size: 32px;
        width: 95%;
        margin-top: 15px;
        margin-bottom: 9px;
    }

    .wrap-corazon .text {
        width: 95%;
    }

    .trazabilidad {
        margin-bottom: 70px;
    }

    .trazabilidad .wrap-trazabilidad {
        align-items: flex-start;
        flex-direction: column;
    }

    .trazabilidad .wrap-trazabilidad .content {
        width: 100%;
        order: 1;
    }

    .trazabilidad .wrap-trazabilidad .content h2 {
        font-size: 25px;
    }

    .trazabilidad .wrap-trazabilidad .photo {
        width: 100%;
        aspect-ratio: initial;
        height: 392px;
    }

   .trazabilidad .wrap-trazabilidad .content .circles {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    top: 0;
    margin-top: -41px;
    left: 0;
    right: 0;
    z-index: 2;
    width:100%;
    }

    .trazabilidad .wrap-trazabilidad .photo img {
        height: auto;
        width: 100%;
    }

    .trazabilidad .wrap-trazabilidad .content {
        padding-left: 7%;
        padding-right: 7%;
        aspect-ratio:initial;
    }

    .trazabilidad .wrap-trazabilidad .content .circles .circle {
        margin-top: 0;
        margin-right: 12px;
        margin-left: 12px;
        width: 67px;
        height: 67px;
        border: 3px solid white;
    }

    .trazabilidad .wrap-trazabilidad .content .circles .circle img {
        height: 32px;
    }

    .trazabilidad .wrap-trazabilidad .content .circles .circle:last-child img {
        height: 15px;
    }

    .trazabilidad .wrap-trazabilidad .content .circles .circle:first-child img {
        height: 23px;
    }

    .trazabilidad .wrap-trazabilidad .content h3 {
        display:none;
    }

    .trazabilidad .wrap-trazabilidad .content h2 {
        margin-top: 46px;
    }

    .trazabilidad .wrap-trazabilidad .content p {
        margin: 27px 0 47px;
    }


    .sosten {
        width: 100%;
        height: 729px;
    }

    .sosten .wrap-sosten {
        width: 100%;
        height: 100%;
        background-image: url(images/image-planet.jpg);
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
    }

    .sosten .wrap-sosten .lwg {
        position: absolute;
        top: 23px;
        right: 30px;
        width: 111px;
        left: initial;
    }

    .sosten .wrap-sosten .content {
        width: 100%;
        top: 279px;
        left: 0;
        height: 100%;
        width: 100%;
        padding-left: 7%;
        padding-right: 10%;
        padding-top: 5%;
    }

    .sosten .wrap-sosten .content h3 {
        display: none;
    }

    .sosten .wrap-sosten .content h2 {
        font-size: 30px;
        font-family: 'pp_neue_machinaultrabold', sans-serif;
        letter-spacing: 0.01em;
        font-weight: normal;
        margin-bottom: 24px;
        color: black;
        line-height: 1.2em;
    }

    .sosten .wrap-sosten .content p {
        margin: 23px 0 29px;
        padding: 0 3% 0 0;
    }

    footer {
        padding: 72px 0;
    }

    footer .wrap-footer {
        width: 83%;
        margin: 0 auto;
    }

    footer .wrap-footer .main-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, auto);
        gap: 20px;
        column-gap: 6px;
    }

    footer .wrap-footer .main-row .logo {
        width: 150px;
        grid-column: 1;
        grid-row: 1;
    }

    footer .wrap-footer .main-row .marcas {
        width: 100%;
        opacity: 1;
        grid-column: 1 / 3;
        grid-row: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        margin-top: 16px;
        flex-direction: column;
    }

    footer .wrap-footer .main-row h2 {
    margin-bottom: 24px;
    }

    footer .wrap-footer .main-row .address {
        width: 80%;
        font-size: 13px;
        grid-column: 2;
        grid-row: 3;
    }

    footer .wrap-footer .main-row .nav {
        width: 90%;
        grid-column: 1;
        grid-row: 3;
    }

    footer .wrap-footer .main-row .feat {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    footer .wrap-footer .main-row .logo img {
        width: 100%;
        height: auto;
    }

    footer .wrap-footer .main-row .marcas .lecom, footer .wrap-footer .main-row .marcas .gapelli, footer .wrap-footer .main-row .marcas .parpelli {
        width: 90px;
        padding-bottom: 25px;
        margin-top: 23px;
    }

    footer .wrap-footer .sec-row {
        margin-top: 0;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        border-bottom:0;
    }

    footer .wrap-footer .sec-row .social {
        margin: 22px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        justify-content: flex-start;
        padding-bottom: 22px;
    }

    footer .wrap-footer .sec-row .social svg {
        width: 28px;
        margin-right: 60px;
    }

    footer .wrap-footer .sec-row span {
        order: 1;
    }

    footer .wrap-footer .main-row .feat .up {
        width: 30px;
        height: 30px;
    }

    footer .wrap-footer .main-row .feat .up a {
        display:block;
        margin-bottom:3px;
    }

    .text-photo-aside .wrapper .text h3 {
        font-size: 35px;
        line-height: 1.2em;
    }

    .cont-hero.inter {
        height: 255px;
    }
    
    .title-text-2-cols .wrapper {
        width: 83%;
        margin: 50px auto;
    }

    .title-text-2-cols .wrapper h2 {
        font-size: 31px;
        line-height: 1.2em;
    }

    .title-text-2-cols .wrapper .text p {
        line-height: 1.7em;
        font-size: 15px;
        width: 100%;
        padding: 0 2% 0 0;
    }

    .title-text-2-cols .wrapper .text {
        flex-direction: column;
    }

    .photos-3-missaligned {
        width: 100%;
        margin: 70px auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .photos-3-missaligned div {
        width: 92%;
        margin: 7px auto;
    }

    .photos-3-missaligned div:first-child {
        margin-top: -23px;

    }

    .photos-3-missaligned div:last-child {
        margin-top: 7px;
    }

    .photos-3-missaligned div img {
        width: 100%;
        height: auto;
        display: block;
    }

    #mision-vision .wrapper {
        width: 88%;
        margin: 0 auto;
        padding: 62px 0;
        flex-direction: column;
    }

    #mision-vision .wrapper div {
        width: 96%;
    }

    .text-photo-aside {
        padding: 30px 0 0;
    }

    .text-photo-aside .wrapper {
        width: 88%;
        flex-direction: column;
    }

    .text-photo-aside .wrapper .text {
        width: 95%;
    }

    .text-photo-aside .wrapper .photo {
        width: 92%;
    }

    .text-photo-aside .wrapper .photo {
        width: 100%;
    }

    .text-photo-aside .wrapper .photo .logos {
        margin: 70px auto 0 auto;
        width: 90%;
    }

    .text-photo-aside .wrapper .photo .logos li {
        width: 18%;
    }

    #historia {
        margin-top:40px;
    }

    .panoramic img {
        width: 150%;
    }

    .panoramic {
        overflow: hidden;
    }

    #tres-empresas .wrapper {
        padding: 63px 0;
        width: 88%;
    }

    #tres-empresas .wrapper h3 {
        font-size: 25px;
    }

    #tres-empresas .wrapper .wrap-empresas {

        margin-top: 50px;
        flex-direction: column;
    }

    #tres-empresas .wrapper .wrap-empresas .cont-empre {
        width: 100%;
        height: 239px;
        margin: 33px 0;
    }

    .text-photo-aside.block {
        margin: 30px auto;
        flex-direction: column;
        margin: 30px auto;
        padding: 8%;
        flex-direction: column;
        box-sizing: border-box;
        width: 100%;
        margin: 0 auto;
    }

    .text-photo-aside.block .text {
        width: 100%;
        padding: 3px 0 0 4px;
        box-sizing: border-box;
    }
    
    .text-photo-aside.block .photo {
        width: 87%;
    }

    .text-photo-aside .wrapper {
        padding-top:0;
    }

    .text-photo-aside .wrapper .text h3 {
        font-size: 29px;
    }

    .photos-3-missaligned {
        margin-bottom: 30px;
    }

    .panoramic .icon-digit {
        width: 100px;
        height: 100px;
        padding: 26px;
        margin-left: -50px;
        margin-top: -50px;
    }

    .panoramic .icon-digit img {
        width: 100%;
        height: auto;
    }

    #traza-sello {
        padding: 20px 0;
    }

    .title-text-2-cols .wrapper h2 {
        font-size: 28px;
        line-height: 1.2em;
        margin-bottom: 6px;
    }

    .title-text-block .wrapper {
        width: 88%;
        margin: 60px auto;
    }

    .title-text-block .wrapper .content-wrap {
        flex-direction: column;
    }

    .title-text-block .wrapper .content-wrap .text {
        width: 96%;
    }

    .title-text-block .wrapper .content-wrap .block-apart {
        width: 94%;
    }

    .title-text-block .wrapper .content-wrap .block-apart ul li {
        line-height: 1.5em;
    }

    #graph-procesos {
        padding: 70px 0;
    }

    #graph-procesos .wrapper {
        width: 88%;
    }

    #graph-procesos .wrapper div {
        width: 98%;
    }
    
    #graph-procesos .wrapper h2 {
        margin: 0 0 50px 0;
    }

    #sello-lecom-logramos {
        padding: 70px 0;
    }

    #sello-lecom-logramos h2 {
        margin: 0 auto 49px auto;
        width: 88%;
    }

    .text-photo-block-white {
        width: 88%;
        flex-direction: column;
    }

    .text-photo-block-white .info {
        padding: 5% 13% 9% 5%;
        margin-left: 0;
        width: 100%;
    }

    .text-photo-aside .cont-wrapper {
        width: 88%;
        padding: 28px 0;

    }

    .text-photo-aside .title {
        font-size: 28px;
        margin: 3px 0 2px 0;
        width: 100%;
        line-height: 1.3em;
    }

    .text-photo-aside .title.sub {
        font-size: 28px;
        width: 100%;
        margin-bottom: 0;
    }

    .text-photo-aside .cont-wrapper.notoppadding .wrapper .text {
        width: 95%;
    }

    .text-photo-aside .wrapper .photo img.lwg {
        margin: 40px auto 0;
    }

    #medio-ambiente {
        padding: 56px 0;
    }

    #medio-ambiente.text-photo-aside .wrapper {
        width: 88%;
        padding-bottom: 0;
    }

    #medio-ambiente.text-photo-aside .wrapper .photo {
        width: 60%;
        align-self: flex-start;
        margin-bottom: 30px;
    }

    #medio-ambiente.text-photo-aside .wrapper .text {
        width: 95%;
    }

    #no-deforestadas {
        padding: 68px 0;
    }

    #no-deforestadas .wrapper {
        width: 88%;
        padding-bottom: 0;
    }

    #no-deforestadas .wrapper h3 {
        font-size: 33px;
        margin: 0 0 27px 0;
        width: 100%;
    }

    #no-deforestadas .wrapper .text {
        width: 95%;
    }

    .energia-limpia {
        width: 100%;
        margin: 0 auto;
    }

    .energia-limpia .wrap-energia-limpia {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-direction: column;
    }

    .energia-limpia .wrap-energia-limpia .info {
        max-width: 100%;
        padding: 20px 28px;
        margin-right: 0;
        box-sizing: border-box;
    }

    .energia-limpia .wrap-energia-limpia .info h2 {
        font-size: 30px;
    }

    #bienestar-animal {
        background-size: 160%;
        background-position-x: center;
        padding-top: 10px;
        margin-top: 50px;
    }

    .wide-photo-2-cols .wrapper {
        width: 88%;
        margin-top: 180px;
        margin-bottom: 40px;
        padding: 10px 28px;
    }

    .wide-photo-2-cols .wrapper h2 {
        font-size: 30px;
    }

    .wide-photo-2-cols .wrapper div {
        columns: 1;
    }

    .text-photo-aside.block .text h3 {
        margin: 28px 0 20px 0;
        line-height: 1.25em;
    }

    #grasa-industrial .text-photo-aside.block .text {
        width: 98%;
        padding: 7px;
    }

    .text-photo-aside.block {
        margin: 30px auto;
        margin: 30px auto;
        padding: 8%;
        width: 100%;
        margin: 0 auto;
    }

    #grasa-industrial .text-photo-aside.block .photo {
        width: 77%;
    }

    .text-photo-aside.block .text h3 {
        font-size: 30px;
    }

    #product-intro.text-photo-aside {
        padding: 30px 0 0;
    }

    #product-intro.text-photo-aside .wrapper .text {
        width: 100%;
    }

    #product-intro.text-photo-aside .cont-wrapper .wrapper {
        padding-top: 14px;
        padding-bottom: 0;
    }

    .product-block .wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .product-block .wrapper .intro {
        padding: 25px 28px 184px;
        flex-direction: column;
    }

    .product-block .wrapper .intro .info {
        color: white;
        width: 100%;
    }

    .product-block .wrapper .intro .photo {
        width: 250px;
        height: 250px;
        margin-top: 30px;
        align-self: center;
        margin-bottom: 20px;
        position: relative;
    }

    .product-block .wrapper .intro .photo::after {
        content: '';
        width: 234px;
        height: 234px;
        border: 1px dashed white;
        display: block;
        position: absolute;
        z-index: 3;
        left: 7px;
        top: 7px;
        border-radius: 200px;
    }

    .product-block .wrapper .caracter {
        flex-direction: column;
        padding: 20px 35px;
    }

    .product-block .wrapper .caracter .info {
        width: 100%;
        padding-top: 40px;
    }

    .product-block .wrapper .caracter .photo {
        width: 84%;
        align-self: center;
    }

    .product-block .wrapper .caracter .photo img {
        margin-top: -140px;
    }

    #contacto-form .wrapper {
        width: 88%;
        margin: 50px auto;
        flex-direction: column;
    }

    #contacto-form .wrapper .form,  #contacto-form .wrapper .info {
        width:100%;
    }

    #contacto-form .wrapper .form .block-inputs {
        width: 100%;
        flex-direction: column;
    }

    #contacto-form .wrapper .form .block-inputs .col1,
    #contacto-form .wrapper .form .block-inputs .col2 {
        width: 100%;
    }

    #contacto-form .wrapper .form .block-inputs .input-wrap {
        margin: 30px 0;
    }

    #contacto-form .wrapper .form .block-inputs .col2 .input-wrap {
        margin-top: 0;
    }
    
    #contacto-form .wrapper .form .block-message .legal span {
        line-height: 1.5em;
        text-align: left;
    }

    #contacto-form .wrapper .form, #contacto-form .wrapper .info {
        width: 100%;
        border: 0;
        padding-left:0;
    }

    #contacto-form .wrapper .info .address {
        columns: 2;
        margin-top: 38px;
        border-top: 1px solid #cccc;
        padding-top: 50px;

    }

    .area-cliente .login {
        background-color: white;
        border-radius: 0;
        padding: 60px 31px 27%;
        width: 100%;
        position: relative;
    }

    .area-cliente .close {
        margin-top: -19px;
        margin-right: 8px;
    }

    .tab-content {
        flex-direction: column;
    }

    .certif-modal .close {
        margin-top: 10px;
        margin-right: 10px;
    }

    .certif-modal .wrap-certif-modal {
        padding: 60px 25px;
        width: 80%;
    }

    .certif-modal .wrap-certif-modal .menu-certif ul li {
        font-size: 13px;
        padding: 14px 0;
        width: 28%;
        text-wrap: nowrap;
    }

    .certif-modal .wrap-certif-modal .wrapper .text {
        width: 96%;
    }

    .certif-modal .wrap-certif-modal .menu-certif {
        margin-bottom: 21px;
    }

    .certif-modal .wrap-certif-modal .wrapper .text h2 {
        font-size: 27px;
        line-height: 1.3em;
    }

    .certif-modal .wrap-certif-modal .wrapper .logo img {
        width: 39%;
        height: auto;
        flex-shrink: 0;
    }

    .certif-modal .wrap-certif-modal .wrapper .logo {
        width: 100%;
        justify-content: center;
        align-items: center;
        padding-top: 34px;
    }
    
    .swiper .swiper-slide img {
        width:100%;
        height:auto;
    }
}


@media only screen and (min-width: 761px) and (max-width:1024px) {

    .cont-header .logo {
        width: 208px;
        height: 74px;
        margin-right: 45%;
        padding-right: 31px;
    }

    .cont-header .logo img {
        width: 137px;
    }

    .cont-header .nav, .language.desk {
        display: none;
    }

    .cont-header .sandwich {
        display: flex;
        width: 100%;
        height: 74px;
        justify-content: flex-end;
        align-items: center;
    }

    .cont-header .sandwich svg {
        color: white;
        margin-right: 50px;
    }

    .hero .content-info {
        width: 70%;
    }

    .intro-block {
        width: 100%;
    }

    .intro-block .wrap-intro-block .info h2 {
        font-size: 31px;
        line-height: 1.2em;
    }

    .wrap-cifras {
        width: 90%;
        margin: 0 auto;
    }

    .cifras {
        width: 100%;
        margin: 0 auto;
        padding-top:0;
    }

    .wrap-corazon {
        width: 88%;
        margin: 40px auto;
    }

    .wrap-corazon .text {
        width: 46%;
    }

    .wrap-corazon h2 {
        font-size: 32px;
    }

    .products .cont-products .wrap-product span {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .products .cont-products .wrap-product span {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .trazabilidad .wrap-trazabilidad .content {
        width: 58%;
        padding-left: 5%;
        padding-top: 5%;
    }

    .trazabilidad .wrap-trazabilidad .content h3 {
        font-size: 19px;
        margin-bottom: 40px;
    }

    .trazabilidad .wrap-trazabilidad .content h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .trazabilidad .wrap-trazabilidad .content p {
        margin: 22px 0 27px;
    }

    .trazabilidad .wrap-trazabilidad .content .circles .circle {
        width: 78px;
        height: 78px;
        margin-top: 21px;
    }

    .trazabilidad .wrap-trazabilidad .content .circles {
        margin-top: -189px;
        right: -37px;
    }

    .trazabilidad .wrap-trazabilidad .photo img {
        height: auto;
        width: 120%;
    }

    .trazabilidad .wrap-trazabilidad .photo {
        overflow: hidden;
        width: 50%;
        aspect-ratio: initial;
        position: relative;
    }

    .sosten {
        width: 100%;
        height: 616px;
    }

    .sosten .wrap-sosten .content {
        left: 30%;
        width: 70%;
    }

    .sosten .wrap-sosten .content h3 {
        font-size: 19px;
        margin-bottom: 72px;
    }

    .sosten .wrap-sosten .content h2 {
        font-size: 30px;
    }

    footer .wrap-footer {
        width: 88%;
        margin: 0 auto;
    }

    .cont-hero.inter {
        height: 424px;
    }

    .hero {
        margin-top: 111px;
    }

    .hero .content-info {
        padding-left: 6%;
    }

    .hero .content-info h1 {
        font-size: 44px;
    }

    .title-text-2-cols .wrapper {
        width: 88%;
    }

    .photos-3-missaligned {
        width: 88%;
    }

    .photos-3-missaligned {
        margin: 10px auto;
    }

    .title-text-2-cols .wrapper {
        margin-bottom: 0;
    }

    #somos-cuero.title-text-2-cols .wrapper {
        margin-bottom: 50px;
    }

    #sello-lecom-logramos h2 {
        margin: 0 0 50px 0;
    }

    #mision-vision .wrapper {
        padding: 100px 0;
        width: 88%;
    }

    #sello-lecom-logramos {
        padding: 80px 0;
    }

    .wrap-cifras .item-cifra span {
        font-size: 34px;
    }

    .cifras.productos {
        padding: 90px 0;
    }

    .product-block .wrapper .intro .info p {
        font-size: 14px;
        line-height: 1.6em;
    }

    #mision-vision .wrapper div p {
        font-size: 14px;
    }

    .text-photo-aside .wrapper {
        width: 88%;
        padding: 12px 0;
    }

    #tres-empresas .wrapper {
        width: 88%;
    }

    .text-photo-aside.block {
        width: 88%;
        margin: 28px auto;
    }

    .text-photo-aside.block .text {
        width: 53%;
        padding: 66px 0 48px 50px;
    }

    .photos-3-missaligned.left.upper.nomask div span {
        left: 27px;
    }

    .photos-3-missaligned div span {
        left: 32px;
        top: 54px;
    }

    .text-photo-aside .wrapper .text h3 {
        line-height: 1.3em;
    }

    .text-photo-aside {
        padding: 50px 0;
    }

    .title-text-2-cols .wrapper .text p {
        font-size: 14px;
        margin-bottom:45px;
    }

    #somos-cuero.title-text-2-cols .wrapper .text p {
        margin-bottom:0;
    }

    .text-photo-aside .wrapper .text h3 {
        font-size: 31px;
    }

    #tres-empresas .wrapper .wrap-empresas {
        margin: 92px auto 0 auto;
        width: 91%;
    }

    #tres-empresas div .logo {
        width: 142px;
    }

    .title-text-block .wrapper {
        width: 88%;
        margin: 24px auto;
    }

    #graph-procesos .wrapper div {
        width: 100%;
    }

    #graph-procesos .wrapper h2 {
        margin: 0 0 70px 0;
    }

    #graph-procesos {
        padding: 75px 0;
    }

    .text-photo-block-white {
        width: 88%;
    }

    .text-photo-block-white .info {
        padding: 5% 13% 5% 24%;
    }

    .text-photo-block-white .info .lista li {
        font-size: 14px;
    }

    .text-photo-block-white .info .logos {
        margin: 61px auto 20px auto;
    }

    .title-text-2-cols .wrapper h2 {
        line-height: 1.3em;
    }

    .text-photo-aside .title {
        font-size: 32px;
        margin: 0 0 12px 0;
        width:100%;
    }

    .text-photo-aside .cont-wrapper {
        width: 88%;
    }

    .text-photo-aside .wrapper .text {
        width: 47%;
    }

    .text-photo-aside .wrapper .photo {
        width: 45%;
    }

    #sosten-intro.text-photo-aside {
        padding-bottom: 0;
    }

    .text-photo-aside .title.sub {
        font-size: 30px;
        width: 55%;
    }

    #sosten-certific.text-photo-aside .cont-wrapper .wrapper {
        padding-bottom: 0;
    }

    #medio-ambiente {
        padding: 72px 0;
    }

    #medio-ambiente.text-photo-aside .wrapper {
        width: 85%;
    }

    #medio-ambiente.text-photo-aside .wrapper .photo {
        width: 39%;
    }

    #medio-ambiente.text-photo-aside .wrapper .text {
        width: 53%;
    }

    #no-deforestadas .wrapper {
        width: 85%;
    }

    #no-deforestadas .wrapper h3 {
        font-size: 40px;
    }

    #no-deforestadas .wrapper .text p {
        font-size: 14px;
    }

    #no-deforestadas {
        padding: 120px 0;
    }

    .energia-limpia {
        width: 100%;
        margin: 80px auto;
    }

    .energia-limpia .wrap-energia-limpia .info {
        max-width: 40%;
        padding: 5% 48% 9% 6%;
    }

    .wide-photo-2-cols .wrapper {
        width: 88%;
    }

    .wide-photo-2-cols .wrapper div {
        gap: 30px;
    }

    .wide-photo-2-cols .wrapper {
        margin-top: 250px;
        padding: 20px 43px 110px;
    }

    #grasa-industrial .text-photo-aside.block .text {
        width: 61%;
        padding: 65px 68px 67px 51px;
    }

    #product-intro.text-photo-aside {
        padding: 50px 0 0;
    }

    .product-block {
        margin: 21px 0 90px;
    }

    .product-block .wrapper {
        width: 88%;
    }

    .product-block .wrapper .intro {
        padding: 44px 61px 110px;
    }

    .product-block .wrapper .intro .photo {
        width: 300px;
        height: 300px;
        margin-top: 38px;
    }

    .product-block .wrapper .intro .photo::after {
        width: 280px;
        height: 280px;
    }

    .product-block .wrapper .caracter {
        padding: 8px 62px;
    }

    .product-block .wrapper .caracter .info {
        padding-top: 24px;
    }

    .products .cont-products {
        width: 88%;
    }

    .products .cont-products .wrap-product {
        width: 32%;
    }

    .wrap-cifras .item-cifra p {
        font-size: 13px;
    }

    .wrap-cifras .item-cifra {
        padding: 0 5%;
    }

    .photos-3-missaligned.centered-text div span {
        left:0;
        line-height: 1.2em;
    }

}



@media only screen and ( min-width: 1025px)  and (max-width:1512px) {

    .products .cont-products .wrap-product span {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    



}

@media only screen and (min-width:1513px) {


}