
    /* GENERAL */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
        list-style: none;
    }
    
    body {
        background-color:  #FFF;
        font-family: Arial, Helvetica, sans-serif;
        min-height: 101vh;
    }
    
        /* HEADER */
    
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.6s;
        padding: 20px 100px;
        z-index: 1000;
        background-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
    }
    
    header .logo {
        position: relative;
        font-weight: 700;
        color: #FFF;
        text-decoration: none;
        font-size: 2em;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: 0.6s;
    }
    
    header ul {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    
    }
    
    header ul li {
        position: relative;
    }
    
    header ul li a {
        font-size: 15px;
        position: relative;
        margin: 0 30px;
        text-decoration: none;
        color: #FFF;
        letter-spacing: 2px;
        font-weight: 700;
        transition: 0.6s;
        text-transform: uppercase;
    }
    
    
    header.sticky {
        height: 8vh;
        padding: 20px 180px;
        background: #e0e0e0;
        box-shadow:  0 2px 2px 0 #7d7d7d, 0 6px 20px 0 rgba(0,0,0,0.6);
    }
    
    header.sticky ul li a {
        color: #353535;
    }
    
    header.sticky .logo {
        color: #353535;
    }
    
    .menu-btn {
        color: #FFF;
        font-size: 20px;
        display: none;
    }
    
    .menu-btn.sticky {
        color: #353535;
    }
    
    @media (max-width:991px) {
    
        .menu-btn {
            display: block;
            position: fixed;
            margin: 20px;
            z-index: 2000;
        }
    
        header {
            top: 0;
            left: 0;
            width: 100%;
            height: 15vh;
            display: flex;
            flex-direction: column;
            transition: .5s;
            transform: translateY(-103%);
        }
    
        header.sticky {
            height: 15vh;
        }
    
        header.active {
            transform: translateY(0);
        }

        header.sticky ul li a {
            margin: 17PX;
        }

        header ul li a {
            margin: 20PX;
        }
    
    }
    
        /* FOOTER */
    
    .footer {
        position: relative;
        width: 100%;
        background-color: #121212;
        min-height: 280px;
        padding-inline: 20px 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .social-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 10px 5px;
        flex-wrap: wrap;
    }
    
    .icon-elem {
        list-style: none;
    }
    
    .icon {
        color: #FFF;
        font-size: 32px;
        display: inline-block;
        margin: 0 10px;
        transition: 0.5s;
    }
    
    .icon:hover {
        transform: translateY(-10px);
    }
    
    .menu {
        display: flex;
        justify-content: center;
        position: relative;
        align-items: center;
        margin:  10px 0;
        flex-wrap: wrap;
    }
    
    .menu-icon {
        color: #FFF;
        font-size: 20px;
        display: inline-block;
        margin: 5px 10px;
        opacity: 0.75;
        transition: 0.3s;
    }
    
    .menu-icon:hover {
        opacity: 1;
    }
    
    .text {
        color: #FFF;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 20px;
    }
    
        /* Swiper Catalogo */
    
    .mySwiper {
        background-image: url(images/hero.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .swiper {
        width: 100%;
        padding: 130px 0 50px 0;
    }
    
    .swiper-slide {
        width: 350px;
        height: 500px;
        background-color: #323232;
        box-shadow: 0 0 20px rgba(0,0,0,0.4);
        padding: 20px;
        text-align: center;
        border-radius: 5px;
    }
    
    .icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .icons i {
        font-size: 20px;
        color: #7d7d7d;
    }
    
    .icons img {
        width: 120px;
    }
    
    .product-content {
        display: flex;
        justify-content: space-between;
    }
    
    .product-txt {
        color: #7d7d7d;
    }
    
    .product-txt span {
        font-size: 25px;
        font-weight: bold;
    }
    
    .product-txt h3 {
        font-size: 20px;
        color: #FFF;
        text-transform: uppercase;
    }
    
    .product-txt p {
        font-size: 18px;
        color: #e0e0e0;
        margin: 20px 0;
    }

    .product-txt h4 {
        margin-top: 12vh;
    }
    
    .product-img span {
        font-size: 25px;
        font-weight: bold;
    }
    
    .product-img h3 {
        font-size: 20px;
        color: #FFF;
        text-transform: uppercase;
        text-shadow: 1px 1px 5px #636363;
    }
    
    .product-img p {
        font-size: 14px;
        color: #e0e0e0;
        margin: 20px 0;
    }
    
    .product-img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: .5s;
        align-items: center;
        align-content: center;
        text-align: center;
        padding: 1px 20px 50px 20px;
        background-color: #353535;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 5px;
    }
    
    .product-img span {
        color: #FFF;
        text-shadow: 1px 1px 5px #636363;
    }
    
    .btn-1 {
        color: #FFF;
        font-weight: 900;
        font-size: 15px;
        text-transform: uppercase;
        background-color: #7d7d7d;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        text-shadow: 2px 2px 5px #636363;
        left: 50%;
        transform: translateX(-50%);
        top: 63%;
        transition: .5s;
    }

    .btn-1:hover {
        background-color: #ffc845;
    }
    
        /* SWIPPER DESPLEGABLE */
    
    .PtImg01.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/02.jpg);
        display: initial;
    }
    
    .PtImg01.product-img {
        background-image: url(./images/01.jpg);
    }
    
    .PtImg02.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/04.jpg);
        display: initial;
    }
    
    .PtImg02.product-img {
        background-image: url(./images/03.jpg);
    }
    
    .PtImg03.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/06.jpg);
        display: initial;
    }
    
    .PtImg03.product-img {
        background-image: url(./images/05.jpg);
    }
    
    .PtImg04.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/08.jpg);
        display: initial;
    }
    
    .PtImg04.product-img {
        background-image: url(./images/07.jpg);
    }
    
    .PtImg05.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/09.jpg);
        display: initial;
    }
    
    .PtImg05.product-img {
        background-image: url(./images/10.jpg);
    }

    .PtImg06.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/13.jpg);
        display: initial;
    }
    
    .PtImg06.product-img {
        background-image: url(./images/12.jpg);
    }

    .PtImg07.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/15.jpg);
        display: initial;
    }
    
    .PtImg07.product-img {
        background-image: url(./images/14.jpg);
    }
    
    .PtImg08.product-img.active {
        transform: translateX(100%);
        background-color: #7d7d7d;
        background-image: url(./images/70.jpg);
        display: initial;
    }
    
    .PtImg08.product-img {
        background-image: url(./images/71.jpg);
    }
    
    @media (max-width:991px) {
    
        .PtImg01.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }
    
        .PtImg02.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }
    
        .PtImg03.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }
    
        .PtImg04.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }
    
        .PtImg05.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }

        .PtImg06.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }

        .PtImg07.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }
        
        .PtImg08.product-img.active {
            transform: translateX(0);
            opacity: 0;
        }

        .footer {
            margin-top: -35px;
            min-height: 400px;
        }

        .locker {
            transform: translateY(-3.5vh);
        }
    
    }
    
        /* WHATSAPP ICON */
    
    .btn-wsp{
        position:fixed;
        width:60px;
        height:60px;
        line-height: 63px;
        bottom:25px;
        right:25px;
        background:#25d366;
        color:#FFF;
        border-radius:50px;
        text-align:center;
        font-size:35px;
        box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
        z-index:100;
        transition: all 300ms ease;
    }
    
    .btn-wsp:hover{
        background: #20ba5a;
    }
    
    
    @media only screen and (min-width:320px) and (max-width:768px){
        .btn-wsp{
            width:63px;
            height:63px;
            line-height: 66px;
        }
    }

    
    /* Parte 1 1-2 */

    .locker {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-transform: uppercase;
        font-size: 15px;
        width: 100%;
        height: 70px;
        display: grid;
        place-content: center;
        background-color: #e0e0e0;
        color: #fff;
        text-shadow: 2px 2px 6px #000000;
        box-shadow:  0 2px 1px 0 #7d7d7d, 0 6px 20px 0 rgba(0,0,0,0.8);
    }