.Bodypage::-webkit-scrollbar {
    width: 12px;
    height:10%;
    }
    .Bodypage::-webkit-scrollbar-thumb {
    background: #0a0a40;
    border-radius: 7px; 
    visibility:hidden;
    
    }
    .Bodypage:hover::-webkit-scrollbar-thumb {
        visibility:visible;
    
    }
    .Bodypage::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.0);
    }
    .Bodypage {
        font-family: 'Poppins', sans-serif;
        overflow: overlay;
        overflow-x: hidden;
        position:absolute;
    
      top:0px;
      right:0px;
      bottom:0px;
      left:0px;
        z-index: 1;
        background-color: #f0f7f8;
    }
    header{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px 70px;
        z-index: 80;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.5s;
        opacity: 1;
    }
    header.sticky{
        background: #fff;
        padding: 10px 100px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        border-bottom: solid 1px #74898b;
        display: flex;
        align-items: center;
        opacity: 1;
    }
    header.sticky .navigation li a{
        --clr: #0c076b;
        text-decoration: none;
        color: var(--clr);
        font-weight: 600;
    }
    header.sticky .logo, header.sticky .logo a{
        height: 50px;
    }
    header.sticky .logo .logAzu{
        opacity: 0;
    }
    header .logo{
        height: 55px;
        display: flex;
        align-items: center;
    }
    
    header .logo a{
        height: 55px;
    }
    header .logo img{
        max-height: 55px;
        position: absolute;
    }
    header.sticky .logo img{
        max-height: 50px;
    }
    header .navigation{
        position: relative;
        display: flex;
    }
    header .navigation #marker{
        position: absolute;
        left: 0;
        height: 4px;
        width: 0;
        background: #0a0a40;
        bottom: -8px;
        transition: 0.5s;
        border-radius: 4px;
    }
    header .navigation li{
        list-style: none;
        margin-left: 30px;
    }
    header .navigation li a{
        --clr: #0c076b;
        text-decoration: none;
        color: var(--clr);
        font-weight: 600;
    
    }
    header .navigation li a:hover, header.sticky .navigation li a:hover{
        animation-name: shine;
        animation-iteration-count: infinite;
        animation-timing-function: ease;
        animation-duration: 1s;
    }
    @keyframes shine {
        0%     { text-shadow: 0 0 5px var(--clr); }
        50%   { text-shadow: 0 0 10px var(--clr); }
        100%   { text-shadow: 0 0 5px var(--clr); }
    }
    header .navigation .hovproducts{
        cursor: pointer;
        color: #0c076b;    
    }
    header .navigation .hovproducts ion-icon{
        transition: transform ease-in-out 0.5s;
        transform: rotate(0deg);
    }
    header .navigation .hovproducts:hover ion-icon{
        transition: transform ease-in-out 0.5s;
        transform: rotate(-180deg);
    }
    header .navigation .hovproducts:hover ion-icon{
        transition: transform ease-in-out 0.5s;
        transform: rotate(-180deg);
    }

    .newheader{
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 79;
        visibility: hidden;
        transition: 0.5s;
        opacity: 1;
        background-color: rgba(0,0,0,0.65);
        height: 100vh;
        transition: visibility 0.7s;
    }
    .newheader .blankspace{
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background: transparent
    }
    .newheader .produheader{
        position: absolute;
        top: 0;
        right: 0;
        width: 35%;
        height: 100%;
        background: #fff;
        box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        border-left: solid 1px #74898b;
        border-bottom: solid 1px #74898b;
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        justify-content: flex-start;
    align-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out;
    }
    .newheader .produheader.active{
        transform: translateX(0);
    transition: transform 0.8s ease-in-out;
    }
    .newheader .produheader a{
        box-sizing: border-box;
        width: 25%;
        height: 120px;
        text-decoration: none;
        color: #0c076b;
    }
    .newheader .produheader .especialidad{
        box-sizing: border-box;
        width: 100%;
        padding: 10px 25px;
        border-right: solid 1px #74898b;
        border-bottom: solid 1px #74898b;
        height: 120px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        
    }
    @keyframes swing {
        25% {
              transform: rotate3d(0, 0, 1, 6deg);
          }
          50% {
              transform: rotate3d(0, 0, 1, -4deg);
          }
      
          75% {
              transform: rotate3d(0, 0, 1, 2deg);
          }
      
          100% {
              transform: rotate3d(0, 0, 1, 0deg);
          }
      }
    
    .newheader .produheader .especialidad img{
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        filter: invert(12%) sepia(37%) saturate(3997%) hue-rotate(232deg) brightness(106%) contrast(130%);
    }
    .newheader .produheader .especialidad:hover img{
        animation: swing 0.6s infinite;
    }
    .newheader .produheader .especialidad h3{
        text-align: center;
        font-size: 0.9rem;
    }
    .banner{
        position: relative;
       display: flex;
      width: 100%;
      min-height: calc(60vh);
        align-items: flex-start;
        justify-content: space-between;
    }
    .banner .slide{
        position: relative;
        width: 100%;

        box-sizing: border-box;
    }
    .banner .slide img{
        width: 100vw;
        height: calc(60vh);
        filter: brightness(50%);
       
    }
    .banner svg{
        position: absolute;
        height: 100px;
        transform: rotate(180deg);
       width: 100%;
       bottom: -1px;
      
    }
    .fillsvg{
        fill: #f0f7f8;
    }
    .banner .navigation-manual{
        position: absolute;
        width: 100vw;
        bottom: 50px;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }
    .banner .manual-btn{
        border: 2px solid #0c076b;
        padding: 5px;
        border-radius: 10px;
        cursor: pointer;
        transition: 1s;
        z-index: 8;
    }
    .banner .manual-btn:not(:last-child){
        margin-right: 40px;
    }
    .manual-btn:hover{
        background: #0c076b;
    }
    #radio1:checked ~ .first{
        margin-left: 0;
    }
    #radio2:checked ~ .first{
        margin-left: -20%;
    }
    #radio3:checked ~ .first{
        margin-left: -40%;
    }
    #radio4:checked ~ .first{
        margin-left: -60%;
    }
    #radio5:checked ~ .first{
        margin-left: -80%;
    }
    .banner .navigation-auto{
        position: absolute;
        display: flex;
        width: 100vw;
        bottom: 50px;
        justify-content: center;
        box-sizing: border-box;
    }
    .banner .navigation-auto div{
        border: 2px solid #0c076b;
        padding: 5px;
        border-radius: 10px;
        transition: 1s;
    }
    .quesera{
        position: absolute;
        width: 400px;
        right: -400px;
        opacity: 0;
        top: 60%;
        font-size: 2rem;
        color: white;
  text-shadow: 0 1px 0 #ccc,
               0 0.5px 0 #c9c9c9,
               0 1px 0 #bbb,
               0 3px 0 #b9b9b9,
               0 3px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);  
    }

        
    @keyframes textbanner {
        0%{ }
        80%{opacity: 1;}
        100%{ right: 80px; opacity: 1; }
         
    }
    .banner .navigation-auto div:not(:last-child){
        margin-right: 40px;
    }
    #radio1:checked ~ .slide .quesera.xd1{
        animation: textbanner 2s cubic-bezier(.48,.13,.56,1.46) 0.5s 1 forwards;
    }
    #radio2:checked ~ .slide .quesera.xd2{
        animation: textbanner 2s cubic-bezier(.48,.13,.56,1.46) 0.5s 1 forwards;
    }
    #radio3:checked ~ .slide .quesera.xd3{
        animation: textbanner 2s cubic-bezier(.48,.13,.56,1.46) 0.5s 1 forwards;
    }
    #radio4:checked ~ .slide .quesera.xd4{
        animation: textbanner 2s cubic-bezier(.48,.13,.56,1.46) 0.5s 1 forwards;
    }
    #radio5:checked ~ .slide .quesera.xd5{
        animation: textbanner 2s cubic-bezier(.48,.13,.56,1.46) 0.5s 1 forwards;
    }
    #radio1:checked ~ .navigation-auto .auto-btn1{
        background: #0c076b;
    }
    
    #radio2:checked ~ .navigation-auto .auto-btn2{
        background: #0c076b;
    }
    #radio3:checked ~ .navigation-auto .auto-btn3{
        background: #0c076b;
    }
    #radio4:checked ~ .navigation-auto .auto-btn4{
        background: #0c076b;
    }
    #radio5:checked ~ .navigation-auto .auto-btn5{
        background: #0c076b;
    }

    .effSeparador{
        position: relative;
       display: flex;
        width: 100%;
        height: 100px;
        box-sizing: border-box;
    }
    .effSeparador:after {
        content: "";
    
      width: 100%;
      height: 100px;
        background: #294E7B;
        clip-path: polygon(0 50px,0 50px,0 90px,0 90px);   
    }
    .effSeparador[data-scroll="in"]:after{
        animation: effSeparador 2.45s ease-in 1 forwards;
    }
    @keyframes effSeparador {
        0%{ }
        100%{ clip-path: polygon(0 50px,100% 10px,100% 50px,0 90px); }
         
    }
    .SCircle{
        position: absolute;
        bottom: 0;
        left: -30px;
        z-index: 2;
    }
    .effSeparador[data-scroll="in"] .SCircle{
        animation: EffSCircle 2.5s ease-in 1 forwards;
    }
    @keyframes EffSCircle {
        0%{ }
        100%{ left: 100%; bottom: 40px; }
         
    }
    .FranjaDU{
        height: 100vh;
        background: #00A2E8;
        clip-path: polygon(0 50%, 100% 0,100% 50%,0 100%);
        position: relative;
    }
    
    .banner .bannerNomempre{
        position: absolute;
        top: 0%;
        left: 15%;
        transform: skewY(-11deg) translateY(-9rem);
        z-index: 3;
        animation: 3s cubic-bezier(.61,.31,.17,1.65) 9.5s 1 forwards nomemprefe;
    }

    @keyframes nomemprefe {
        0%     { }
        70% {
            transform: skewY(-3deg) translateY(-2rem) ;
            top: 10%;
        }
        100% {
            transform: skewY(0deg) translateY(0rem) ;
            top: 10%;
        }
    }
    .banner .bannerNomempre h1{
        color: #000;
        font-size: 5rem;
        font-weight: 800;
        color: transparent;
        -webkit-text-stroke: 2px #000;
        background: url(images/back2.png);
        -webkit-background-clip: text;
        animation: letrasfondo 20s linear infinite;
        
    }
    @keyframes letrasfondo {
        100% {
            background-position: 2000px 0;
        }
    }
    .bannerSlogan{
        position: absolute;
        top: 40%; 
        right: 50%;
        transform: translate(50%,-50%);
        z-index: 3;
        opacity: 0;
        animation: 2s ease-in-out 9.5s 1 forwards aparecer;
    }
    @keyframes aparecer {
        0%     { }
        100% {
            opacity: 1;
        }
    }
    .bannerSlogan h2{
        color: #000;
        font-size: 3rem;
        font-weight: 400;
    }
    .banner .bannerMision{
        position: absolute;
        bottom: calc(10%);
        right: calc(100% + 40%);
        z-index: 3;
        width: 40%;
        animation: 1.5s ease-in-out 9.5s 1 forwards Mision;
    }
    .banner .bannerVision{
        position: absolute;
        bottom: calc(10%);
        left: calc(100% + 40%);
        z-index: 3;
        width: 40%;
        animation: 1.5s ease-in-out 9.5s 1 forwards Vision;
    }
    @keyframes Mision {
        0%     { }
        100% {

            right: 55%;
        }
    }
    @keyframes Vision {
        0%     { }
        100% {
            left: 55%;
        }
    }
 .bannerText h2, .bannerMision h2, .bannerVision h2{
        color: #000;
        font-size: 3rem;
        font-weight: 400;
    }
