.timeline-education {
    width: 500px;
    margin: auto;
    transition: all 0.5s;
}

.timeline-education p {
    border-top: 3px dashed;
    border-color: #19d02e !important;
    margin:0; 
    padding: 30px;
}

.timeline-education p:nth-child(odd) {
    border-left: 3px dashed;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-right: 30px; 
    padding-right: 0;
}

.timeline-education p:nth-child(even) {
    border-right: 3px dashed;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-left: 30px; 
    padding-left: 0;
    text-align: right;
}

.timeline-education p:first-child {
    border-top: 0;
    border-top-right-radius:0;
    border-top-left-radius:0;
}

.timeline-education p:last-child {
    border-bottom-right-radius:0;
    border-bottom-left-radius:0;
}

@media screen and (min-width: 1024px) and (max-width : 1279px) { 
    .timeline-education {
        width: 500px;
    }
}
    
@media screen and (min-width : 768px) and (max-width : 1023px) {
    .timeline-education {
        width: 400px;
    }
}
    
@media screen and (min-width : 450px) and (max-width : 767px) {
    .timeline-education {
        width: 350px;
    }
}
    
@media screen and (min-width : 0px) and (max-width : 449px) { 
    .timeline-education {
        width: 250px;
    }
}