.breadcrumbs{
    display: none;
}
.timeline{
    padding: 0 !important;
}
/* The actual timeline (the vertical ruler) */
#timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
#timeline:after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #1b215c;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

#timeline > div:nth-child(odd){
    margin-top: -200px;
    float: left;
}
#timeline > div:nth-child(even){
    margin-top: -200px;
    float: right;
}
#timeline > div.timeline{
    clear: both;
}
#timeline > div.clear{
    display: block !important;
    clear: both;
    float: none;
}
#timeline > div:first-child{
    margin-top: 0px !important;
}

/* Container around content */
#timeline > div .timeline-date {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;

}

/* The circles on the timeline */
#timeline > div .timeline-date::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: -5px;
    background-color: #1b225b;
    top: 50px;
    border-radius: 50%;
    z-index: 1;
}

/* Add arrows to the left container (pointing right) */
/*.timeline-left .timeline-date::before*/

#timeline > div:nth-child(odd) .timeline-date::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 48px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #f1f1f1;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f1f1f1;
}

/* Add arrows to the right container (pointing left) */
#timeline > div:nth-child(even) .timeline-date::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 45px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #f1f1f1;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f1f1f1 transparent transparent;
}

/* Fix the circle for containers on the right side */
#timeline > div:nth-child(even) .timeline-date::after {
    left: -9px;
}

.timecontent {
    position: relative;
    background-color: #f1f1f1;
    padding: 20px 40px;
    margin-bottom: 35px;
    padding-right: 240px;
    min-height: 375px;
}

.timecontent h3 {
    color: #1b215c;
    font-size: 48px;
    padding-bottom: 11px;
    border-bottom: 1px solid #c4c3c3;
}

.timecontent p{
    font-size: 15px;
    color: #717171;
}
.timecontent img {
    border: 3px solid #fff;
    position: absolute;
    right: 30px;
    top: 30px;
    max-height: 300px;
    width: 200px;
}

@media (min-width: 784px) and (max-width: 991px) {
    .timecontent {
        padding-right: 20px;
    }
    .timecontent img {
        position: relative;
        left: 50%;
        margin-left: -100px;
        top: 0;
    }
}
@media (max-width: 783px) {
    #timeline::after{
        left: 0;
    }
    .timeline-left .timeline-date::after, .timeline-right .timeline-date::after {
        left: -17px;
    }
    /* Add arrows to the right container (pointing left) */
    .timeline-left .timeline-date::before {
        left: 30px;
        border: medium solid #f1f1f1;
        border-width: 10px 10px 10px 0;
        border-color: transparent #f1f1f1 transparent transparent;
    }
    .timeline-left {
        margin-top: 0px;
    }
    .timeline-right {
        margin-top: 0px;
    }
}

@media (max-width: 586px) {
    #timeline::after,
    .timeline-right .timeline-date::after,
    .timeline-left .timeline-date::after,
    .timeline-right .timeline-date::before,
    .timeline-left .timeline-date::before{
        display: none;
    }
}

@media (max-width: 480px) {
    .timecontent {
        text-align: center;
        padding-right: 40px;
    }
    .timecontent h3,
    .timecontent p{
        text-align: center;
    }

    .timecontent img {
        position: relative;
        left: 0;
        top: 0;
        max-width: 100%;
    }
}



