@import url('https://fonts.googleapis.com/css2?family=Alice&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Root */
:root {
    --green: #04B90B;
    --blue: #064296;
    --blue-text: #3C4E59;
    --gray: #676767;
    --bkg: #EEEFF3;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(82, 60%, 28%);
    --title-color: hsl(0, 0%, 15%);
    --text-color: hsl(0, 0%, 35%);
    --body-color: hsl(0, 0%, 95%);
    --container-color: hsl(0, 0%, 100%);

}

/* RESET */
*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

/* HEADER */
header {
    height: 100px;
    background: #fff;
    padding: 20px 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: height 0.4s;
    border-bottom: 6px solid var(--green);
}

    /* LOGO */
    #logo {
        max-width: 420px;
        transition: width 0.8s ease;
        margin: 10px 0;
    }

    /* MENU */
    .menu {
        display: flex;
    }
        .menu a {
            color: var(--gray);
            font-size: 1.1rem;
            text-transform: uppercase;
            text-decoration: none;
            padding: 0 14px;
            transition: 0.4s;
            display: flex;
            align-items: center;
            position: relative;
            font-weight: 600
            /*border-right: 2px solid #D6D4D4;*/
        }
        .menu a:nth-child(1){
            /*border-left: 2px solid #D6D4D4;*/
        }

        /* TRIANGLE */
        .menu a.products::after {
            content: "";
            position: absolute;
            bottom: -38px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 40px;
            border-style: solid;
            border-color: transparent transparent var(--green) transparent; 
            opacity: 0;
            transition: opacity 0s;
        }
        
        .menu a.products.show-triangle::after {
            opacity: 1;
        }
        
        /* END TRIANGLE */


        /* SHOW & HIDE MENU */
        .show-menu,
        .hide-menu{
            font-size: 30px;
            cursor: pointer;
            display: none;
            transition: 0.4s;
        }
        .show-menu{
            order: 1;
        }
        .menu a:hover,
        .show-menu:hover,
        .hide-menu:hover {
            color: var(--blue);
        }
        #check {
            display: none;
        }

        /* SHOW SUBMENU */
        .menu a.products:hover + .submenu,
        .submenu:hover {
            display: block;
        }

            /* Submenu */
            .submenu {
                display: none;
                position: absolute;
                top: 100%;
                padding: 0 auto;
                width: 280px;
                height: 270px;
                right: 17.5%;
                background: #fff;
                border-top: 6px solid var(--green);
                box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
                z-index: 1001;
                transition: 0.6s;
            }
            .submenu a img{
                filter: invert(40%);
            }
            .submenu a:hover img {
                filter: invert(100%);
                transition: 0.4s;
            }
            

            .img-submenu{
                display: flex;
                padding: 0 25px 0 10px;
            }

            .submenu a{
                padding: 10px 0;
                border-bottom: 1px solid black;
            }
            .submenu a:hover{
                background-color: var(--green);
                color: #fff;
            }
        
