.bloque2{
    position: relative;
    background-color: white;
}

.bloque2 .contenedor{
    display: flex;
    flex-direction: column;
    padding: 0% 20%;
}

.bloque2 .bigTitulo{
    color: #7a2f80;
    font-weight: bold;
    position: relative;
    padding-top: 24px;
    padding-bottom: 36px;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.bloque2 .bigTitulo .linea{
    flex: 1;
    margin-left: 9px;
    border-bottom: 2px solid #7a2f80;
    margin-bottom: 6px;
}

.bloque2 .texto{
    color: grey;
    font-size: 1.3rem;
    padding-top: 18px;
    padding-bottom: 24px;
}

.bloque2 .spacer{
    height: 117px;
}


.bloque2 .infografia{
    position: relative;
    /* background: aquamarine; */
    display: flex;
    flex-direction: row;
    width: 100%;
}

.bloque2 .infografia .izq{
    padding-top: 20px;
    width: 50%;
    border-right: 2px #ccc solid;
}

.bloque2 .infografia .der{
    padding-top: 60px;
    width: 50%;
    border-left: 2px  #ccc solid;
    padding-bottom: 24px;
}


.bloque2 .infografia::before{
    content: '';
    display: block;
    position: absolute;
    top: -17px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid #ccc;
    right: calc(50% - 9px);
}

.bloque2 .infografia::after{
    content: '';
    display: block;
    position: absolute; 
    bottom: -17px; 
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid #ccc;
    right: calc(50% - 9px);
}

/*  Botones  */
.izq .boton, .der .boton{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    /* background-color: aquamarine; */
}

.izq .element, .der .element{
    width: 100%;
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    flex-direction: column;
}

.izq .element{
    width: 100%;
    justify-content: end;
}

.izq .element .boton{
    /* width: 100%;*/
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: 0;
}

.der .element .boton{
    display: flex;
    justify-content: start;
}

.izq .adorno, .der .adorno {
    width: 60px;
    position: relative;
}



.element .anio{
    font-size: 1.8rem;
}

.izq .boton .adorno::before, .der .boton .adorno::before{
    content: '';
    position: absolute;
    border-bottom: 4px #ccc solid ;
    width: 60px;
    top: calc(50% - 2px);
}

.izq .boton .adorno::after{
    content: '';
    display: block;
    position: absolute; 
    left: -17px; 
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid ;
    top: calc(50% - 9px);
}

.der .boton .adorno::after{
    content: '';
    display: block;
    position: absolute; 
    right: -17px; 
    border-radius: 50%;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid ;
    top: calc(50% - 9px);
}

.izq .element:nth-child(3n+1) .boton .adorno::after, .izq .element:nth-child(3n+1) .boton .anio,
.der .element:nth-child(3n+2),.boton .adorno::after, .der .element:nth-child(3n+2) .boton .anio {
    border-color: #b890bb;
    color: #b890bb;
}

.izq .element:nth-child(3n+2) .boton .adorno:after, .izq .element:nth-child(3n+2) .boton .anio,
.der .element:nth-child(3n+3) .boton .adorno:after, .der .element:nth-child(3n+3) .boton .anio  {
    border-color: #a1cfbf;
    color: #a1cfbf;
}

.izq .element:nth-child(3n+3) .boton .adorno:after, .izq .element:nth-child(3n+3) .boton .anio,
.der .element:nth-child(3n+1) .boton .adorno:after, .der .element:nth-child(3n+1) .boton .anio  {
    border-color: #ffc180;
    color: #ffc180;
}


.izq .anio{
    padding-right: 30px;
}

.der .anio{
    padding-left: 30px;
}

.izq .content{
    text-align: right;
    font-size: 0.9rem;
    color: #808080;
    padding-right: 60px;
}

.der .content{
    text-align: left;
    font-size: 0.9rem;
    color: #808080;
    padding-left: 60px;
}


@media screen and (min-width: 1600px) {
    .bloque2{
        margin: auto;
        max-width: 1200px;
    }        
}

/* Tablet */
@media screen and (max-width: 992px) {

    .bloque2 .contenedor{
        padding-top: 24px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .bloque2 .bigTitulo{
        padding-left: 24px;
    }
    
    .bloque2 .texto{
        padding-left: 24px;
    }

    .izq .content{
        text-align: right;
        font-size: 0.9rem;
        padding-right: 9px;
    }
    
    .der .content{
        text-align: left;
        font-size: 0.9rem;
        padding-left: 9px;
    }

    .element .anio{
        font-size: 1.5rem;
    }

}

/* movile*/
@media screen and (max-width: 576px) {
    .bloque2 .bigTitulo .linea{
        display: none;
    }
}