@import url("../../index.css");

body {
    background-image: url('../../assets/img/Pasto/visita-judicial.png');
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
}

/* Volver Al Mapa */

.VolverContainer {
    width: 250px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    right: 0;
    max-height: 100px;
    padding: 0;
    margin: 0;
    top: 10px;
    border: none;
    z-index: 1;
}

.VolverContainer:hover {
    padding: 0;
}

.VolverContainer img {
    width: 40%;
    max-height: inherit;
    object-fit: contain;
}

.VolverContainer h5 {
    color: var(--mainColorTextWhite);
    font-size: 25px;
    font-weight: 800;
}

.VolverContainer h5:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

/*Contenido Principal  */
.imagenesContanier {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mapaContainer {
    width: 6rem;
    position: absolute;
    bottom: 5%;
    left: 1%;
    z-index: 1;
    /* cursor: pointer; */
}

/* .mapaContainer:hover{
    transform: scale(1.1);
} */

.mapaContainer img {
    width: inherit;
    height: inherit;
}

.FotosContainer {
    overflow: auto;
    display: flex;
    width: 90%;
    height: 80vh;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: absolute;
    top: 0;
}

@media (min-width: 768px) {
    .FotosContainer {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
}

.CuadroContainer {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 35rem;
    max-height: 300px;
}

.CuadroContainer:hover {
    transform: scale(1.1);
}

.CuadroContainer img {
    height: 80%;
    width: 100%;
    object-fit: contain;
}



.CuadroContainer h4 {
    color: var(--mainColorTextWhite);
    font-size: 30px;
    font-weight: 700;
}

.CuadroContainer h4:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

/* Footer */

.FooterContainer {
    width: 100%;
    height: 35px;
    bottom: 0;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}

.FooterContainer a {
    margin: 0 2%;
}

.FooterContainer h6 {
    color: var(--mainColorTextWhite);
    font-size: 15px;
    font-weight: 400;
}

.FooterContainer h6:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}