/*=============== INDEX SECTION ===================*/
/* HERO-SECTION */
#hero {
    padding: 50px 160px;
    background-color: var(--bkg);
    width: 100%;
    display: flex;
    padding: 0 auto;
    justify-content: space-around;
}
    /* HERO-CONTENT */
    .hero-content{
        display: flex;
        width: 48%;
        flex-direction: column;
        justify-content: center;
    }
        /* H1 */
        .hero-content h1{
            color: var(--blue);
            font-size: clamp(1.8rem,8vw,3.5rem);
            font-weight: 600;
        }
            .line-hero{
                border: 2px solid var(--green);
                width: auto;
            }
        /* H4 */
        .hero-content h4{
            color: var(--blue-text);
            margin: 10px 0;
            font-size: 1.5rem;
            font-weight: 500;
        }
        /* PARAGRAPH */
        .hero-content p{
            color: var(--blue-text);
            margin-bottom: 30px;
            font-size: 1rem;
            font-weight: 400;
            padding-right: 100px;
        }
        /* BTN */
        .hero-btn{
            display: flex;
        }
        .btn1{
            width: auto;
            padding: 14px 15px;
            background-color: #333232;
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            margin: 0 15px 0 0;
            text-align: center;
        }
        .btn1:hover {
            background-color: var(--blue);
            border-color: var(--blue);
            cursor: pointer;
        }
        .btn2{
            width: auto;
            padding: 14px 15px;
            font-size: 1rem;
            text-decoration: none;
            font-weight: bold;
            color: black;
            background-color: #fff;
            border-color: #fff;
            text-align: center;
        }
        .btn2:hover {
            background-color: var(--blue);
            border-color: var(--blue);
            color: #fff;
            cursor: pointer;
        }
    
    /* HERO-IMAGE */
    .hero-image {
        display: flex;
        margin: 0 0 0 100px;
    }
        /* CAROUSEL */
        .slider{
            width: 600px;
            height: 600px;
            border-radius: 50%;
            overflow: hidden;
        }
          
        .slides{
            width: 500%;
            height: 600px;
            display: flex;
        }
        
        .slides input{
        display: none;
        }
        
        .slide{
        width: 20%;
        transition: 2s;
        }
        
        .slide img{
        width: 600px;
        height: 600px;
        border-radius: 50%;
        object-fit: cover;
        }
        
        .navigation-manual{
        position: absolute;
        width: 600px;
        margin-top: -40px;
        display: flex;
        justify-content: center;
        } 
        
        .manual-btn{
        border: 2px solid var(--container-color);
        padding: 6px;
        border-radius: 12px;
        cursor: pointer;
        transition: 1s;
        }
        
        .manual-btn:not(:last-child){
            margin-right: 40px;
        }
        
        .manual-btn:hover{
        background: var(--container-color);
        }
        
        #radio1:checked ~ .first{
        margin-left: 0;
        }
        #radio2:checked ~ .first{
        margin-left: -20%;
        }
        #radio3:checked ~ .first{
        margin-left: -40%;
        }
        #radio4:checked ~ .first{
        margin-left: -60%;
        }
        
        .navigation-auto{
            position: absolute;
            display: flex;
            display: 600px;
            justify-content: center;
            margin-top: 460px;
        }
        
        .navigation-auto div{
            border: 2px solid var(--green);
            padding: 5px;
            border-radius: 10px;
            transition: 1s;
        }
        
        .navigation-auto div:not(:last-child){
            margin-right: 40px;
        }
        
        #radio1:checked ~ .navigation-auto .auto-btn1{
            background: var(--green);
        }
        #radio2:checked ~ .navigation-auto .auto-btn2{
            background: var(--green);
        }
        #radio3:checked ~ .navigation-auto .auto-btn3{
            background: var(--green);
        }
        #radio4:checked ~ .navigation-auto .auto-btn4{
            background: var(--green);
        }
        
        .navigation-auto{display: none;}
    /* END CAROUSEL */
 
/* LOGOS CAROUSEL */
.logos{
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    background-color: white;
}
.logos:hover .logos-slide{
    animation-play-state: paused;
}

