@import url("../../index.css");

body {
    background-image: url('../../assets/img/MEDELLIN/FondoRelatosMedellin.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: 30%;
    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 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.mapaContainer img {
    width: 50%;
}

.FotosContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: inherit;
    position: absolute;
    width: 100%;
    max-height: 90%;
}

@media (min-width: 768px) {
    .FotosContainer {
        position: initial;
        width: 60%;
    }
}


.JuezContainer {
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.Juezleft {
    justify-content: flex-start;
}

.JuezRight {
    justify-content: flex-end;
}

.JuezContainer img {
    max-width: 50%;
}

.JuezContainer h4 {
    color: var(--mainColorTextWhite);
    font-size: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .JuezContainer h4 {
        font-size: 30px;
    }
}


.JuezContainer h4:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

.actived {
    display: initial;
}

.none {
    display: none;
}

/* 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;
}