/** ==============================================================================================================================================
 * I. Estilos Para el Banner Principal del sitio
 */
.banner {
    display: flex;
    flex-direction: row;
    height: 100vh !important;
    width: 100%;
    overflow: hidden;
}
#banner{
    background: rgb(62,69,77);
    background: linear-gradient(180deg, #343a40 0%, #061225 100%);
    color: var(--fuente_blanco);
}
#banner .contenedor_botones{
    margin-top: 1em;
    display: flex;
}
#banner a{
    text-decoration: none;
    margin-right: 1em;
}
.contenido_banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
    height: 100%;

}
.banner-text h1 {
    font-weight: bolder;
}
.banner-text h2 {
    color: var(--magenta);
    font-weight: bold;
    margin-bottom: 0.5em;
}

.banner-images {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-images img {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-images img.active {
    opacity: 1;
}

.navigation-dots {
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.navigation-dots button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.navigation-dots button.active {
    opacity: 1;
    background-color: var(--magenta);
}

@media screen and (min-width: 1200px ) {
    .banner-text {
        width: 45%;
    }
    .banner-text h1 {
        font-size: 400%;
    }
    .banner-text h2 {
        font-size: 200%;
    }
    .contenido_banner{
        justify-content: center;
    
    }
}
/* -- (@Media para Moviles) -- */
@media screen and (max-width: 1199px) {
    .banner {
        flex-direction: column;
        height: auto;
    }

    .banner-text {
        height: 60%;
        text-align: center;
    }

    .banner-images {
        height: 40%;
    }
    .contenido_banner{
        justify-content: end;
    
    }
    #banner .contenedor_botones{
        flex-direction: column;
    }
    #banner .contenedor_botones a{
        margin-bottom: 0.5em;
    }
}