@keyframes slideLogos{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
.logos-slide{
    display: inline-block;
    animation: 30s slideLogos infinite linear;
}
.logos-slide img{
    height: 50px;
    margin: 0 40px;
}


/* END LOGOS CAROUSEL */        

/* WELCOME-SECTION */
#welcome {
    padding: 50px 160px;
    background-color: #fff;
    height: 60vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    /* HERO-CONTENT */
    .welcome-content{
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
        .welcome-content h3{
            color: var(--green);
            font-size: 2.6rem;
            font-weight: 500;
            margin-bottom: 0;
        }
        
        .welcome-content p:nth-child(2){
            color: var(--blue);
            font-weight: 500;
            font-size: 1.8rem;
            padding-bottom: 10px;
        }
        .welcome-content p:nth-child(3){
            color: var(--blue-text);
            font-weight: 500;
            font-size: 1rem;
            padding-bottom: 20px;
        }

    /* WELCOME-IMAGE */
    .welcome-image {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
    
        .welcome-item {
            text-align: center;
            margin: 0 0 30px 200px;
            width: 200px;
        }
        
        .welcome-item p {
            width: 100%;
            text-align: center;
            font-size: 1rem;
            color: var(--blue-text);
        }
        
        .welcome-img {
            width: 130px;
            padding-bottom: 15px;
            transition: 0.5s;
        }
            .welcome-img:hover{
                transform: scale(1.2);
            }

/* BANNER-SECTION */
#banner {
    background-image: url(/assets/img/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 30vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
    #banner::before {
        content: '';
        background: rgba(77,77,92,0.6);
        position: absolute;
        width: 100%;
        height: 30vh;
        left: 0;
    }
    #banner > div {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #banner > div p {
        position: relative;
        color: #fff;
        font-size: 1.8rem;
        margin: 0 0 5px 0;  
        border-bottom: 4px solid white;
    }

    #banner > div h3 {
        position: relative;
        color: #fff;
        font-size: 2.5rem;
        margin: 10px 0 0 0;
        font-weight: 500;
        padding-top: 0;
    }

/* PRODUCTS */
#products {
    padding: 50px 160px;
    background-color: #fff;
    height: auto;
    position: relative;
    overflow: hidden;
}
    #products h3{
        width: 100%;
        color: var(--blue);
        font-size: 2.6rem;
        padding: 50px 0 70px 0;
        text-align: center;
        line-height: 1;
    }

    /* CARDS */
    .container {
        display: grid;
        place-items: center;
        margin-inline: 1.5rem;
        padding: 0.5rem 0 3rem 0;
    }
    
    .card__container {
        display: grid;
        row-gap: 10rem;
    }
    
    .card__article {
        position: relative;
        overflow: hidden;
    }
    
    .card__img {
        width: 328px;
        border-radius: 1.5rem;
    }
    
    .card__data {
        width: 280px;
        background-color: var(--container-color);
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
        border-radius: 1rem;
        position: absolute;
        bottom: -9rem;
        left: 0;
        right: 0;
        margin-inline: auto;
        opacity: 0;
        transition: opacity 1s 1s;
    }
    
    .card__description {
        display: block;
        font-size: 1rem;
        color: var(--blue-text);
        margin-bottom: .25rem;
    }
    
    .card__title {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--blue);
        text-align: center;
        margin-bottom: .75rem;
    }
    
    .card__button {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        color: var(--green);
    }
    
    .card__button:hover {
        text-decoration: underline; 
    }
    
    /* Naming animations in hover */
    .card__article img{
        display: block;
        max-width: 100%;
        height: auto;
    }
    .card__article:hover .card__data {
        animation: show-data 1s forwards;
        opacity: 1;
        transition: opacity .1s;
    }
    
    .card__article:hover {
        animation: remove-overflow 2s forwards;
    }
    
    .card__article:not(:hover) {
        animation: show-overflow 2s forwards;
    }
    
    .card__article:not(:hover) .card__data {
        animation: remove-data 1s forwards;
    }
    
    /* Card animation */
    @keyframes show-data {
        50% {
            transform: translateY(-10rem);
        }
        100% {
            transform: translateY(-7rem);
        }
    }
    
    @keyframes remove-overflow {
        to {
            overflow: initial;
        }
    }
    
    @keyframes remove-data {
        0% {
            transform: translateY(-7rem);
        }
        50% {
            transform: translateY(-10rem);
        }
        100% {
            transform: translateY(.5rem);
        }
    }
    
    @keyframes show-overflow {
        0% {
            overflow: initial;
            pointer-events: none;
        }
        50% {
            overflow: hidden;
        }
    }

