/* ---------header------------ */
.isotipo h2 {
    color: white;
}

/* --------carrusel--------- */
.carrusel {
    background-image: url("../assets/carrusel3.jpg");
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    opacity: .9;
    width: 100vw;
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 20vh;
}

.logo-carrusel {
    position: relative;
    width: 50%;
    height: 50%;
}

.galeria-imgs {
    overflow: hidden;
}
.galeria-imgs_container {
    /* border: 5px solid violet; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 45vh;
    cursor: pointer;
    overflow: visible;
    transition: border 1s;
}

@media (max-width:1000px) {
    .galeria-imgs {
        /* border: 5px solid blue; */
        width: 100%;
        height: 70%;
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(3, 33%);
        padding: 0;
        overflow: scroll;
    }
    }


@media (max-width:700px) {
    .carrusel {
       
        margin-top: 0vh;
    }
    .galeria-imgs {
        /* border: 5px solid blue; */
        width: 100%;
        height: 70%;
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(2, 50%);
        padding: 0;
        overflow: scroll;
    }
    
}
@media (max-width:400px) {

    .galeria-imgs {
        /* border: 5px solid blue; */
        width: 100%;
        height: 70%;
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(1, 100%);
        padding: 0;
        overflow: scroll;
    }
    
}