@import url("../../index.css");

* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('../../assets/img/SANJOSEDELGUAVIARE/MAPA\ FONDO\ SAN\ JOSE.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;
    text-decoration: none;
}

.VolverContainer:hover {
    padding: 0;
}

.VolverContainer img {
    width: 15%;
    max-height: inherit;
    object-fit: contain;
}

.VolverContainer h5 {
    color: var(--mainColorTextWhite);
    font-size: 25px;
    font-weight: 800;
    margin: 0;
}

.VolverContainer h5:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}

/*Contenido Principal  */

.Container {
    width: 100vw;
    height: 80vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5rem;
    flex-direction: column-reverse;
    overflow: auto;
}

@media (min-width: 768px) {
    .Container {
        flex-direction: row;
    }

}

.Container .maps {
    width: 20%;
    max-width: 300px;
}

.carousel-indicators {
    margin-bottom: 70px;
}

.carouselExampleIndicators{
    width: 35rem;
}

/* Corousel */
.carousel {
    width: 100%;
}

@media (min-width: 768px) {
    .carousel {
        width: 65%;
        height: 39rem;
    }

}

.carousel-inner {
    height: 39rem;
    border: 20px solid white;
}

.carousel-item {
    height: inherit;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: thin !important;
    scrollbar-color: #333 #ccc !important;
    cursor: pointer !important;
    display: initial !important;
    margin-bottom: -4rem !important;
}

.carousel-indicators button {
    width: 200px !important;
    height: 150px !important;
    position: relative !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon{
    background-color: grey;
    padding: 2rem;
}

/* 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 {
    text-decoration: none;
    margin: 0 2%;
}

.FooterContainer h6 {
    color: var(--mainColorTextWhite);
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.FooterContainer h6:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}