.bannerMision h3, .bannerVision h3{
        color: #000;
        font-size: 2rem;
        font-weight: 400;
    }
    .celView{
        position: relative;
        z-index: 3;
        top: 105px;
        right: 60px;
        --i: 40px;
        opacity: 0;
        animation: electronic 1.5s ease-in 7.12s 1 forwards;
    }
    @keyframes electronic {
        0%{ opacity: 0;transform: translateX(var(--i)); }
        100%{ opacity: 1;transform: translateX(0px); }
         
    }
    .celView img{
        height: 520px;
    }
    .subtitulo{
        width: 100%;

        display: flex;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 7;
      
    }
    .subtitulo h2{
        position: relative;
        font-size: 4rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        color: transparent;

    }
    .subtitulo h2::before{
        content: attr(data-text);
        position: absolute;
        top:0;
        left:0;
        width: 0;
        height: 100%;
        color: #f0f7f8;
        /* -webkit-text-stroke: 2px #0e0f0f; */
        text-shadow: 3px 3px 3px #0e0f0f, -3px -3px 3px #0e0f0f;
        border-right: 2px solid #0e0f0f;
        overflow: hidden;
        /* animation: textSub 3s cubic-bezier(1,.03,0,.82) forwards; */
    }
    .subtitulo h2::before{
        animation: textSub 2s cubic-bezier(1,.03,0,.82) 0.3s forwards;
    }
    @keyframes textSub {
        0%{
            width: 0;
        }
      99%{
            width: 100%;
            border-right: 2px solid #0e0f0f;
        }
        100%{
            width: 100%;
            border-right: 0px solid #0e0f0f;
        }
    }

    @keyframes lineSub {
        0%,40%,100%{
            opacity: 0;
        }
        20%{
            opacity: 1;
            }
    }

    /* INICIA PRODUCTOS */

    .productos{
        padding: 20px;
        width: 100%;
        margin: 40px auto;
        box-sizing: border-box;
    }
    .productos .categorias{
        margin-bottom: 50px;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-evenly;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .butcat{
        color: #0c076b;
        border: 2px solid #0c076b;
        font-size: 18px;
        width: auto;
        height: auto;
        font-weight: 500;
        cursor: pointer;
        padding: 13px 14px;
        background-position: 0 0;
      background-image: linear-gradient(to top, #0c076b 50%, #fff 50%);
      transition: background-position 0.8s ease-in-out, color 0.8s ease-in-out;
      background-size: auto 200%;
      margin: 0 10px 10px 0;
    }
 .butcat:hover{
        color: #fff;
      background-position: 0 100%;
      background-image: linear-gradient(to top, #0c076b 50%, #fff 50%);
    }
    .butcat.active{
        color: #fff;
      background-position: 0 100%;
      background-image: linear-gradient(to top, #0c076b 50%, #fff 50%);
    }
  
    .productos .subcategorias{
        margin-bottom: 10px;
        width: 100%;
        height: auto;
        visibility:hidden;
        padding: 0 20px;
        box-sizing: border-box;
        display: none;
    }
    .productos .subcategorias.active{
        visibility:visible;
        display: flex;
    }
    .butsub{
        color: #47bfce;
        border: 2px solid #47bfce;
        font-size: 18px;
        width: auto;
        height: auto;
        font-weight: 500;
        cursor: pointer;
        padding: 13px 14px;
        background-position: 0 0;
      background-image: linear-gradient(to top, #47bfce 50%, #fff 50%);
      transition: background-position 0.8s ease-in-out, color 0.8s ease-in-out;
      background-size: auto 200%;
      margin: 0 10px 10px 0;
    }
 .butsub:hover{
        color: #fff;
      background-position: 0 100%;
      background-image: linear-gradient(to top, #47bfce 50%, #fff 50%);
    }
    .butsub.active{
        color: #fff;
      background-position: 0 100%;
      background-image: linear-gradient(to top, #47bfce 50%, #fff 50%);
    }
  
    .productos .container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      
    }
    .productos .container .itemBox{
        position: relative;
        width: 300px;
        height: 300px;
        margin: 5px;
    }
    .productos .container .itemBox img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .productos .container .card{
        position: relative;
        width: 300px;
        height: 400px;
        background: #fff;
        transform-style: preserve-3d;
        transform: perspective(2000px);
        transition: 1s;
        box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.15),0 20px 20px rgba(0, 0, 0, 0.15);
        margin: 30px 150px;
        box-sizing: border-box;
    }
    .productos .container .card:hover{
    
        transform: perspective(2000px) translateX(50%);
        box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.15),0 10px 10px rgba(0, 0, 0, 0.15);
    }
    .productos .container .card .cover{
        position: relative;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 5;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        transform-style: preserve-3d;
        overflow: hidden;
        transition: 1s ease-in-out;
        transform-origin: left;
    }
    .productos .container .card:hover .cover{
        transform: rotateY(-180deg);
    }
    .productos .container .card .cover img{
        position: absolute;
        max-width: 100%;
        z-index: 4;
        transition: 0.5s;
        transition-delay: 0.5s;
    }
    .productos .container .card .cover img:nth-child(1){
        width: 110px;
        top: 10px;
        right: 10px;
    }
    .productos .container .card .cover img:nth-child(2){
        bottom: 20px;

    height: 32px;
    }
    .productos .container .card .cover .centerimageprod{
        padding-left: 40px;
        width: 100%;
        box-sizing: border-box;
    }
    .productos .container .card .cover .centerimageprod img{
        position: relative;
        width: 260px;
        height: 260px;
        box-sizing: border-box;
        top: 0;
        right: 0;
    }
    .productos .container .card:hover .cover img:nth-child(1), .productos .container .card:hover .cover img:nth-child(2){
        transform: rotateY(180deg);
    }
    .productos .container .card:hover .cover .centerimageprod img{
        transform: rotateY(0deg);
    }
    .productos .container .card .cover:before{
        content: '';
        position: absolute;
        left: 40px;
        width: 20px;
        height: 150%;
        background: #fff;
        transform: rotate(0deg);
        box-shadow: -20px 0 0px 10px #59abb3;
        transition: 0.5s;
        transition-delay: 0.5s;
        /* clip-path: polygon(20px 0,20px 100%,45px 100%, 45px 0); */
        /* clip-path: polygon(0 calc(100% - 20px), calc(100% - 20px) 0,100% 0, 100% 20px, 20px 100%,0 100%); */
    }
    .productos .container .atom .card .cover:before{
        box-shadow: -20px 0 0px 10px #ea480a;
    }
    .productos .container .acutronic .card .cover:before{
        box-shadow: -20px 0 0px 10px #1c9f9c;
    }
    .productos .container .fisher .card .cover:before{
        box-shadow: -20px 0 0px 10px #003263;
    }
    .productos .container .nihon .card .cover:before{
        box-shadow: -20px 0 0px 10px #316bcb;
    }
    .productos .container .aerogen .card .cover:before{
        box-shadow: -20px 0 0px 10px #0175be;
    }
    .productos .container .bitmos .card .cover:before{
        box-shadow: -20px 0 0px 10px #397db7;
    }
    .productos .container .toitu .card .cover:before{
        box-shadow: -20px 0 0px 10px #06ab34;
    }
    .productos .container .durrtechnik .card .cover:before{
        box-shadow: -20px 0 0px 10px #006651;
    }
    .productos .container .medcaptain .card .cover:before{
        box-shadow: -20px 0 0px 10px #3aa4dc;
    }
    .productos .container .penlon .card .cover:before{
        box-shadow: -20px 0 0px 10px #e52018;
    }
    
    /* .productos .container .card:hover .cover:before{
        width: 20px;
        box-shadow: -20px 0 0px 10px #59abb3;
        transform: rotate(0deg);
    } */
    /* .productos .container .card:hover .cover img{
        transform: rotateY(180deg);
    } */

    .productos .container .card .details{
        position: absolute;
        box-sizing: border-box;
        padding: 20px;

        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        text-align: justify;
        z-index: 4;
    }
    .productos .container .card .details h3{
        font-weight: 500;
        margin: 5px 0;
    }
    .productos .container .card .details .contentdetails{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .productos .container .card .details .buttOptions{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    .productos .container .card .details .buttcatalogo{
        display: inline-block;
        padding: 8px 20px;
        /* background: #47bfce; */
        color: #fff;
        margin-top: 5px;
        letter-spacing: 1px;
        border-radius: 25px;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        z-index: 4;
    }
    .productos .container .atom .card .details .buttcatalogo,.productos .container .atom .card .details .buttOptions .share:before{
        background: #ea480a; 
    }
    .productos .container .acutronic .card .details .buttcatalogo,.productos .container .acutronic .card .details .buttOptions .share:before{
        background: #1c9f9c; 
    }
    .productos .container .fisher .card .details .buttcatalogo,.productos .container .fisher .card .details .buttOptions .share:before{
        background: #003263; 
    }
    .productos .container .nihon .card .details .buttcatalogo,.productos .container .nihon .card .details .buttOptions .share:before{
        background: #316bcb; 
    }
    .productos .container .aerogen .card .details .buttcatalogo,.productos .container .aerogen .card .details .buttOptions .share:before{
        background: #0175be; 
    }
    .productos .container .bitmos .card .details .buttcatalogo,.productos .container .bitmos .card .details .buttOptions .share:before{
        background: #397db7; 
    }
    .productos .container .toitu .card .details .buttcatalogo,.productos .container .toitu .card .details .buttOptions .share:before{
        background: #06ab34; 
    }
    .productos .container .durrtechnik .card .details .buttcatalogo,.productos .container .durrtechnik .card .details .buttOptions .share:before{
        background: #006651; 
    }
    .productos .container .medcaptain .card .details .buttcatalogo,.productos .container .medcaptain .card .details .buttOptions .share:before{
        background: #3aa4dc; 
    }
    .productos .container .penlon .card .details .buttcatalogo,.productos .container .penlon .card .details .buttOptions .share:before{
        background: #e52018; 
    }
    .productos .container .card .details .buttOptions .share{
        position: relative;
        width: 100%;
        display: flex;
        height: 34px;
        box-sizing: border-box;
        margin: 10px 0 0;
        padding: 0;
    }
    .productos .container .card .details .buttOptions .share:before{
        content: '\f1e0';
        font-family: fontAwesome;
        position: absolute;
        width: 100%;
        height: 100%;
      
        border-radius: 30px;
        text-align: center;
        line-height: 34px;
        color: #fff;
        font-size: 20px;
        margin: 0 2px;
        transition: 0.7s;
        z-index: 1;
    }
    .productos .container .card .details .buttOptions .share:hover:before{
        width: 34px;
    }
    .productos .container .card .details .buttOptions .sharicons{
        display: block;
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        position: absolute;
        color: #fff;
        margin: 0 2px;
        border-radius: 50%;
        font-size: 20px;
        transition-duration: 1s;
        box-sizing: border-box;
    }
    .share:hover .sharicons:nth-child(1){
        transform: translateX(43.3px) rotate(360deg);
        transition-delay: 0.8s;
    }
    .share:hover .sharicons:nth-child(2){
        transform: translateX(86.6px) rotate(360deg);
        transition-delay: 0.6s;
    }
    .share:hover .sharicons:nth-child(3){
        transform: translateX(129.9px) rotate(360deg);
        transition-delay: 0.4s;
    }
    .share:hover .sharicons:nth-child(4){
        transform: translateX(173.2px) rotate(360deg);
        transition-delay: 0.2s;
    }
    .share:hover .sharicons:nth-child(5){
        transform: translateX(216.5px) rotate(360deg);

    }
    .sharicons:nth-child(1){
        background: #1877F2;
    }
    .sharicons:nth-child(2){
        background: #25D366;
    }
    .sharicons:nth-child(3){
        background: #1DA1F2;
    }
    .sharicons:nth-child(4){
        background: #E4405F;
    }
    .sharicons:nth-child(5){
        background: #0A66C2;
    }
   /* TERMINA PRODUCTOS */

 /* INICIA EL FOOTER */
 .site-footer
 {
   background-color:#26272b;
   padding:45px 40px 0px;
   font-size:15px;
   line-height:24px;
   color:#737373;
   display: flex;
   flex-direction: column;
 }
 .site-footer .container
 {
   width: 100%;
   display: flex;

 }
 .site-footer hr
 {
   border-top-color:#bbb;
   opacity:0.5
 }
 .site-footer hr.small
 {
   margin:20px 0
 }
 .site-footer h6
 {
   color:#fff;
   font-size:16px;
   text-transform:uppercase;
   margin-top:5px;
   letter-spacing:2px
 }
 .site-footer a
 {
   color:#737373;
 }
 .site-footer a:hover
 {
   color:#0c076b;
   text-decoration:none;
 }
 .footer-links
 {
   padding-left:0;
   list-style:none
 }
 .footer-links li
 {
   display:block
 }
 .footer-links a
 {
   color:#737373
 }
 .footer-links a:active,.footer-links a:focus,.footer-links a:hover
 {
   color:#3366cc;
   text-decoration:none;
 }
 .footer-links.inline li
 {
   display:inline-block
 }
 .site-footer .social-icons
 {
   text-align:right
 }
 .site-footer .social-icons a
 {
   width:40px;
   height:40px;
   font-size: 1.8rem;
 align-items: center;
 display: flex;
 justify-content: center;
   margin-left:6px;
   margin-right:0;
   border-radius:100%;
   background-color:#33353d
 }
 .copyright-text
 {
   margin:0
 }
 .social-icons
 {
   padding-left:0;
   margin-bottom:0;
   list-style:none
 }
 .social-icons li
 {
     margin-top: 10px;
     height: 100%;
   display:inline-block;
 }
 .social-icons li.title
 {
   margin-right:15px;
   text-transform:uppercase;
   color:#96a2b2;
   font-weight:700;
   font-size:13px
 }
 .social-icons a{
   background-color:#eceeef;
   color:#818a91;
   font-size:16px;
   display:inline-block;
   width:44px;
   height:44px;
   text-align:center;
   margin-right:8px;
   border-radius:100%;
   -webkit-transition:all .2s linear;
   -o-transition:all .2s linear;
   transition:all .2s linear
 }
 .social-icons a:active,.social-icons a:focus,.social-icons a:hover
 {
   color:#fff;
   background-color:#29aafe
 }
 .social-icons.size-sm a
 {
   line-height:34px;
   height:34px;
   width:34px;
   font-size:14px
 }
 .social-icons a.facebook:hover
 {
   background-color:#3b5998
 }
 .social-icons a.twitter:hover
 {
   background-color:#00aced
 }
 .social-icons a.linkedin:hover
 {
   background-color:#007bb6
 }
 .social-icons a.dribbble:hover
 {
   background-color:#ea4c89
 }
 .site-footer .logofoot{
     width: 20%;
 }
 .site-footer .logofoot img{
     width: 200px;
 }
 .site-footer .acercad{
     width: 46%;
     text-align: justify;
     padding: 0 15px;
     box-sizing: border-box;
 }
 .site-footer .emailsextras{
     width: 17%;
     padding: 0 15px;
     box-sizing: border-box;
     word-wrap: break-word;
 }
 .site-footer .telefonextras{
     width: 17%;
     padding: 0 15px;
     box-sizing: border-box;
 }

 .site-footer .copyredes{
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-sizing: border-box;
 }

/* TERMINA EL FOOTER */
      /* TEST PARA EL EFECTO */
      .retest{
        width: 100%;
        display: flex;
        box-sizing: border-box;
    }
        .containertest1{
            width: 67%;
            margin-right: 2%;
            box-sizing: border-box;
        }
        .containertest2{
            width: 31%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-sizing: border-box;
        }
        .containertest1 h3,.containertest2 h3{
            color: #0e0f0f;
            font-weight: 700;
            font-size: 1.5rem;
          }
        .xdtest1{
            padding: 40px;
            background: #fff;
            box-shadow: 0 5px 35px rgb(0 0 0 / 15%);
            box-sizing: border-box;
            
            overflow: hidden;
            opacity: 0
        }
        .retest[data-scroll="in"] .xdtest1{
            animation: showCont 2s cubic-bezier(1,.03,0,.82) 0.5s forwards;
        }
        @keyframes showCont {
            0%{ width: 10%; height: 10%;transform: translate(50px, 50px) rotate(100deg); opacity: 0;
            }
            10%{
                opacity: 1;
            }
    
            100%{ transform: translate(0px, 0px) rotate(0deg);width: 100%; height: 100%;opacity: 1;  }
        }
        @keyframes showCont2 {
            0%{ width: 10%; height: 10%;transform: translate(-80%, 100px) rotate(100deg); opacity: 0;
            }
            10%{
                opacity: 1;
            }
    
            100%{ transform: translate(0px, 0px) rotate(0deg);width: 100%; height: 48%;opacity: 1;  }
        }
        
        .xdtest2{
            padding: 30px;
            background: #0a0a40;
            box-shadow: 0 5px 35px rgb(0 0 0 / 15%);
            height: 48%;
            margin-bottom: 4%;
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
            
            opacity: 0
        }
        .retest[data-scroll="in"] .xdtest2{
            animation: showCont2 1.5s cubic-bezier(.21,.57,.05,.94) 2.5s forwards;
        }
 
        .xdtest2 h3{
            color: #fff;
        }
        .xdtest2 .infoBox div{
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .xdtest2 .infoBox div span{
            min-width: 40px;
            height: 40px;
            color: #fff;
            background: #59abb3;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            border-radius: 50%;
            margin-right: 15px;
        }
        .xdtest2 .infoBox div p{
            color: #fff;
            font-size: 1.1rem;
            text-align: justify;
        }
        .xdtest2 .infoBox div a{
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
        }
        .xdtest3{
                padding: 0;
                background: #fff;
                height: 48%;
            box-shadow: 0 5px 35px rgb(0 0 0 / 15%);
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
            
            opacity: 0
        }
        .retest[data-scroll="in"] .xdtest3{
            animation: showCont2 1.5s cubic-bezier(.21,.57,.05,.94) 4s forwards;
        }
            .xdtest3 iframe{
                width: 100%;
                height: 100%;
            }
  
        /* TEST PARA EL EFECTO */
  
    /* VISTA CELULAR */
    
    @media (max-width: 991px){
        .Bodypage:hover::-webkit-scrollbar-thumb {
        visibility: hidden;
    }
    /* .site-footer [class^=col-]
      {
        margin-bottom:30px
      }
      .site-footer
      {
        padding-bottom:0
      }
      .site-footer .copyright-text,.site-footer .social-icons
      {
        text-align:center
      }
    .social-icons li.title
      {
        display:block;
        margin-right:0;
        font-weight:600
      } */
        header,header.sticky{
        padding: 5px 20px;
        width: 100%;
        box-sizing: border-box;
    
        }
        header.sticky .menuToggle{
         
        }
        header.sticky .menuToggle.active{
    
        }
        header.active .logo .logAzu{
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }
        header.active{
            background-color: #fff;
            border: none;
            transition: background-color 0.5s ease-in-out;
            
        }
        header .navigation{
            display: none;
        }
        header.sticky .navigation.active{
        height: calc(100% - 58px);
        position: fixed;
        top: 58px;
    }
        header .navigation.active{
        width: 100%;
        height: calc(100% - 65px);
        position: fixed;
        top: 65px;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: #fff;
    }
    header.sticky .navigation.active li a{
        text-decoration: none;
        color: #111;
        font-size: 1.6em;
        font-weight: 300;
    }
    header .navigation li{
        margin-left: 0;
        margin-bottom: 25px;
    }
    header .navigation li .arrowdisap{
        display: none;
    }
    header .navigation li a{
        text-decoration: none;
        color: #111;
        font-size: 1.6em;
        font-weight: 300;
    }
        .menuToggle{
            position: relative;
            width: 40px;
            height: 40px;
            background-image: url(images/menu.png);
    
            background-size: 30px;
            background-repeat: no-repeat;
            background-position: center;
            cursor: pointer;
        }
        .menuToggle.active{
            background: url(images/close.png);
            background-size: 25px;
            background-repeat: no-repeat;
            background-position: center;
        }
    
    .banner {
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
    }
    .banner .bannerNomempre{
        top: 70px;
        left: 0px;
        width: 288px;
        height: 425px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner  h2{
        width: 288px;
    }
.contacto{
    padding: 20px;
}
    .site-footer .container{
        flex-direction: column;
    }
    .site-footer .logofoot{
        width: 100%;
    display: flex;
    justify-content: center;
    }
    .site-footer .acercad{
        width: 100%;
    }
    .site-footer .emailsextras{
        width: 100%;
    }
    .site-footer .telefonextras{
        width: 100%;
    }

    .retest{
        flex-direction: column;
    }
    .containertest1{
        width: 100%;
    }
    .containertest2{
        width: 100%;
    }
    .productos{
        padding: 0;
    }
    .productos .subcategorias{
        padding: 0 15px;
    }
    .productos .subcategorias.active{
        flex-wrap: wrap;
    }
    .productos .container .card:hover{
        transform: perspective(250px) translateX(0%);
    }
    
    .productos .container .card:hover .cover{
        transform: rotateY(-90deg); 
    }


    }

      