/* FOOTER */
#footer {
    height: auto;
    display: block;
}
    /* SUB-FOOTER */
    .sub-footer {
        height: auto;
        background-color: #E4E5E9;
        display: flex;
        align-items: center; 
        padding: 50px 160px;
        justify-content: space-between;
    }
    .logo-footer{
        width: 300px;
    }
        /* LEFT */
        .left ul{
            list-style: none;
            font-size: 1rem;
        }
        .left ul li{
            color: var(--blue-text);
        }
        .left ul li a{
            font-size: 1rem;
            text-decoration: none;
            color: var(--blue-text);
        }
            .left ul li a:hover{
                color: #FE4A38;
                transition: 0.3s;
            }

        /* RIGHT */
        .right {
            display: flex;
            flex-direction: row; 
        }
            .ul-left {
                margin-right: 70px;
            }

            .right li{
                list-style: none;
                color: var(--blue);
                font-weight: 600;
                font-size: 1rem;
            }

            .right ul a {
                display: block;
                font-size: 1rem;
                text-decoration: none;
                color: var(--blue-text);
            }
                .right ul a:hover {
                    color: #FE4A38;
                    transition: 0.4s;
                }

    /* BOTTOM-FOOTER */
    .footer {
        height: auto;
        padding: 10px 160px;
        display: flex;
        justify-content: space-between;
        align-items: center; 
    }
        .copyright p{
            margin-bottom: 0;
            padding: 0;
            font-size: 0.9rem;
        }
        .copyright a{
            text-decoration: none;
            font-weight: 500;
            color: #000;
            font-size: 0.9rem;
        }
            .copyright a:hover{
                color: var(--green);
                transition: 0.4s;
            }

        /* ICONS FB IG */
        .content-icons{
            display: grid;
            height: 100%;
            width: auto;
            place-items: center;
        }
        .wrapper .button{
            display: inline-block;
            height: 60px;
            width: 60px;
            overflow: hidden;
            margin: 0 5px;
            background: #fff;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.6s;
        }
        .wrapper .button:hover{
            width: 200px;
        }
        .wrapper .button .icon{
            display: inline-block;
            height: 60px;
            width: 60px;
            text-align: center;
            border-radius: 50px;
            box-sizing: border-box;
            line-height: 60px;
        }
        .wrapper a{
            color: #000;
        }
            .wrapper a:nth-child(1) .button .icon {
                color: #0866FF;
            }
            
            .wrapper a:nth-child(1):hover .button .icon {
                background: #0866FF;
                color: #fff;
            }
            
            .wrapper a:nth-child(2) .button .icon {
                color: #E1306C;
            }
            
            .wrapper a:nth-child(2):hover .button .icon {
                background: #E1306C;
                color: #fff;
            }
        
        .wrapper .button .icon i{
            font-size: 1.2rem;
            line-height: 60px;       
        }
        
        .wrapper .button span{
            font-size: 1rem;
            font-weight: 400;
            line-height: 60px;
            margin-left: 10px;
        }
        /* END ICONS FB IG */

    /* ICON DOCUMENTATION */
    .btn-documentation {
        position: fixed;
        z-index: 999;
        bottom: 200px;
        right: 25px;
    }
    
    .btn-documentation img.svg-icon {
        width: 30px;
        height: 45px;
        transition: fill 0.3s;
    }

    .content-icons {
        display: grid;
        height: 100%;
        width: auto;
        place-items: center;
    }
    
    .wrapperD .buttonD {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        width: 80px;
        overflow: hidden;
        margin: 0 5px;
        background: #fff;
        border-radius: 50px;
        cursor: pointer;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.6s;
    }
    
    .wrapperD .buttonD:hover {
        width: 250px;
        background-color: var(--blue);
        color: #fff;
    }
    
    .wrapperD .iconD {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        width: 60px;
        text-align: center;
        border-radius: 50px;
        box-sizing: border-box;
    }
    
    .wrapperD a {
        color: #000;
        text-decoration: none;
    }
    
    .wrapperD .iconD img {
        width: 80%;
        height: auto;
        vertical-align: middle; 
    }
    
    .wrapperD .buttonD span {
        font-size: 1rem;
        font-weight: 400;
        line-height: 60px;
        margin-left: 10px;
        opacity: 0;
        white-space: nowrap; 
        transition: opacity 0.6s;
        display: none; 
    }
    
    .wrapperD .buttonD:hover span {
        display: inline;
        opacity: 1;
    }


    /* ICON WHATSAPP */
    .btn-whatsapp {
        position: fixed;
        z-index: 999;
        bottom: 50px;
        right: 20px;
    }
        .btn-whatsapp img{
            width: 90px;
        }
        .btn-whatsapp:before,
        .btn-whatsapp:after {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #00e676;
            opacity: 0;
            animation: onda 1.7s infinite;
        }
        
        .btn-whatsapp:before {
            animation-delay: 1s;
        }
        
        .btn-whatsapp:after {
            animation-delay: 1.3s;
        }
        
        .btn-whatsapp img {
            position: relative;
            z-index: 2;
        }
        
        @keyframes onda {
            0% {
                transform: scale(1);
            }
        
            15%{
                opacity: 1;
            }
        
            100% {
                opacity: 0;
                transform: scale(3.5);
            }
        }

        /* MODAL PUBLICIDAD */
        .modalPubli {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .modalPubli-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 100%;
            max-width: 700px;
            border-radius: 10px;
            text-align: center;
        }
        
        .responsive-img {
            width: 100%;
            height: auto;
            max-width: 100%;
        }
        
        .closePubli {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        
        .closePubli:hover,
        .closePubli:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        #sendForm{
            display: none;
            opacity: 0;
        }

/*=============== END INDEX SECTION ===================*/



/*=============== RESPONSIVE CARDS ===============*/
    /* For small devices */
    @media screen and (max-width: 425px) {
        .container {
        margin-inline: 1rem;
        }
    
        .card__data {
        width: 250px;
        padding: 1rem;
        }
    }
  
  /* For medium devices */
  @media screen and (min-width: 768px) {
    .card__container {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 7rem;
      row-gap: 10rem;
    }
  }
  
  /* For large devices */
  @media screen and (min-width: 1280px) {
    .container {
      height: auto;
    }

    .card__container {
      grid-template-columns: repeat(2, 1fr);
    }
    .card__img {
      width: 348px;
    }
    .card__data {
      width: 316px;
      padding-inline: 2.5rem;
    }
  }

/*=============== END RESPONSIVE CARDS ===============*/


