.timeline {
    position: relative;
    margin: 20px 0;
 
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width:575px){
    .timeline-item {
        gap: 15px;
    }

    .timeline-line {
        left: 62px !important;
    }
    
}
 
.timeline-line {
    width: 2px;
    background: linear-gradient(to bottom, #f1c40f, #2ecc71);
    display: block;
    position: absolute;
    top: 22px; 
    left: 72px;
    z-index: -1;
    bottom: -40px; 
}




.timeline-item:last-child .timeline-line {
    bottom: auto; 

}

.timeline-marker {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #f1c40f;
    position: relative;
    z-index: 1;
}

.timeline-marker::before {
    content:"";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
  
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);

}


.timeline-content {
    flex: 1;
   
}

.timeline-title,
.timeline-year {
    color: #2B1004;
    font-family: "Circular Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: 22px;
    margin: 0 !important;
}

.timeline-title {
    padding-bottom: 12px;
}

.timeline-description {
    color: #2B1004;
    font-family: "Circular Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.timeline-description ul {
    padding-left: 18px;
}
