@import url("../index.css");

body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
}

.imagenFondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    display: none;
    height: 100vh;
    object-fit: cover;

}

.Maps {
    position: absolute;
    width: inherit;
    max-height: 50vh;
    height: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Maps .Mapa {
    position: absolute;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
    display: none;
    height: inherit;
    width: inherit;
    object-fit: contain;
}

.CarouselRegiones {
    position: absolute;
    bottom: 6%;
    z-index: 5;
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    overflow: hidden;
    animation: slide 150s infinite;
    transition: all linear;

    }

/*CARRUSEL AUTOMATICO */

@keyframes slide {
    0% {margin-left: 0%;}
    100% {margin-left: -280%;}
} 


.TextContainer {
   /*  display: flex; */
    display: -webkit-inline-box;
    justify-content: space-evenly;
    font-size: 2rem;
    align-items: center;
    flex-wrap: nowrap;
    overflow: auto;
    width: 100%;
}

::-webkit-scrollbar {
    background: rgba(255, 255, 255, 0);
    height: 0px;
}

.TextContainer h2 {
    color: var(--mainColorTextDisabled);
    text-align: center;
    /* border-right: 5px solid white; */
    margin: 0;
    cursor: pointer;
}

.TextContainer h2:hover {
    color: var(--mainColorTextWhite);
}

.Separador {
    width: 7px;
    background: white;
    height: 2.4rem;
    margin: 0 1rem;
}

.CarouselButton {
    background: rgba(156, 156, 156, 0.329);
    border: 0;
}


a {
    text-decoration: none !important;
    border: none;
}

.displayActive {
    display: initial !important;
}


/* TEXTO UnViajePorLosTerritorios */
.UnViajePorLosTerritorios{
    z-index: 10 !important;
    position: relative;
    text-align: center;
    font-weight: 500;
    color: whitesmoke;
    bottom: -83%
}

/* Complemento Mapa San Andres */
.ComplementoMapaSanAndres{
    z-index: 3 !important;
    position: fixed;
    width: 100%;
    top: -85px;
}


/* Footer */

.FooterContainer {
    z-index: 1;
    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: 17px;
    font-weight: 400;
}

.FooterContainer h6:hover {
    color: var(--mainColorTextHover);
    cursor: pointer;
}


