/******************************
*   Tipografias
******************************/
@import url('all.css');
@import url('typo.css');
@import url('icon_pinol.css');

:root {
    --blanco: 255, 255, 255;
    --negro: 0, 0, 0;
    --gris: 100, 100, 100;

    --amarillo: 248, 234, 58;

    --v_0: 147, 213, 10;
    --v_l: 0, 148, 58;
    --v_m: 0, 149, 59;
    --v_d: 22, 105, 56;
}

::selection {
    background: rgb(var(--v_d),1);
    color: rgb(var(--blanco),1);
}
::-moz-selection {
    background: rgb(var(--v_d),1);
    color: rgb(var(--blanco),1);
}
::-webkit-selection {
    background: rgb(var(--v_d),1);
    color: rgb(var(--blanco),1);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: normal;
    font-style: normal;
    background: ;
    color: rgb(var(--gris), 1); 
    line-height: 1.4;
}
/* figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */
figure img { margin: 0 auto; }
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 { margin: 0; }
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 50px;
    color: rgb(var(--v_l), 1);
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #0F5B28;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: rgb(var(--v_l), .8); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }
p { margin: 0; }
p + p { margin-top: 20px; }
sub,
sup {
    font-size: 60%;
}
sup { top: -0.9em; }

/******************************
*   Loader
******************************/

/******************************
*   General
******************************/
main { min-height: calc(100vh - 65px); }
main section { position: relative; }

/******************************
*   Header
******************************/
.header {
    width: 100%;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    z-index: 100;
    top: 0;
    font-family: 'Open Sans Condensed';
    font-weight: 700;
    line-height: 1;
}
.header input {
    line-height: 1;
    padding-right: 46px;
}
.cont__menu,
.menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cont__menu {
    position: relative;
    background: rgb(var(--v_l), 1);
    color: rgb(var(--blanco), 1);
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    padding: 0 0 0 15px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.1);
}
.menu__logo {
    width: 100px;
    position: relative;
    overflow: hidden;
}
.menu__logo a {
    display: block;
    overflow: hidden;
}
.menu__logo a span {
    position: absolute;
    opacity: 0;
}
.menu__opt { text-transform: uppercase; }
.menu__opt ul li a { display: block; }
/* Soluciones */
.opt__men > li > a.cta__sol {
    font-size: 26px;
    line-height: 0;
}
.opt__men > li > a.cta__sol .icon-01 { color: rgb(var(--amarillo), 1); }
.cta__sol i::before {
    position: relative;
    z-index: 10;
}
.cta__sol i { position: relative; }
.cta__sol i::after {
    position: absolute;
    z-index: 0;
    left: 0;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(var(--v_m), 1);
    color: rgb(var(--v_m), 1);
}
.cta__sol .icon-01::after {
    content: "\e92a";
}
.cta__sol .icon-02::after {
    content: "\e928";
    left: 0;
}
/* Soluciones */
.opt__head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.opt__head a { width: 100%; }
.arrow {
    font-size: 20px !important;
    min-width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.arrow i {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.opt__act { color: rgb(var(--amarillo), 1); }
.opt__act .arrow i {
    color: rgb(var(--amarillo), 1);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.opt__social > li > a {
    padding: 0 6px;
    display: block;
}
.header .fa-brands { font-size: 22px; }
.c__camp { position: relative; }
.camp__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 100%;
    color: rgb(var(--v_l), 1);
    z-index: 1;
}
.camp__btn button {
    width: 100%;
    height: 100%;
}
.header .fa-magnifying-glass { font-size: 20px; }
.btn__mob {
    width: 60px;
    height: 65px;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.btn__mob > div {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn__search.active { color: rgb(var(--amarillo), 1); }
.btn__menu { background: rgb(var(--v_d), .5); }
.btn__menu > div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 30px;
}
.btn__menu > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--blanco), 1);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__menu > div span + span {  margin-top: 6px; }
.btn__menu.active > div span { background: rgb(var(--amarillo), 1); }
.btn__menu.active > div span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
}
.btn__menu.active > div span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__menu.active > div span:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
}

/******************************
*   Footer
******************************/
.footer {
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}
.footer > div {
    padding-right: 15px;
    padding-left: 15px;
}
.opt__foo {
    background: rgb(var(--v_d), 1);
    color: rgb(var(--blanco), 1);
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Open Sans Condensed';
    font-weight: 700;
    line-height: 1;
}
.opt__foo,
.opt__foo > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}
.opt__foo .opt__men > li { margin: 10px; }
.opt__foo .opt__men > li > a { display: block; }
.opt__foo .opt__men > li > a.cta__sol { font-size: 23px; }
.opt__foo .fa-brands { font-size: 22px; }
.opt__foo .opt__social li:nth-child(1) { display: none; }
.opt__foo .opt__social { margin: 10px 0; }
.footer__info {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 14px;
}
.footer__info > div + div { margin-top: 30px; }
.footer__info p + p { margin-top: 6px; }
.fil__01 {
    color: rgb(var(--v_l), 1);
    font-weight: 800;
}
.fil__02 a { text-decoration: underline; }
.fil__03 p {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}
.fil__03 i {
    font-size: 40px;
    color: rgb(var(--v_l), 1);
}
.fil__03 i + * { margin-left: 10px; }