/*=============== RESPONSIVE 100px - 425px ===============*/
@media (min-width: 100px) and (max-width: 425px){
    /* HEADER */
    header{ 
        padding: 0 20px;
    }
    #logo{
        width: 75vw!important;
    }

    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #fff;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
        display: flex;
        flex-direction: column;
    }
        .menu a{
            display: block;
            padding: 20px;
        }
        .hide-menu{
            position: absolute;
            top: 40px;
            right: 40px;
        }
        #check:checked ~ .menu{
            right: 0;
        }

        /* SHOW & HIDE MENU */
        .show-menu,
        .hide-menu {
            display: block;
        }
    
    /* HERO-SECTION */
    #hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
    }
        .hero-content{
            width: 100%;
        }
        .hero-content h1{
            text-align: center;
            /* font-size:1.8rem; */
            border-bottom: 4px solid var(--green);
        }
            .line-hero{
                display: none;
            }
        .hero-content h4{
            font-size: 1rem;
            text-align: center;
            padding-bottom: 20px;
        }
        .hero-content p{
            padding-right: 0;
            font-size: 0.8rem;
        }
        .hero-btn{
            justify-content: center;
            padding-bottom: 80px;
        }
            .btn1, .btn2{
                font-size: 0.75rem;
            }

        .hero-image{
            margin-left: 0;
        }

        /* CAROUSEL */
        .slider{
            width: 94vw;
            height: 94vw;
        }
        
        .slides{
            width: 500%;
            height: 94vw;
            display: flex;
        }
    
        .slide img{
        width: 94vw;
        height: 94vw;
        }
        
        .navigation-manual{
        width: 94vw;
        } 
        
        .navigation-auto{
        display: 94vw;
        }
    
    /* WELCOME SECTION */
    #welcome{
        padding: 50px 20px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center
    }
        .welcome-content h3{
            text-align: center;
            font-size: 1.5rem;
            line-height: 1;
            margin-bottom: 0.75rem
        }
        .welcome-content p:nth-child(2){
            text-align: center;
            font-size: 1rem;
            line-height: 1;
        }
        .welcome-content p:nth-child(3){
            font-size: 0.8rem
        }

        .welcome-image{
            grid-template-columns: repeat(1, 1fr); 
        }
        .welcome-item{
            margin: 0;
        }
            .welcome-item p{
                font-size: 0.8rem;
            }
            .welcome-item img{
                width: 35vw;
            }

    /* BANNER SECTION */
    #banner div:nth-child(1) p{
        font-size: 0.85rem;
    }
    #banner div:nth-child(1) h3{
        font-size: 1.2rem;
    }

    /* PRODUCTS */
    #products{
        padding: 50px 30px;
    }
        #products h3{
            font-size: 1.5rem;
            padding-bottom: 10px;
        }

        .card__container {
            row-gap: 2rem;
        }
        
        .card__title{
            font-size: 1.3rem;
        }
        .card__description{
            font-size: 0.8rem;
        }
        .card__button{
            font-size: 0.8rem;
        }

    /* FOOTER */
    .sub-footer{
        padding: 50px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
        /* LEFT */
        .logo-footer{
            width: 75vw;
            padding-bottom: 20px;
        }
            .left ul li{
                font-size: 0.9rem;
            }
        
        /* RIGHT */
        .right{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 50px;
        }
            .ul-left{
                margin-right: 0;
                margin-bottom: 50px;
            }
                .ul-left li{
                    font-size: 0.9rem;
                }
                .left ul li a{
                    font-size: 0.9rem;
                }

            .right ul a {
                font-size: 0.9rem;
            }
            .right li{
                font-size: 0.9rem;
            }
            .ul-right a{
                font-size: 0.9rem;
            }

        .footer{
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 36px 20px 32px;
        }
            .copyright{
                padding-bottom: 20px;
            }
            .copyright p{
                font-size: 0.8rem;
            }
            .text-danger{
                font-size: 0.8rem;
            }

    /* ICON-WHATSAPP */
    .btn-whatsapp {
        bottom: 180px;
    }
    .btn-whatsapp img{
        width: 70px;
    }
    .btn-whatsapp:before,
    .btn-whatsapp:after {
        top: 15px;
        left: 16px;
        width: 35px;
        height: 35px;
    }

    /* BTN-DOCUMENTATION */
    .btn-documentation {
        bottom: 300px;
        right: 15px;
    }
    .wrapperD .buttonD{
        height: 70px;
        width: 70px;
        transition: none;
    }

    .modalPubli-content {
        margin: 30% auto;
        max-width: 700px;
    } 

    .menu a.products::after{
        display: none;
    }
}

