
.bloquelinea {
    display: flex;
}

.subtitulo{
    color: #333;
    font-size: 20px !important;
    text-align: center;
    border-bottom: 1px solid #93b8c2;
    padding-bottom: 30px;
  font-weight:600;
}

.contentlinea{
    padding: 30px 0;
    border: 1px solid #93b8c2; 
    border-left:none;
    flex: 1; 
}

.contentlinea:last-child {
    border-right: none;
}

.contentlinea:nth-child(3n) .event {
  margin-bottom: 5px!important;
}

.timeline {
    color: #002c8d;
    font-family: rubik; 
    padding: 0 40px;
    position: relative;
    margin: 20px 0 0 20%;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 1px;
    height: 100%;
    background: #93b8c2;
}
.event {
    margin-bottom: 20px;
    position: relative;
}

.event::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 14px;
    width: 12px;
    height: 12px;
    background: #93b8c2;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}
.event .icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -50px;
}
.event .description {
    padding: 15px;
    margin-left: 30px;
    font-size: 20px;
}
@media (max-width: 1200px){
.event .icon {
   
    height: 35px;
    left: -33px;
    width: 35px;
  top: 15px;
}
.timeline {
    padding: 0;
  }
  
  .timeline::before {
    
    left: 20px;
  }
  
  .event .description {
    font-size: 17px;
}
@media (max-width: 991px){
    .contentlinea{
        border-right: none !important;
    }
    .bloquelinea{
        flex-direction: column;
    }
    .event {
        margin-bottom: 0;
    }
}