
/* caja6 */
.box6 {
    /* width: 100%; */
    width: 100vw;
    position: relative;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    padding-block-end: 40px;

}

.title_autos_electricos {
    text-align: center;
    color: rgb(157, 24, 197);
    font-size: 2.5rem;
    font-weight: bold;
    margin-block-start: 40px;
    font-family: 'Poppins';
}

.box6 > div {
    width: 90%;
}

 
.box6 > div:hover {
    /* background-color: darkgrey; */
    opacity: 0.7;
}

.box6 > div img {
    width: 100%;
}

@media only screen and (min-width: 1000px){
    
    .box6 {
        width: 100%;
        height: 100vh;
        display:flex;
        flex-direction:row;
        justify-content: center;
        align-items:center;
        position: relative;
    }

    .box6 > div {
        width: 100%;
        height: auto;
    }

}