
/*HEADER*/
/* HERO */
    .product_ttl{
        display: none;
    }

    .slider-box{
        width: auto;
        margin: auto 0;
        overflow: hidden;
        
    }
        .slider-box ul{
            margin: 130px 0 0 0;
            display: flex;
            padding: 0;
            width: 500%;
            animation: slide 20s infinite alternate ease-in-out;
        }
        .slider-box li{
            width: 100%;
            list-style: none;
            position: relative;
        }
        .slider-box img{
            width: 100%;
            height: 100%;
            position: relative;
            
        }

        @keyframes slide {
            0% { margin-left: 0; }
            20% { margin-left: 0; }
            25% { margin-left: -100%; }
            40% { margin-left: -100%; }
            45% { margin-left: -200%; }
            60% { margin-left: -200%; }
            65% { margin-left: -300%; }
            80% { margin-left: -300%; }
            85% { margin-left: -400%; }
            100% { margin-left: -400%; }
        }  


/* ORDER */
            .order_box{
                width: 500px;
                height: 400px;
                background-color: #e6e6e6bb;
                opacity:95%;
                position: absolute;
                z-index: 50;
                top: 300px; 
                left: 800px;
                border-radius: 25px;
                
                box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.25);
                border-top: 1px solid rgba(255, 255, 255, 0.5);
                border-right: 1px solid rgba(255, 255, 255, 0.5);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
            }   
                .order_box form{
                    height: 400px;
                    display: flex;
                    flex-direction: column;
                    flex-wrap: nowrap;
                    justify-content: center;
                    align-items: center;
                 
                }
                .order_box form input, 
                .order_box form textarea{
                    margin: 8px;
                }
                .order_box form input{
                    border-radius: 25px;
                    width: 450px;
                    height: 80px;
                    border: 0;
                    padding-left: 20px;
                    padding: 0 20px;
                }
                .order_box form textarea{
                    border-radius: 25px;
                    width: 450px;
                    height: 130px;
                    border: 0;
                    padding: 20px 15px;
                    resize: none;
                }   
                    
                .order_box form button{
                    height: 50px;
                    width: 380px;
                    margin-top: 30px;
                    border-radius: 70px;
                    color: #fff;
                    background-color: #09BB1B;
                    border: 0;
                    font-size: larger;
                    font-weight: bold   ;
                }
        /* ORDER */
/* HERO */



/* NUESTROS PRODUCTOS */
h1{
    margin-top: 70px;
    color: #18377A;
    text-align: center;
}
.productos_destacados{
    margin: 4% 0;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    color: #18377A;
}
.productos_destacados a{
    text-decoration: none;
}
.productos_destacados div{
    flex: 1 0 20%;
    max-width: 280px;
}
.productos_destacados div img{
    border-radius: 25px;
    width: 100%;
    height: auto;
    max-width: 100%;
}
.productos_destacados div h5{
    color: #18377A;
    font-size: larger;
    font-weight: 900;
    text-align: center;
    margin: 8px 0;
}  
/* NUESTROS PRODUCTOS */