/*=============== RESPONSIVE 426px - 768px ===============*/
@media (min-width: 426px) and (max-width: 768px){
    /* HEADER */
    header{ 
        padding: 0 40px;
    }
    #logo{
        width: 65vw!important;
    }

    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #fff;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
        display: flex;
        flex-direction: column;
    }
        .menu a{
            display: block;
            padding: 20px;
        }
        .hide-menu{
            position: absolute;
            top: 40px;
            right: 40px;
        }
        #check:checked ~ .menu{
            right: 0;
        }

        /* SHOW & HIDE MENU */
        .show-menu,
        .hide-menu {
            display: block;
        }
    
    /* HERO-SECTION */
    #hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 40px;
    }
        .hero-content{
            width: 100%;
        }
        .hero-content h1{
            text-align: center;
            /* font-size:2.5rem; */
            border-bottom: 4px solid var(--green);
        }
            .line-hero{
                display: none;
            }
        .hero-content h4{
            font-size: 1.3rem;
            text-align: center;
            padding-bottom: 20px;
        }
        .hero-content p{
            padding-right: 0;
            font-size: 0.9rem;
        }
        .hero-btn{
            justify-content: center;
            padding-bottom: 80px;
        }
            .btn1,
            .btn2{
                font-size: 0.7rem;
            }

        .hero-image{
            margin-left: 0;
        }

        /* CAROUSEL */
        .slider{
            width: 70vw;
            height: 70vw;
        }
        
        .slides{
            width: 500%;
            height: 70vw;
            display: flex;
        }
    
        .slide img{
        width: 70vw;
        height: 70vw;
        }
        
        .navigation-manual{
        width: 70vw;
        } 
        
        .navigation-auto{
        display: 70vw;
        }
    
    /* WELCOME SECTION */
    #welcome{
        padding: 50px 40px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        .welcome-content h3{
            text-align: center;
            font-size: 2rem;
        }
        .welcome-content p:nth-child(2){
            text-align: center;
            font-size: 1.4rem;
        }
        .welcome-content p:nth-child(3){
            font-size: 0.9rem;
        }

        .welcome-image{
            grid-template-columns: repeat(2, 1fr); 
            column-gap: 10vw;
            row-gap: 80px;
        }
        .welcome-item{
            margin: 0;
        }
            .welcome-item p{
                font-size: 0.9rem;
            }
            .welcome-item img{
                width: 120px;
            }

    /* BANNER SECTION */
    #banner div:nth-child(1) p{
        font-size: 1.3rem;
    }
    #banner div:nth-child(1) h3{
        font-size: 1.6rem;
    }

    /* PRODUCTS */
    #products{
        padding: 50px 40px;
    }
        #products h3{
            font-size: 1.6rem;
            padding-bottom: 90px;
        }

    /* FOOTER */
    .sub-footer{
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
        /* LEFT */
        .logo-footer{
            width: 60vw;
            padding-bottom: 20px;
        }
            .left ul li{
                font-size: 1rem;
            }
        
        /* RIGHT */
        .right{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 50px;
        }
            .ul-left{
                margin-right: 0;
                margin-bottom: 50px;
            }


        .footer{
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 50px 40px;
        }
            .copyright{
                padding-bottom: 20px;
            }
            .copyright p{
                font-size: 1rem;
            }
            .text-danger{
                font-size: 1rem;
            }

            .wrapperD .buttonD{
                transition: none;
            }

            .modalPubli-content {
                margin: 15% auto;
                max-width: 500px;
            }

            .menu a.products::after{
                display: none;
            }
}

@media(min-width:769px) and (max-width:1023){
    .wrapperD .buttonD{
        transition: none;
    }
}

