.contenedor-el-local{
    position: relative;
    display: flex;
    justify-content: center;
    top: 5.5vw;
    height: 25vw;
    background-color: var(--color-background);
}
.contenedor-entrada-principal{
    position: relative;
    display: flex;
    justify-content: center;
    top: 5.5vw;
    height: 25vw;
    background-color: var(--color-background);
}
.contenedor-sala-grande{
    position: relative;
    display: flex;
    justify-content: center;
    top: 5.5vw;
    height: 28vw;
    background-color: var(--color-background);
}
.titulo-el-local-01, .titulo-el-local-02, .titulo-el-local-03{
    position: absolute;
    top: 2vw;
    width: 55vw;
    font: 600 2.25vw 'Montserrat', sans-serif;
    color: var(--color-primary);
    text-align: center;
}
.texto-el-local-01, .texto-el-local-02, .texto-el-local-03{
    position: absolute;
    top: 7vw;
    width: 55vw;
    font: 200 1vw 'Inter', sans-serif;
    text-align: justify;
    color: var(--color-primary);
}
.contenedor-imagenes{
    position: relative;
    top: 12vw;
    width: 55%;
}
.imagen-local-01, .imagen-local-02, .imagen-local-03,
.imagen-local-04, .imagen-local-05, .imagen-local-06,
.imagen-local-07, .imagen-local-08, .imagen-local-09{
    height: 11vw;
    width: 18vw;
    object-fit: cover;
}
.contenedor-imagenes-mobile-01, .contenedor-imagenes-mobile-02, .contenedor-imagenes-mobile-03{
    display: none;
}
.tres-imagenes{
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 768px) {

    .contenedor-el-local{
        position: relative;
        top: 20vw;
        height: 147vw;
        background-color: var(--color-background);
    }
    .contenedor-entrada-principal{
        position: relative;
        top: 20vw;
        height: 144vw;
        background-color: var(--color-background);
    }
    .contenedor-sala-grande{
        position: relative;
        top: 20vw;
        height: 166vw;
        background-color: var(--color-background);
    }
    .titulo-el-local-01, .titulo-el-local-02, .titulo-el-local-03{
        position: absolute;
        top: 8vw;
        width: 100%;
        font: 600 6vw 'Montserrat', sans-serif;
        color: var(--color-primary);
    }
    .texto-el-local-01, .texto-el-local-02, .texto-el-local-03{
        position: absolute;
        top: 20vw;
        left: 2vw;
        width: 96vw;
        font: 200 3.6vw 'Inter', sans-serif;
        text-align: justify;
        color: var(--color-primary);
    }
    .imagen-local-01, .imagen-local-02, .imagen-local-03,
    .imagen-local-04, .imagen-local-05, .imagen-local-06,
    .imagen-local-07, .imagen-local-08, .imagen-local-09{
        height: 100vw;
        width: 100vw;
        object-fit: cover;
    }
    .contenedor-imagenes{
        display: none;
    }
    .contenedor-imagenes-mobile-01{
        position: relative;
        display: block;
        top: 47vw;
        height: 100vw;
        width: 100vw;
    }
    .contenedor-imagenes-mobile-02{
        position: relative;
        display: block;
        top: 44vw;
        height: 100vw;
        width: 100vw;
    }
    .contenedor-imagenes-mobile-03{
        position: relative;
        display: block;
        top: 66vw;
        height: 100vw;
        width: 100vw;
    }

}