.paquetes{
    display: none;
}

.timeline{
    position: relative !important;
}

/*.timeline::before{*/
/*    content: '';*/
/*    position: absolute !important;*/
/*    left: 0;*/
/*    top: 30px;*/
/*    width: 100%;*/
/*    height: 5px;*/
/*    background: var(--blue) !important;*/
/*    border-radius: 2px;*/
/*    z-index: -1;*/
/*}*/

.timeline > div{
    position: relative;
}

.timeline > div::before{
    content: '>';
    position: absolute;
    right: -20%;
    top: 50%;
    translate: 0 -50%;
    font-size: 30px;
    color: var(--light-blue);
}

.timeline > div:nth-child(6)::before{
    display: none;
}

@media screen and (max-width:800px){
    .timeline::before{
        top: 30px;
    }
}

@media screen and (max-width:600px){
    .timeline::before{
        top: 0;
        left: 22px;
        width: 4px;
        height: 100%;
    }
    .timeline{
        flex-direction: column;
        gap: 10px;
    }
    .timeline div{
        width: 100%;
        align-items: center;
        justify-content: left;
        flex-direction: row;
        gap: 5px;
    }
}