
#slider_inicio
{
    position: relative;
    overflow: hidden;
}
#progress_bar_container
{
    position: absolute;
    height: 10px;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    top:0;
    z-index: 1;
}
#progress_bar
{
    height: 100%;
    border-radius: o 3px 3px 0;
    transition: width 0.8s;
}
#slideshow
{
    position: relative;
    z-index: 1;
    height: 100vh;
}
#slideshow img
{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}
#img2
{
    /*left: 100%;*/
    opacity: 0;
}
.active
{
    /*left: 0 !important;*/
    opacity: 1 !important;
    transition: all 1.5s;
}
#indicadores
{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 100px;
    z-index: 1;
}
.circles
{
    border: rgba(255, 255, 255, 0) 2px solid;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 5px 0 5 px;
    background-color: transparent;
    border-radius: 50%;
}
.resaltado
{
    background-color: var(--colorIndicador);
    transition: background-color 0.8s;
}

.cont_filtro_info
{
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.262);
    position: absolute;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_filtro_info h1
{
    font-size: 200px;
    padding-bottom: 20px;
    color: white;
    font-weight: 500;
}
.cont_filtro_info p
{
    font-size: 25px;
    color: white;
    font-weight: 500;
    text-align: center;
}
.cont_espacio
{
    width: 200px;
    border: 3px solid var(--colorPrincipal);
    margin-bottom: 20px;
    background-color: var(--colorPrincipal);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:840px)
{
    /*primera parte*/
    .cont_filtro_info h1
    {
        font-size: 150px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
    /*primera parte*/
    .cont_filtro_info h1
    {
        font-size: 100px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    /*primera pare*/
    .cont_filtro_info h1
    {
        font-size: 70px;
    }
    .cont_filtro_info p
    {
        font-size: 20px;
    }
}