/*=============== RESPONSIVE 769px - 1024px ===============*/
@media (min-width: 769px) and (max-width: 1024px){
    /* HEADER */
    header{ 
        padding: 0 40px;
    }
    #logo{
        width: 65vw!important;
    }

    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #fff;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
        display: flex;
        flex-direction: column;
    }
        .menu a{
            display: block;
            padding: 20px;
        }
        .hide-menu{
            position: absolute;
            top: 40px;
            right: 40px;
        }
        #check:checked ~ .menu{
            right: 0;
        }

        /* SHOW & HIDE MENU */
        .show-menu,
        .hide-menu {
            display: block;
        }
    
    /* HERO-SECTION */
    #hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 40px;
    }
        .hero-content{
            width: 100%;
        }
        .hero-content h1{
            text-align: center;
            /* font-size:2.5rem; */
            border-bottom: 4px solid var(--green);
        }
            .line-hero{
                display: none;
            }
        .hero-content h4{
            font-size: 1.3rem;
            text-align: center;
            padding-bottom: 20px;
        }
        .hero-content p{
            padding-right: 0;
            font-size: 0.9rem;
        }
        .hero-btn{
            justify-content: center;
            padding-bottom: 80px;
        }
            .btn1,
            .btn2{
                font-size: 0.7rem;
            }

        .hero-image{
            margin-left: 0;
        }

        /* CAROUSEL */
        .slider{
            width: 70vw;
            height: 70vw;
        }
        
        .slides{
            width: 500%;
            height: 70vw;
            display: flex;
        }
    
        .slide img{
        width: 70vw;
        height: 70vw;
        }
        
        .navigation-manual{
        width: 70vw;
        } 
        
        .navigation-auto{
        display: 70vw;
        }
    
    /* WELCOME SECTION */
    #welcome{
        padding: 50px 40px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        .welcome-content h3{
            text-align: center;
            font-size: 2rem;
        }
        .welcome-content p:nth-child(2){
            text-align: center;
            font-size: 1.4rem;
        }
        .welcome-content p:nth-child(3){
            font-size: 0.9rem;
        }

        .welcome-image{
            grid-template-columns: repeat(2, 1fr); 
            column-gap: 10vw;
            row-gap: 80px;
        }
        .welcome-item{
            margin: 0;
        }
            .welcome-item p{
                font-size: 0.9rem;
            }
            .welcome-item img{
                width: 120px;
            }

    /* BANNER SECTION */
    #banner div:nth-child(1) p{
        font-size: 1.3rem;
    }
    #banner div:nth-child(1) h3{
        font-size: 1.6rem;
    }

    /* PRODUCTS */
    #products{
        padding: 50px 40px;
    }
        #products h3{
            font-size: 2.3rem;
            padding-bottom: 90px;
        }

    /* FOOTER */
    .sub-footer{
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
        /* LEFT */
        .logo-footer{
            width: 60vw;
            padding-bottom: 20px;
        }
            .left ul li{
                font-size: 1rem;
            }
        
        /* RIGHT */
        .right{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 50px;
        }
            .ul-left{
                margin-right: 0;
                margin-bottom: 50px;
            }


        .footer{
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 50px 40px;
        }
            .copyright{
                padding-bottom: 20px;
            }
            .copyright p{
                font-size: 1rem;
            }
            .text-danger{
                font-size: 1rem;
            }

            .modalPubli-content {
                margin: 10% auto;
                max-width: 550px;
            }

            .menu a.products::after{
                display: none;
            }
}


/*=============== RESPONSIVE 769px - 1280px ===============*/
@media (min-width: 1025px) and (max-width: 1280px){
    /* HEADER */
    header{ 
        padding: 0 20px;
    }
    .menu a {
        font-size: 0.8rem;
    }   
  
    /* HERO-SECTION */
    #hero{
        padding: 50px 30px;
    }
        .hero-content{
            width: 100%;
        }
        .hero-content h1{
            /* font-size:3.2rem; */
            border-bottom: 4px solid var(--green);
        }
            .line-hero{
                display: none;
            }
        .hero-content h4{
            font-size: 1.2rem;
            padding-bottom: 20px;
        }
        .hero-content p{
            padding-right: 0;
            font-size: 0.9rem;
        }
            .btn1,
            .btn2{
                font-size: 0.7rem;
            }

        .hero-image{
            margin-left: 80px;
        }

        /* CAROUSEL */
        .slider{
            width: 40vw;
            height: 40vw;
        }
        
        .slides{
            width: 500%;
            height: 40vw;
            display: flex;
        }
    
        .slide img{
        width: 40vw;
        height: 40vw;
        }
        
        .navigation-manual{
        width: 40vw;
        } 
        
        .navigation-auto{
        display: 40vw;
        }
    
    /* WELCOME SECTION */
    #welcome{
        padding: 50px 40px;
        height: auto;
    }
        .welcome-content h3{
            font-size: 1.6rem;
        }
        .welcome-content p:nth-child(2){
            font-size: 1.4rem;
        }
        .welcome-content p:nth-child(3){
            font-size: 0.9rem;
        }

        .welcome-image{
            grid-template-columns: repeat(2, 1fr); 
            row-gap: 80px;
            column-gap: 50px;
            padding-left: 20px;
        }
        .welcome-item p{
            font-size: 0.9rem;
        }
        .welcome-item{
            margin: 0;
        }
            .welcome-item img{
                width: 10vw;
            }

    /* BANNER SECTION */
    #banner div:nth-child(1) p{
        font-size: 1.6rem;
    }
    #banner div:nth-child(1) h3{
        font-size: 2.5rem;
    }

    /* PRODUCTS */
    #products{
        padding: 50px 40px;
    }
        #products h3{
            font-size: 1.6rem;
            padding-bottom: 95px;
        }
        .card-container{
            grid-template-columns: repeat(2, 1fr);
        }

    /* FOOTER */
    .sub-footer{
        padding: 50px 40px;
    }
        /* LEFT */
        .left{
            margin-right: 200px;
        }
        .logo-footer{
            width: 30vw;
        }
            .left ul li{
                font-size: 0.9rem;
            }
        
        /* RIGHT */
        .right{
            margin-top: 50px;
        }
            .ul-left{
                margin-right: 50px;
                margin-bottom: 50px;
            }
                .left ul li a{
                    font-size: 0.9rem;
                }
                .ul-left li{
                    font-size: 0.9rem;
                }
                .ul-left a{
                    font-size: 0.9rem;
                }

            .ul-right{
                width: auto;
            }
                .ul-right li{
                    font-size: 0.9rem;
                }
                .right ul a{
                    font-size: 0.9rem;
                }

        .footer{
            padding: 20px 40px;
        }
            .copyright{
                padding-bottom: 20px;
            }
            .copyright p{
                font-size: 0.9rem;
            }
    
    /* ICON-WHATSAPP */
    .btn-whatsapp {
        bottom: 110px;
    }

    .modalPubli-content {
        margin: 8% auto;
        max-width: 600px;
    }
}

