@import url("../../../index.css");

body {
    background-image: url('../../../assets/img/MEDELLIN/FondoRetiro.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  */
.VisitaJudicialComponent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.VisitaJudicialComponent .VideoContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    height: 70%;
    background-image: url('../../../assets/img/RecuadroVisitaJudicial.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .VisitaJudicialComponent .VideoContainer {
        flex-direction: row;
        height: 70%;
    }
}


.VisitaJudicialComponent .VideoContainer video {
    width: 90%;
}

@media (min-width: 768px) {
    .VisitaJudicialComponent .VideoContainer video {
        width: 60%;
    }
}

.VisitaJudicialComponent .VideoContainer h4 {
    width: 80%;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .VisitaJudicialComponent .VideoContainer h4 {
        width: 30%;
        font-size: 1.3vw;
    }
}


.TextContainer {
    margin-top: 1rem;
    display: flex;
    width: 100%;
    justify-content: space-evenly
}

.TextContainer .textVisitaJudicial {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.TextContainer .textVisitaJudicial:hover {
    transform: scale(1.1);
}


.TextContainer .textVisitaJudicial img {
    width: 2vw;
}

.TextContainer .textVisitaJudicial h5 {
    color: var(--mainColorTextWhite);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .TextContainer .textVisitaJudicial h5 {
        font-size: 2rem;
    }
}

.TextContainer .textVisitaJudicial h5:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

.actived {
    color: var(--mainColorTextHover) !important;
}

/* 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;
}