/******************************
*   
******************************/
.head__sect + * { margin-top: 40px; }
* + .head__sect { margin-top: 80px; }
.head__sect {
    text-align: center;
    color: rgb(var(--v_d), 1);
    text-transform: uppercase;
}
.head__sect * + * { margin-top: 12px; }
.sect__tit {
    font-family: 'Open Sans Condensed';
    font-weight: 800;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-size: 26px;
}
.sect__sub {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    position: relative;
}
.sect__tit::before,
.sect__sub::before {
    content: attr(title);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background:
        linear-gradient(
        to right,
        rgba(var(--v_l),0) 0%,
        rgba(var(--v_l),0.02) 1%,
        rgba(var(--v_l),1) 50%,
        rgba(var(--v_l),0) 99%,
        rgba(var(--v_l),0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
}
.logo__col {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    max-width: 130px;
}
.logo__col + * { margin-top: 40px; }

/*--------- BG / Elementos ---------*/
.bg__ele {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1;
}
.bg__ele::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bg__ele,
.bg__ele .img__bg,
.bg__ele .img__bg img {
    width: 100%;
    height: 100%;
}
.bg__ele .img__bg img {
    object-fit: cover;
    object-position: center;
}
.ele__blur .img__bg {
    filter: blur(3px);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.cont__ele {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.ele { position: absolute; }
.ele__01 { left: 0; }
.ele__02 { right: 0; }
.cont__ele .ele:nth-child(1)  { top: 0%; }
.cont__ele .ele:nth-child(2)  { bottom: 0%; }
.cont__ele .ele:nth-child(3)  { top: 0%; }
.cont__ele .ele:nth-child(4)  { bottom: 0%; }
.menu__prod .ele,
.menu__prod .img__prod { opacity: 0; }

/*--------- CTA ---------*/
.c__cta {
    padding-top: 40px;
    text-align: center;
}
.cta {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed';
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    letter-spacing: .05em;
    line-height: 1;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.4);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.4);
}
.cta span {
    display: inline-block;
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,.5) 50%,rgba(255,255,255,0) 100%);
    bottom: 0;
    left: 10%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0;
}
.cta:hover span {
    opacity: .7;
    left: 50%;
}
.cta span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    padding-bottom: 50%;
    background: radial-gradient(ellipse at center,  rgba(255,255,255,0.60) 0%,rgba(255,255,255,0) 50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cta.cta__01 {
    background: linear-gradient(to right,  rgba(0,105,55,1) 0%,rgba(0,149,59,1) 50%,rgba(0,105,55,1) 100%);
    color: rgb(var(--blanco), 1);
}

/*--------- Columnas / con imagen ---------*/
.fil__col,
.fil__col > div { position: relative; }
.fil__col > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 20px;
    overflow: hidden;
}
.fil__col > div.col__img { padding: 0; }
.col__img .col__info {
    width: 100%;
    max-width: initial;
    height: 100%;
}
.col__img .col__info figure {
    width: 100%;
    height: 100%;
}
.col__img .col__info figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/******************************
*   Home
******************************/
/*------------- Productos -------------*/
.productos { overflow: hidden; }
.productos .bg__ele::before { background: rgb(var(--blanco), .2); }
.productos .head__sect { padding: 0 15px; }
.cont__buble {
    width: 55%;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cont__buble i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgb(var(--amarillo), 1);
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
    transform: scale(1.01);
    z-index: 1;
}
.buble {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background: rgb(var(--v_d), 1);
    position: relative;
    overflow: hidden;
}
.buble::before,
.buble::after {
    position: absolute;
    content: '';
    width: 120%;
    padding-top: 120%;
}
.buble::before {
    background: radial-gradient(ellipse at center,  rgba(147,213,0,.5) 0%,rgba(147,213,0,0) 70%);
    bottom: 35%;
    left: 35%;
}
.buble::after {
    background: radial-gradient(ellipse at center,  rgba(0,149,59,.5) 0%,rgba(0,149,59,0.99) 1%,rgba(0,149,59,0) 70%);
    right: 20%;
    top: 20%;
}
.buble .cate__prod {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: rgb(var(--blanco), 1);
    text-align: center;
    text-shadow: 0 0 5px rgb(var(--negro), .8);
    font-family: 'Open Sans Condensed';
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    padding: 0 6%;
    font-size: .8vw;
    line-height: 1;
    z-index: 1;
}
.buble figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.buble .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.buble .icon span {
    font-size: 75px;
    color: rgb(var(--blanco), 1);
}
.productos .item__prod {
    width: 100%;
    max-width: 26vh;
    min-width: 150px;
    overflow: hidden;
}
.productos .item__prod + .item__prod { margin: 0; }
.productos .item__prod a {
    padding-top: 0px;
    padding-bottom: 0;
}
.productos .item__prod > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 100%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: -1;
}
.productos .item__prod:hover > span {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}
.productos .item__prod .img__prod img {
    max-width: 80%;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

/*------------- Umbal -------------*/
.umbal .head__sect { color: rgb(var(--gris), 1); }
.umbal .head__sect .sect__tit { font-weight: 700; }
.box__ver {
    background: rgb(var(--v_d), 1);
    color: rgb(var(--blanco), 1);
    padding: 20px;
}
.umbal .box__ver {
    text-align: center;
    width: 100vw;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*------------- Videos -------------*/
.slide__thum {
    position: relative;
    width: 100%;
    height: 55vw;
    height: 55dvw;
    cursor: pointer;
}
.slide__thum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--negro), .6);
}
.slide__thum figure,
.slide__thum figure img {
    width: 100%;
    height: 100%;
}
.slide__thum figure img {
    object-fit: cover;
    object-position: center;
}
.play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    color: rgb(var(--blanco), 1);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgb(var(--blanco), 1);
    font-size: 30px;
    padding-left: 3px;
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.slide__thum:hover .play {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -moz-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    -o-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
}
.slide__vid .swiper-button-next,
.slide__vid .swiper-button-prev {
    color: rgb(var(--blanco), .5);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.slide__vid .swiper-button-next:hover,
.slide__vid .swiper-button-prev:hover { color: rgb(var(--blanco), 1); }
.slide__vid .swiper-pagination-bullet,
.slide__vid .swiper-pagination-bullet-active { background: rgb(var(--blanco), 1); }

.tit__vid {
    text-align: center;
    color: rgb(var(--blanco), 1);
}
.tit__vid h3 {
    font-size: 24px;
    font-family: 'Open Sans Condensed';
    font-weight: 600;
}
.tit__vid + * { margin-top: 30px; }
.cont__vid {
    width: 130vh;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.closr,
.cl__gen {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: rgb(var(--blanco), 1);
    position: absolute;
    top: 15px;   
    right: 15px;
    color: rgb(var(--v_l), 1);
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plyr__control--overlaid {
    background: rgb(var(--v_l), .9);
    color: rgb(var(--blanco), 1);
}
.plyr--full-ui input[type=range] { color: rgb(var(--v_l), 1); }
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
    background: rgb(var(--v_l), .9);
    color: rgb(var(--blanco), 1);
}

/******************************
*   Productos
******************************/
.menu__prod { padding-top: 60px; }
.menu__prod .head__sect {
    padding: 0 15px;
    text-shadow: 0 0 5px rgb(var(--negro), .2);
}
.menu__prod .sect__tit::before,
.menu__prod .sect__sub::before { text-shadow: 0 0 5px transparent; }
.menu__prod .head__sect + * { margin-top: 10px; }
.producto__select {
    position: relative;
    overflow: auto;
    z-index: 1;
    text-align: center;
}
.producto__select::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.scroll__prod {
    display: grid;
    white-space: nowrap;
}
.cont__scroll {
    display: flex;
    justify-content: center;
}
.item__prod {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 18vh;
    min-width: 120px;
}
.item__prod + .item__prod { margin-left: 20px }
.item__prod a {
    display: block;
    padding-top: 50px;
    padding-bottom: 20px;
}
.menu__prod .item__prod a { padding-bottom: 40px; }
.img__prod img {
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    filter: drop-shadow(0px 0px 10px rgb(var(--negro), .4));
}

/******************************
*   Producto Detalle
******************************/
.sect__info { overflow: hidden; }
.sect__info .cont__col,
.sect__info .cont__col .col > div { width: 100%; }
.sect__info .cont__col .col {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 20px;
}
.col__info {
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 1;
}
.sect__02 .img__bg {
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 0;
}
.sect__02 .img__bg img { object-position: top center; }
.sect__02 .cont__col { flex-direction: row-reverse;}
.sect__info .head__sect .sect__tit { font-weight: 700; }
.sect__01 .head__sect,
.sect__02 .head__sect { text-align: left; }
.sect__info .cont__col .col p + * { margin-top: 25px; }
.sect__info .cont__col .col ul li + li { margin-top: 12px; }
.sect__02 .cont__col .col,
.sect__midd { text-transform: uppercase; }
.sect__02 .cont__col .col:nth-child(2) {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    text-transform: uppercase;
}
.sect__info .cont__col .col ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.sect__info .cont__col .col ul li > * + * { margin-left: 8px; }
.sect__info .cont__col .col ul li .cont__icon {
    font-size: 36px;
    vertical-align: middle;
    line-height: 1;
}
.sect__info .cont__col .col ul li .cont__icon > span:nth-child(1) { color: #000000; }
.sect__info .cont__col .col ul li .cont__icon > span:nth-child(2) { color: #C10230; }
.full__bg .bg__ele {
    width: 100vw;
    right: 0;
    left: initial;
}
.full__bg .col:nth-child(2) { position: initial; }
.sect__01 .cont__col .col:nth-child(2) { padding: 60px 0 0 0; }
.sect__01 .cont__col .col:nth-child(2) .col__info { max-width: initial; }
.sect__01 .cont__col .col:nth-child(2) .c__cta {
    margin: 0;
    padding-top: 0;
    width: auto;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}
.sect__03 .cont__col .col:nth-child(1) { padding: 40px 0 0 0; }
.sect__03 .head__sect + * { margin-top: 20px; }
.sect__03 .cont__col .col:nth-child(2) > div { width: 100%; }
.sect__03 .cta__usos {
    width: 100%;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}
.sect__03 .con__icon {
    margin-left: auto;
    margin-right: auto;
    font-size: 85px;
    height: 90px;
    width: 90px;
}
.cta__usos {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    gap: 19px;
}
.uso__item {
    text-align: center;
    line-height: 1.2;
}
/* .sect__01 .uso__item + .uso__item { margin-left: 20px; } */
.uso__item a:hover .con__icon {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.uso__item a {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* .uso__item a > * + * { margin-top: 10px; } */
.con__icon {
    font-size: 70px;
    display: flex;
    justify-content: center;
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    position: relative;
}
.con__icon figure {
    position: relative;
    width: 100%;
}
.con__icon figure.border {
    border-radius: 50%;
    border: 1px solid currentcolor;
}
.con__icon figure img {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 0px 3px rgb(var(--negro), .4));
}
.col__bottle {
    position: relative;
    padding-top: 90%;
    width: 46%;
    margin: 0 auto;
}
.col__bottle img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.cont__sello {
    position: absolute;
    width: 100%;
    left: 0;
    top: 10%;
    padding-top: 16%;
}
.sellos {
    width: 40%;
    height: 100%;
    position: absolute;
    top: 0;
}
.s__01 { left: 0; }
.s__02 { right: 0; }
.sellos figure {
    margin: 0 auto;
    height: 100%;
}
.sellos figure img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.c__bottle {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.c__bottle figure {
    position: relative;
    width: 45%;
    margin: 0 -6%;
    z-index: 1;
}
.c__bottle > figure::before {
    content: '';
    width: 90%;
    height: 4%;
    background: rgb(var(--negro), .5);
    position: absolute;
    left: 50%;
    top: 96%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(5px);
}
.lb__content,
.lb__anun {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgb(var(--negro), .8);
    z-index: 1000;
    overflow: auto;
}
.lb__content { display: none; }
.cont__info {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 40px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cont__info > div { width: 100%; }
.box__shop {
    margin: 0 auto;
    max-width: 600px;
}
.pleca {
    width: 100%;
    height: 50px;
    background: rgb(var(--v_l), 1);
    position: relative;
}
.closer {
    position: absolute;
    top: 50%;   
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgb(var(--blanco), 1);
    font-size: 30px;
    cursor: pointer;
}
.shop__ingo {
    position: relative;
    padding: 30px 20px;
    background: rgb(var(--blanco), 1);
}
.shop__ingo .sect__tit { font-size: 28px; }
.shop__ingo .sect__sub { font-size: 16px; }
.cont__retailrs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cont__retailrs > div {
    display: inline-block;
    padding: 10px;
}
.cont__retailrs > div a { display: block; }
.cont__retailrs > div a figure {
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
}
.cont__retailrs > div a:hover figure {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.profeco {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgb(var(--negro), .1);
}
.sect__01 .col:nth-child(2) .col__bottle,
.sect__01 .col:nth-child(2) .sellos,
.sect__01 .col:nth-child(2) .c__cta,
.sect__01 .col:nth-child(2) .ele img,
.sect__02 .col:nth-child(2) .ele img { opacity: 0; }
.disclaimer {
    font-size: 75%;
    text-transform: initial;
    text-align: center;
}
.sect__01 .disclaimer {
    padding-top: 15px;
    text-align: left;
}
.sect__02 .disclaimer {
    padding: 0 0 15px;
    margin-top: -15px;
}
.sect__03 .disclaimer { 
    padding-top: 20px;
    text-align: left;
}

.sect__midd { padding-top: 60px; }
.sect__midd .head__sect {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    z-index: 10;
}
.sect__midd .head__sect + * { margin-top: 0; }
.sect__04 .list__points {
    font-family: 'Open Sans Condensed';
    font-size: 20px;
}
.sect__04 .list__points li p strong {
    display: block;
    text-decoration: underline;
    font-weight: 700;
    font-size: 22px;
}
.sect__04 .c__bottle { position: relative; }
.ele__bote {
    width: 110%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.sect__04 .c__bottle > figure { filter: drop-shadow(0 0 10px rgba(0, 0, 0, .5)); }
.sect__04 .c__bottle > figure::before { content: unset; }
.c__bottle .ele__bote figure {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
}
.ele__bote figure:nth-child(1) { position: relative; }

/******************************
*   Producto detalle: 
    Nueva secciones
******************************/
.slide__detail .swiper-button-next,
.slide__detail .swiper-button-prev { color: rgb(var(--blanco), 1); }
.slide__detail .swiper-pagination-bullet-active { background: rgb(var(--blanco), 1); }

.slide__col { position: relative; }

.slide__01 { padding: 30px 15px; }
.slide__01 > div { font-size: 14px; }
.img__text {
    max-width: 60vh;
    width: 60%;
    margin: 0 auto;

}
.slide__01 .img__graf {
    width: 30%;
    -webkit-transform: translateX(-5%) rotate(-8deg);
    -moz-transform: translateX(-5%) rotate(-8deg);
    -ms-transform: translateX(-5%) rotate(-8deg);
    -o-transform: translateX(-5%) rotate(-8deg);
    transform: translateX(-5%) rotate(-8deg);
    filter: drop-shadow(0px 0px 10px rgb(var(--negro), .4));
    will-change: filter;
}

.slide__01 .img__graf figure { height: 100%; }

.slide__02 figure { height: 100%; }
.slide__02 img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.cont__instru > * + * { margin-top: 40px; }
.instru {
    width: 80%;
    max-width: 600px;
}


.fil__instru {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    gap: 20px;
}
.instro__step {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.instro__step > div:nth-child(1) {
    width: 80px;
    min-width: 80px;
}
.instro__step > div:nth-child(2) { width: calc(100% - 90px); }

.fil__dest figcaption {
    position: absolute;
    opacity: 0;
    display: none;
}
.fil__dest {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}

.dets__01 { width: 100%; }
.dets__02,
.dets__03 { width: 50%; }

.fil__dest .dest__col {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.fil__dest .dest__col > * { z-index: 1; }
.dets__02::before,
.dets__03::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    padding-top: 90%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgb(var(--blanco), 1);
    border-radius: 50%;
    filter: blur(50px);
    will-change: filter;
    mix-blend-mode: overlay;
    opacity: .5;
}
.dest__col > * {
    max-width: 45vh;
    width: 80%;
    margin: 0 auto;
}
.dest__frase { max-width: 60vh; }


/******************************
*   Sustentabilidad
******************************/
.sec__sus + .sec__sus { margin-top: 10px; }
.sec__sus:last-child { margin-bottom: 10px; }
.sec__sus { position: relative; }
.sec__sus .head__sect { color: rgb(var(--blanco), 1); }
.over {
    position: absolute;
    opacity: 0;
}
.ovr01 {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(0,0,0,.3) 0%,rgba(0,0,0,0.70) 80%);
}
.ovr02 {
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right,  rgba(0, 148, 58,0.65) 0%,rgba(0, 148, 58,0) 100%);
    mix-blend-mode: hard-light;
}
.ovr03 {
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right,  rgba(214,54,124,0) 0%,rgba(214,54,124,0.65) 100%);
}
.fil__poder { padding: 60px 15px; }
.sec__sus,
.sus__poder .head__sect .sect__tit { color: rgb(var(--blanco), 1); }
.sus__poder .head__sect .sect__tit  { font-weight: 700; }
.sus__poder .head__sect .sect__tit span,
.txt__fil span { color: rgb(var(--amarillo), 1); }
.txt__fil {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}
.cont__bot {
    width: 60vh;
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.cont__bot > .bott {
    width: 75%;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.cont__bot > .bott > figure {
    width: 50%;
    position: relative;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, .4));
}
.cont__bot > .bott > figure:nth-child(1) {
    -webkit-transform: translateX(18%);
    -moz-transform: translateX(18%);
    -ms-transform: translateX(18%);
    -o-transform: translateX(18%);
    transform: translateX(18%);
    z-index: 10;
}
.cont__bot > .bott > figure:nth-child(2) {
    -webkit-transform: translateX(-18%);
    -moz-transform: translateX(-18%);
    -ms-transform: translateX(-18%);
    -o-transform: translateX(-18%);
    transform: translateX(-18%);
}
.cont__bot > .bott > figure::before {
    content: '';
    width: 90%;
    height: 4%;
    background: rgb(var(--negro), .5);
    position: absolute;
    left: 50%;
    top: 96%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(5px);
}
.cont__bot > .bott > figure img { opacity: 0; }
.hojas {
    position: absolute;
    opacity: .9;
    mix-blend-mode: lighten;
}
.h01 {
    width: 20%;
    top: 5%;
    left: -8%;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.h02 {
    width: 25%;
    bottom: 5%;
    right: -10%;
}

.burb {
    position: absolute;
    mix-blend-mode: screen;
    opacity: .8;
    z-index: 10;
}
.burb img { opacity: 0; }
.b01 {
    width: 10%;
    top: 10%;
    right: 130%;
}
.b02 {
    width: 7%;
    top: 21%;
    left: -2%;
}
.b03 {
    width: 18%;
    top: 28%;
    left: 4%;
}
.b04 {
    width: 5%;
    top: 49%;
    left: 18%;
}
.b05 {
    width: 18%;
    top: 13%;
    right: 2%;
}
.b06 {
    width: 7%;
    top: 49%;
    right: -7%;
}
.b07 {
    width: 18%;
    top: 55%;
    right: 22%;
}
.sec__sus .fil01 .head__sect,
.sec__sus .fil02,
.sec__sus .hojas img { opacity: 0; }
.fil__poder:last-child { padding-top: 0; }
.sus__info {
    background: linear-gradient(to bottom,  rgba(22,105,56,1) 0%,rgba(0,137,33,1) 50%,rgba(22,105,56,1) 100%);
    color: rgb(var(--blanco), 1);
    text-align: center;
}
.info__cont {
    padding: 60px 30px;
    position: relative;
    min-height: 40vh;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    z-index: 0;
}
.info__cont::before,
.info__cont::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 0%;
    background: red;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: -1;
}
.info__cont::before {
    top: 0;
    left: 0;
}
.info__cont::after {
    right: 0;
    bottom: 0;
}
.cont__text {
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.5;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cont__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}
.cont__img figure,
.plus {
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.plus {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
}
.img__sus + .tit__sus { margin-top: 15px; }
.img__sus {
    width: 20vh;
    margin: 0 auto;
}
.tit__sus {
    text-transform: uppercase;
    font-family: 'Open Sans Condensed';
    font-weight: 700;
    font-size: 26px;
    font-style: normal;
    text-shadow: 0 0 8px rgb(var(--negro), .6);
}
.tit__sus span { color: rgb(var(--amarillo), 1); }
.info__cont:hover .cont__img { background: rgb(var(--v_m), .8); }
.info__cont:hover .cont__img figure,
.info__cont:hover .plus {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.info__cont.active .cont__img { opacity: 0; }
.info__cont.active .cont__text { opacity: 1; }
.info__cont.active::before,
.info__cont.active::after { height: 100%; }
.info__cont:nth-child(odd)::before,
.info__cont:nth-child(odd)::after { background: rgb(var(--v_d), 1); }
.info__cont:nth-child(even)::before,
.info__cont:nth-child(even)::after { background: rgb(var(--v_l), 1); }

/*------------- Planeta -------------*/
.sus__tips { padding: 60px 0; }
.cont__pla {
    position: relative;
    max-width: 45vh;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.bottles {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}
.p__bot {
    width: 50%;
    height: 50%;
}
.p__bot figure {
    width: 100%;
    height: 60%;
    filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 1));
}
.p__bot figure img {
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.p01 figure {
    -webkit-transform: translate(-20%) rotate(-45deg);
    -moz-transform: translate(-20%) rotate(-45deg);
    -ms-transform: translate(-20%) rotate(-45deg);
    -o-transform: translate(-20%) rotate(-45deg);
    transform: translate(-20%) rotate(-45deg);
}
.p02 figure {
    -webkit-transform: translate(20%) rotate(45deg);
    -moz-transform: translate(20%) rotate(45deg);
    -ms-transform: translate(20%) rotate(45deg);
    -o-transform: translate(20%) rotate(45deg);
    transform: translate(20%) rotate(45deg);
}
.p03 figure {
    -webkit-transform: translate(-22%, 66%) rotate(-140deg);
    -moz-transform: translate(-22%, 66%) rotate(-140deg);
    -ms-transform: translate(-22%, 66%) rotate(-140deg);
    -o-transform: translate(-22%, 66%) rotate(-140deg);
    transform: translate(-22%, 66%) rotate(-140deg);
}
.p04 figure {
    -webkit-transform: translate(22%, 66%) rotate(140deg);
    -moz-transform: translate(22%, 66%) rotate(140deg);
    -ms-transform: translate(22%, 66%) rotate(140deg);
    -o-transform: translate(22%, 66%) rotate(140deg);
    transform: translate(22%, 66%) rotate(140deg);
}
.pleca__verde {
    background: rgb(var(--v_l), 1);
    padding: 30px 0;
}

/*------------- Ociones selecion -------------*/
.opt__tips {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.col__tip {
    width: 33.33%;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.col__tip .bg__ele .img__bg img {
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.col__tip:hover .bg__ele .img__bg img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.col__tip .bg__ele::before {
    background: rgb(var(--v_l), 1);
    mix-blend-mode: multiply;
}
.col__tip div { text-align: center; }
.col__tip h3 {
    text-transform: uppercase;
    font-size: 16px;
}
.col__tip.active .fa-circle-plus::before,
.col__tip.active .fa-plus-circle::before { content: "\f056"; }
.col__tip.active .plus { opacity: .5; }
.col__tip.active div { color: rgb(var(--amarillo), 1); }
.col__tip .plus {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.col__tip .icon__tip { font-size: 60px; }
.tip__info .icon__tip { font-size: 60px; }

/*------------- Con seleccionado -------------*/
.tip__cont { display: none; }

/*------------- Columnas slider -------------*/
.tip__info {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.info__01 {
    background: rgb(var(--v_l), 1);
    padding: 20px 20px 30px;
}
.tip__info h3 {
    font-family: 'Open Sans Condensed';
    font-weight: 600;
    text-transform: uppercase;
    font-size: 26px;
}
.tip__info h3 + * { margin-top: 16px; }
.tip__info h3 + p.ben { text-transform: uppercase; }
.info__02 > div,
.info__02 > div .cont__slider,
.info__02 > div .cont__slider .swiper { height: 100%; }
.slide__info {
    height: 100%;
    padding: 60px 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.slide__info .bg__ele::before { background: rgb(var(--negro), 0); }
.info__01 > div,
.info__txt {
    margin: 0 auto;
    position: relative;
}
.info__txt {
    z-index: 1;
    font-size: 18px;
}
.info__txt p { margin: 0; }
.t__slide {
    text-transform: uppercase;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
}
#tip__01 .info__txt::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -0%;
    right: -0%;
    bottom: -50px;
    background: radial-gradient(ellipse at center,  rgb(var(--v_l), .9) 0%,rgb(var(--v_l), 0) 65%);
    z-index: -1;
}
#tip__01 .swiper-slide[aria-label="1 / 6"] .info__txt { color: rgb(var(--v_l), 1); }
#tip__01 .swiper-slide[aria-label="1 / 6"] .info__txt::before { background: transparent; }
#tip__02 .fil__tip .swiper-button-next, 
#tip__02 .fil__tip .swiper-button-prev { color: rgb(var(--v_l), 1); }
#tip__02 .t__slide {
    text-shadow: 0 0 10px rgb(var(--blanco), 1);
    color: rgb(var(--v_l), 1);
}
#tip__02 .t__slide::before {
    content: attr(name);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: rgb(var(--blanco), 1);
    z-index: -1;
}
#tip__03 .info__txt { text-shadow: 0 0 10px rgb(var(--negro), 1); }
.fil__tip .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: rgb(var(--v_l), 1);
    opacity: 1;
    background: rgb(var(--blanco), 1);
    font-weight: bold;
}
.fil__tip .swiper-pagination-bullet-active {
    background: rgb(var(--v_l), 1);
    color: rgb(var(--blanco), 1);
}
.fil__tip .swiper-button-next, 
.fil__tip .swiper-button-prev {
    color: rgb(var(--blanco), 1);
    width: auto;
    height: auto;
}
.fil__tip .swiper-button-next::after,
.fil__tip .swiper-button-prev::after { font-size: 30px; }

/*------------- Acopio -------------*/
.acopio__maquina { background: rgb(var(--v_l), 1); }
.acopio__maquina > div {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.acopio__maquina > div figure,
.acopio__maquina > div figure img {
    width: 100%;
    height: 100%;
}
.acopio__maquina > div figure img {
    object-fit: cover;
    object-position: center;
}
.col__mapa iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.acopio__info {
    background: rgb(var(--v_d), 1);
    text-align: center;
    padding: 40px 0;
}
.acopio__info .head__sect .sect__tit { font-weight: 600; }
.acopio__info .head__sect .sect__tit .icon__tip { font-size: 60px; }

/*------------- Video -------------*/
/* .sec__sus .plyr [hidden] { display: block!important; } */
.vid__iframe {
    background: rgb(var(--v_l), 1);
}
.vid__iframe > div {
    max-width: 130vh;
    width: 100%;
    margin: 0 auto;
}
.cont__ifra {
    width: 100%;
    padding-top: 56%;
    position: relative;
} 
.cont__ifra iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*------------- Comprometo -------------*/
.sus__compro {
    padding: 40px 0;
    background: rgb(var(--v_d), 1);
}
.info__compro {
    margin: 0 auto;
    width: 90%;
}
.box__circ {
    background: rgb(var(--v_l), 1);
    padding: 15px;
    border-top-left-radius: 3000px;
    border-top-right-radius: 3000px;
}
.col__box:nth-child(1) {
    width: 200px;
    margin: auto;
}
.circ__green {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    position: relative;
    background: rgb(var(--v_0), 1);
}
.circ__green span {
    position: absolute;
    width: 100%;
    top: 50%;
    text-align: center;
    text-transform: uppercase;
    color: rgb(var(--v_d), 1);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
}
.txt__box { padding: 10px; }
.info__icons {
    font-size: 80px;
    line-height: 1;
}

/******************************
*   FAQS
******************************/
.head__faqs { padding: 60px 15px 40px; }
.head__faqs .bg__ele::before { background: linear-gradient(to right,  rgba(255,255,255,.2) 0%,rgba(255,255,255,.8) 100%); }
.head__faqs .c__bottle {
    margin-top: 80px;
    max-width: 95vh;
}
.head__faqs .c__bottle figure {

    margin: 0 -4.3%;
    opacity: 0;
}
.head__faqs .c__bottle figure:nth-child(4) { z-index: 5; }
.head__faqs .c__bottle figure:nth-child(3),
.head__faqs .c__bottle figure:nth-child(5) {
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    transform: scale(.95);
    z-index: 4;
}
.head__faqs .c__bottle figure:nth-child(2),
.head__faqs .c__bottle figure:nth-child(6) {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
    z-index: 3;
}
.head__faqs .c__bottle figure:nth-child(1),
.head__faqs .c__bottle figure:nth-child(7) {
    -webkit-transform: scale(.85);
    -moz-transform: scale(.85);
    -ms-transform: scale(.85);
    -o-transform: scale(.85);
    transform: scale(.85);
    z-index: 2;
}
.icon__bote {
    font-size: 50px;
    display: flex;
    justify-content: flex-end;
}
.icon__bote span + span { margin-left: -22px; }
.con__faqs {
    padding: 60px 0;
    background: rgb(var(--v_l), 1);
    color: rgb(var(--blanco), 1);
}
.cont__faqs h3 {
    font-family: 'Open Sans', sans-serif;
    padding: 15px 35px 10px 15px;
    position: relative;
    z-index: 1;
    font-size: 100%;
    font-weight: bold;
}
.cont__faqs .ui-state-active {
    color: rgb(var(--amarillo), 1);
}
.cont__faqs div + h3.ui-accordion-header {
    margin: 0;
    border-top: 1px solid rgb(var(--blanco), .2);
}
.cont__faqs .ui-icon {
    width: 15px;
    padding-top: 15px;
    height: auto;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: 0;
    background-image: none;
}
.cont__faqs .ui-icon::before,
.cont__faqs .ui-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentcolor;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.cont__faqs .ui-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -moz-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    -o-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}
.cont__faqs .ui-state-active .ui-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}
.cont__faqs .ui-accordion-content { padding: 15px 15px 20px; }



/******************************
*   Contacto
******************************/
#contacto .bg__ele::before { background: rgb(var(--blanco), .2); }
#contacto .col { overflow: hidden; }
#contacto .c__bottle {
    margin: 0 auto;
    width: 70vh;
    max-width: 90%;
}
#contacto .c__bottle figure {
    width: 33.33%;
    margin: 0;
    opacity: 0;
}
#contacto .c__bottle figure:nth-child(1) {
    -webkit-transform: translateX(40%) rotate(-2deg);
    -moz-transform: translateX(40%) rotate(-2deg);
    -ms-transform: translateX(40%) rotate(-2deg);
    -o-transform: translateX(40%) rotate(-2deg);
    transform: translateX(40%) rotate(-2deg);
}
#contacto .c__bottle figure:nth-child(2) { z-index: 10; }
#contacto .c__bottle figure:nth-child(3) {
    -webkit-transform: translateX(-40%) rotate(2deg);
    -moz-transform: translateX(-40%) rotate(2deg);
    -ms-transform: translateX(-40%) rotate(2deg);
    -o-transform: translateX(-40%) rotate(2deg);
    transform: translateX(-40%) rotate(2deg);
}
.col__conta {
    background: rgb(var(--v_l), 1);
    color: rgb(var(--blanco), 1);
}
.col__conta .head__sect { text-align: left; }
.col__conta .head__sect .sect__tit {
    --limon: 107, 214, 0;
    color: rgb(var(--limon), 1);
}
.col__conta .head__sect p {
    color: rgb(var(--amarillo), 1);
    font-weight: 700;
    font-size: 24px;
}
.tel__contact {
    font-size: 8vw;
    font-weight: 800;
    margin-top: 20px;
}

/******************************
*   Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
.sect__03 .cta__usos .uso__item { width: 100%; }
}
@media (min-width : 480px) {
.sect__03 .cta__usos .uso__item {
    width: 33.33%;
    margin-left: 0;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sect__03 .uso__item > span { display: block; }

}
@media (max-width : 679px) {
.ele { width: 50%; }

/*---------- Sostenibilidad ----------*/
.col__tip { padding: 40px 10px 20px; }
.col__tip .plus {
    top: 3px;
    right: 5px;
    font-size: 17px;
}
.col__tip h3 { height: 36px; }
.acopio__info .head__sect .sect__tit .icon__tip { margin-bottom: 20px; }

}
@media (min-width : 680px) {
.sect__tit { font-size: 32px; }
.sus__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}
.info__cont { width: 50%; }
.info__cont:nth-child(1)::before,
.info__cont:nth-child(1)::after,
.info__cont:nth-child(4)::before,
.info__cont:nth-child(4)::after { background: rgb(var(--v_l), 1); }
.info__cont:nth-child(2)::before,
.info__cont:nth-child(2)::after,
.info__cont:nth-child(3)::before,
.info__cont:nth-child(3)::after { background: rgb(var(--v_d), 1); }
.cont__text { font-size: 18px; }
.col__conta .col__info { width: 90%; }
.con__icon { font-size: 80px; }

/*---------- Sostenibilidad ----------*/
.col__tip {
    height: 40vh;
    max-height: 320px;
}
.col__tip h3 { font-size: 20px; }
.col__tip .icon__tip { font-size: 80px; }
.acopio__info { padding: 60px 0; }
.acopio__info .head__sect {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.acopio__info .head__sect .sect__tit {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.acopio__info .head__sect .sect__tit .icon__tip {
    font-size: 90px;
    margin-right: 15px;
}
.acopio__txt {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}
.box__circ {
    border-radius: 3000px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.col__box:nth-child(1) { width: 35%; }
.col__box:nth-child(2) { width: 65%; }
.txt__box { padding: 0 6% 0 20px; }

}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (min-width : 680px) and (max-width : 991px) {
.ele { width: 40%; }
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.sect__02 .cont__col .col:nth-child(2) { padding-top: 0; }
#contacto main { min-height: initial; }
.col__conta .head__sect .sect__tit { font-size: 32px; }
.col .c__bottle {
    margin: 0 auto;
    max-width: 500px;
    width: 80%;
}

.sect__04 .col:nth-child(2) { padding-top: 0; }

/*---------- Sostenibilidad ----------*/ 
.fil__tip .swiper-slide { height: auto  ; }
.slide__info { min-height: 35vh; }
.col__mapa { padding-top: 65%;}

/*---------- Producto detalle: Nueva secciones ----------*/
:root { --swiper-navigation-size: 26px; }
.slide__01 > div {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fil__instru { flex-direction: column; }

}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
/*---------- Columnas ----------*/
.fil__col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.col__cont { width: 50%; }

/*---------- Home:: Video ----------*/     
.slide__thum {
    height: 45vw;
    height: 45dvw;
}

/*---------- Productos ----------*/ 
.sect__info .cont__col .col { padding: 60px 30px; }
.sect__02 .img__bg { height: 35%; }
.cont__col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.col { width: 50%; }
.col__bottle {
    padding-top: 53%;
    width: 30%;
}
.c__bottle figure {
    width: 25%;
    margin: 0 -3%;
}
.sect__midd .cont__col {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.sect__midd .cont__col .col,
.sect__midd .cont__col .col > div {
    width: 100%;
    max-width: 100%;
}
.sect__midd .cont__col .col:nth-of-type(1) { grid-area: 1 / 1 / 2 / 2; }
.sect__midd .cont__col .col:nth-of-type(2) { grid-area: 1 / 1 / 2 / 2; }
.sect__midd .c__bottle {
    margin: 0 auto;
    max-width: 42%;
}
.sect__midd .list__points {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    position: relative;
}
.sect__midd .list__points li {
    width: 50%;
    margin-bottom: 15px;
}
.sect__04 .list__points li { margin-bottom: 30px; }
.sect__midd .list__points li:nth-child(even) {
    padding-left: 20%;
}
.sect__midd .list__points li:nth-child(odd) {
    flex-direction: row-reverse;
    padding-right: 20%;
    text-align: right;
}
.sect__midd .list__points li:nth-child(odd) > * + * {
    margin-left: 0px;
    margin-right: 8px;
}
.sect__midd .cont__col .col ul li + li { margin-top: 0px; }
.sect__midd .cont__col .col ul li p { max-width: 300px; }
.ele__bote { width: 60%; }

/*---------- Producto detalle: Nueva secciones ----------*/
.slide__detail .swiper-slide { height: auto; }
.slide__detail .swiper-pagination-bullets { width: 50%; }
.fil__slide {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%;
}
.slide__01 { width: 60%; }
.slide__02 { width: 40%; }
.slide__01 {
    padding: 60px 15px;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slide__01 .img__graf {
    position: absolute;
    top: 50%;
    right: -22%;
    width: 44%;
    height: 90%;
    -webkit-transform: translateY(-50%) rotate(-8deg);
    -moz-transform: translateY(-50%) rotate(-8deg);
    -ms-transform: translateY(-50%) rotate(-8deg);
    -o-transform: translateY(-50%) rotate(-8deg);
    transform: translateY(-50%) rotate(-8deg);
}
.slide__01 .img__graf img {
    object-fit: contain;
    height: 100%;
}

.instro__step { width: calc(50% - 10px); }
.instru__02 {
    width: 100%;
    flex-direction: column;
}
.instru__02 .instro__step { width: 100%; }

.fil__dest {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.dets__01 { grid-area: 1 / 2 / 2 / 3; }
.dets__02 { grid-area: 1 / 1 / 2 / 2; }
.dets__03 { grid-area: 1 / 3 / 2 / 4; }
.dets__02,
.dets__03 { width: auto; }
.fil__dest .dest__col { padding: 40px 0; }

/*---------- Sostenibilidad ----------*/ 
.txt__fil { font-size: 20px; }
.fil__tip,
.acopio__maquina {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.tip__info {
    width: 50%;
    min-height: 50vh;
}
.info__01 { padding: 60px 30px; }
.tip__info .icon__tip { font-size: 80px; }
.info__01 > div,
.info__txt {
    max-width: 750px;
    width: 80%;
}
.acopio__maquina > div { height: 60vh; }

/*---------- Contacto ----------*/ 
#contacto .sect__info .cont__col { min-height: calc(100vh - 55px); }
.col__conta .head__sect .sect__tit { font-size: 3.5vw; }
.col__conta .head__sect p { font-size: 1.8vw; }
.tel__contact { font-size: 3.5vw; }
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
/*---------- Productos ----------*/ 
.sect__01 .cont__col .col:nth-child(1) { width: 60%; }
.sect__01 .cont__col .col:nth-child(2) { width: 40%; }
.sect__01 .col__bottle { width: 48%; }
.cont__sello {
    padding-top: 24%;
    top: -50%;
}
.sellos { width: 50%; }
.sect__02 .img__bg { height: 30%; }
}
/* Large Devices, Wide Screens */
@media (max-width: 991px) {
/*---------- Home: productos ----------*/ 
.productos { padding-top: 90px; }
.buble .cate__prod,
.productos .item__prod > span { display: none; }

/*---------- Productos ----------*/ 
.cont__scroll .item__prod:first-child { margin-left: 25px; }
.cont__scroll .item__prod:last-child { margin-right: 25px; }

/*---------- Sostenibilidad ----------*/
.info__compro > div:nth-child(1) figure {
    margin: -30px auto 0;
    width: 450px;
    max-width: 90%;
}
}
@media (min-width: 992px) {
/*---------- Home: productos ----------*/
.productos .head__sect {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
}
.productos .head__sect + * { margin-top: -73px; }
.productos .cont__scroll {
    display: grid;
    justify-content: center;
}
.prod1 { grid-area: 1 / 4 / 2 / 5; }
.prod2 { grid-area: 1 / 3 / 2 / 4; }
.prod3 { grid-area: 1 / 2 / 2 / 3; }
.prod4 { grid-area: 1 / 5 / 2 / 6; }
.prod5 { grid-area: 1 / 6 / 2 / 7; }
.prod6 { grid-area: 1 / 1 / 2 / 2; }
.prod7 { grid-area: 1 / 7 / 2 / 8; }
.productos .item__prod a { padding-top: 220px; }
.productos .item__prod.prod1 .img__prod img {
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
}
.productos .item__prod.prod2 .img__prod img,
.productos .item__prod.prod4 .img__prod img {
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
}
.productos .item__prod.prod3 .img__prod img,
.productos .item__prod.prod5 .img__prod img {
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.productos .item__prod.prod6 .img__prod img,
.productos .item__prod.prod7 .img__prod img {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
}
.productos .item__prod.prod2 .cont__buble,
.productos .item__prod.prod4 .cont__buble  {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}
.productos .item__prod.prod3 .cont__buble,
.productos .item__prod.prod5 .cont__buble  {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.productos .item__prod.prod6 .cont__buble,
.productos .item__prod.prod7 .cont__buble  {
    -webkit-transform: translateY(70px);
    -moz-transform: translateY(70px);
    -ms-transform: translateY(70px);
    -o-transform: translateY(70px);
    transform: translateY(70px);
}
.item__prod:hover .cont__buble {
    -webkit-transform: translateY(-60px) !important;
    -moz-transform: translateY(-60px) !important;
    -ms-transform: translateY(-60px) !important;
    -o-transform: translateY(-60px) !important;
    transform: translateY(-60px) !important;
}
.cont__buble i { border: .28vw solid rgb(var(--amarillo), 1); }
.buble figure,
.buble .icon { opacity: 0;}
.productos .item__prod:hover .buble .icon { opacity: 1; }
.productos .item__prod:hover .buble .cate__prod { opacity: 0; }
.buble .icon span { font-size: 5vw; }

/*---------- Productos ----------*/ 
.item__prod:hover .img__prod img {
    -webkit-transform: translateY(-30px) !important;
    -moz-transform: translateY(-30px) !important;
    -ms-transform: translateY(-30px) !important;
    -o-transform: translateY(-30px) !important;
    transform: translateY(-30px) !important;
}

/*---------- Sostenibilidad ----------*/
.info__compro {
    max-width: 1900px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.info__compro > div:nth-child(1) { width: 40%; }
.info__compro > div:nth-child(1) figure {
    -webkit-transform: translateX(-7%);
    -moz-transform: translateX(-7%);
    -ms-transform: translateX(-7%);
    -o-transform: translateX(-7%);
    transform: translateX(-7%);
}
.info__compro > div:nth-child(2) {
    width: 60%;
    z-index: 1;
}
}
@media (min-width : 992px) and (max-width : 1200px) {
/*---------- Sostenibilidad ----------*/
.info__compro > div:nth-child(2) {
    width: 71%;
    margin-left: -11%
}
}
@media (min-width : 992px) and (max-width : 1100px) {
.cont__buble i { border: .35vw solid rgb(var(--amarillo), 1); }
.buble span { font-size: 1vw; }
}

@media (max-width : 1199px) {
.info__icons {
    max-width: 450px;
    margin: 15px auto 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}
}
@media (min-width : 1200px) {
/*---------- Home:: Video ----------*/     
.slide__thum {
    height: 35vw;
    height: 35dvw;
}

/*---------- Producto detalle: Nueva secciones ----------*/  
.slide__col { width: 50%; }
.slide__01 > div {
    width: 90%;
    margin: 0 auto;
}

/*---------- Sostenibilidad ----------*/
.info__compro > div:nth-child(2) {
    width: 67%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -7%;
    z-index: 1;
}
.info__icons { padding-left: 30px; }
.info__icons > div + div { margin-top: 20px; }
}

/******************************
*   Footer
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (max-width : 991px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 992px){
}
@media (min-width : 992px) and (max-width : 1200px) {
}

/******************************
*   Header
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (max-width : 991px) {
.menu__opt {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    height: calc(100dvh - 65px);
    overflow: auto;
    background: rgb(var(--v_d), 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.menu__opt.active { left: 0%; }
.menu__opt > nav {
    padding: 20px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 65px);
    min-height: calc(100dvh - 65px);
}
.menu__opt > nav > ul + ul { margin-top: 40px; }
.menu__opt > nav > ul > li > a,
nav .opt__head > a,
nav .opt__head > strong,
nav .opt__head .arrow {
    padding: 12px 10px;
    font-size: 18px;
}
.opt__head .arrow,
.opt__child { background: rgb(var(--v_l), .2); }
.opt__child > li > a { padding: 10px 30px; }
.opt__child { display: none; }
.opt__social { text-align: center; }
.opt__social li { display: inline-block; }
.opt__social li:nth-child(1) {
    display: block;
    width: 100%;
}
}
@media (min-width : 992px){
.btn__menu { display: none; }
.menu__opt > nav,
.menu__opt > nav > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.menu__opt > nav > ul + ul { margin-left: 10px; }
nav .opt__men > li > a,
nav .opt__men > li > .opt__head a { padding: 24px 10px; }
.arrow { display: none; }
nav .opt__men > li > a.cta__sol {
    padding: 22px 8px 20px;
    font-size: 23px;
}
.opt__sub {
    position: absolute;
    top:100%;
    left: 0;
    width: 100%;
    background: rgb(var(--v_d), 1);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
nav .opt__men > li:hover .opt__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.opt__sub > div {
    max-width: 1000px;
    margin: 0 auto;
}
.opt__sub > div > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    margin: 0 -15px;
}
.opt__sub > div > ul > li {
    width: 33.33%;
    padding: 15px;
}
.opt__sub > div > ul > li > .opt__head a,
.opt__sub > div > ul > li > .opt__head strong,
.opt__sub > div > ul > li ul li a { padding: 6px 0; }
.opt__sub > div > ul > li > .opt__head a:hover,
.opt__sub > div > ul > li ul li a:hover { color: rgb(var(--amarillo), 1); }
.opt__sub > div > ul > li > .opt__head {
    margin-bottom: 8px;
    position: relative;
}
.opt__sub > div > ul > li > .opt__head::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 1px;
    background: rgb(var(--blanco), .6);
    left: 0;
    top: 100%;
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.opt__sub > div > ul > li:hover .opt__head::before {
    width: 60px;
    background: rgb(var(--amarillo), .8);
}
.opt__social li:nth-child(1) { display: none; }
}
@media (min-width : 992px) and (max-width : 1270px) {
.btn__search {
    border-left: 1px solid rgb(var(--blanco), 1);
    margin-left: 15px;
}
}
@media (max-width : 1269px) {
.search__camp {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgb(var(--v_d), 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.search__camp.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
}
@media (min-width : 1270px){
.cont__menu { padding-right: 15px; }
.btn__search { display: none; }
.search__camp {
    margin-left: 20px;
    width: 250px;
}
}