/*=============== RESPONSIVE 1281px - 1919px ===============*/
@media (min-width: 1281px) and (max-width: 1919px){
    /* HEADER */
    header{ 
        padding: 0 100px;
    }
    .menu a {
        font-size: 0.8rem;
    }   
  
    /* HERO-SECTION */
    #hero{
        padding: 50px 100px;
    }
        .hero-content{
            width: 35%;
        }
        .hero-content h1{
            /* font-size:4vw; */
            border-bottom: 4px solid var(--green);
        }
            .line-hero{
                display: none;
            }
        .hero-content h4{
            font-size: 1.2rem;
            padding-bottom: 20px;
        }
        .hero-content p{
            padding-right: 0;
            font-size: 0.9rem;
        }
            .btn1,
            .btn2{
                font-size: 0.7rem;
            }

        .hero-image{
            margin-left: 80px;
        }

        /* CAROUSEL */
        .slider{
            width: 40vw;
            height: 40vw;
        }
        
        .slides{
            width: 500%;
            height: 40vw;
            display: flex;
        }
    
        .slide img{
        width: 40vw;
        height: 40vw;
        }
        
        .navigation-manual{
        width: 40vw;
        } 
        
        .navigation-auto{
        display: 40vw;
        }
    
    /* WELCOME SECTION */
    #welcome{
        padding: 50px 100px;
        height: auto;
    }
    .welcome-content{
        width: 50%;
    }
        .welcome-content h3{
            font-size: 1.6rem;
        }
        .welcome-content p:nth-child(2){
            font-size: 1.4rem;
        }
        .welcome-content p:nth-child(3){
            font-size: 0.9rem;
        }

        .welcome-image{
            grid-template-columns: repeat(2, 1fr); 
            row-gap: 80px;
            column-gap: 10vw;
            padding-left: 20px;
        }
        .welcome-item p{
            font-size: 0.9rem;
        }
        .welcome-item{
            margin: 0;
        }
            .welcome-item img{
                width: 10vw;
            }

    /* BANNER SECTION */
    #banner div:nth-child(1) p{
        font-size: 1.6rem;
    }
    #banner div:nth-child(1) h3{
        font-size: 2.5rem;
    }

    /* PRODUCTS */
    #products{
        padding: 50px 40px;
    }
        #products h3{
            font-size: 1.6rem;
            padding-bottom: 95px;
        }
        .card-container{
            grid-template-columns: repeat(2, 1fr);
        }

    /* FOOTER */
    .sub-footer{
        padding: 50px 100px;
    }
        /* LEFT */
        .left{
            margin-right: 200px;
        }
        .logo-footer{
            width: 30vw;
        }
            .left ul li{
                font-size: 0.9rem;
            }
        
        /* RIGHT */
        .right{
            margin-top: 50px;
        }
            .ul-left{
                margin-right: 50px;
                margin-bottom: 50px;
            }
                .left ul li a{
                    font-size: 0.9rem;
                }
                .ul-left li{
                    font-size: 0.9rem;
                }
                .ul-left a{
                    font-size: 0.9rem;
                }

            .ul-right{
                width: auto;
            }
                .ul-right li{
                    font-size: 0.9rem;
                }
                .right ul a{
                    font-size: 0.9rem;
                }

        .footer{
            padding: 20px 100px;
        }
            .copyright{
                padding-bottom: 20px;
            }
            .copyright p{
                font-size: 0.9rem;
            }
    
    /* ICON-WHATSAPP */
    .btn-whatsapp {
        bottom: 110px;
    }

    /* BTN-DOCUMENTATION */
    .btn-documentation {
        bottom: 250px;
        right: 30px;
    }
    .wrapperD .buttonD{
        height: 70px;
        width: 70px;
    }

    .modalPubli-content {
        margin: 7% auto;
        max-width: 600px;
    }
}


