.seoc-history header {
    text-align: center;
}
.seoc-history header h2 {
    margin: 0;
    display: inline-block;
    padding: 5px 20px;
    color: #fff;
    background-color: #1f1f1f;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.timeline {
    padding-top: 70px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    position: relative;
}
.timeline::before, .timeline::after {
    content: '';
    background-color: #d4021d;
    width: 2px;
    position: absolute;
    left: 50%;
    height: calc(50% + 25px);
    z-index: 0;
}
.timeline::before {
    top: 0;
}
.timeline::after {
    bottom: 0;
}
.timeline:last-child::after {
    display: none;
}
.timeline-image, .timeline-details {
    width: 42%;
}
.timeline-image {
    text-align: right;
}
.timeline-image img {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.timeline-icon {
    width: 56px;
    height: 56px;
    background-color: #d4021d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.timeline-icon img {
    max-width: 35px;
}
.timeline-details h3 {
    margin: 0 0 10px;
	font-size:25px;
	color:#1F1F1F;
}
.timeline-details h4 {
    margin: 0 0 10px;
    color: #d4021d!important;
	font-size:20px;
}
.timeline-details p {
    margin: 0;
}
.timeline-sep-1, .timeline-sep-2 {
    flex: 1;
}
.timeline-sep-1 {
    height: 2px;
    background-color: #d4021d;
}
.timeline-sep-1.no-border {
    background: none;
}
.timeline:nth-child(odd) .timeline-details {
    order: 1;
    text-align: right;
}
.timeline:nth-child(odd) .timeline-sep-2 {
    order: 2;
}
.timeline:nth-child(odd) .timeline-icon {
    order: 3;
}
.timeline:nth-child(odd) .timeline-sep-1 {
    order: 4;
}
.timeline:nth-child(odd) .timeline-image {
    order: 5;
    text-align: left;
}

.timeline.first-timeline-point{
    display: none!important;
}

.timeline-point-gold .timeline-sep-1, .timeline-point-gold .timeline-icon, .timeline.timeline-point-gold::before, .timeline.timeline-point-gold::after{
    display: none!important;
}

.timeline-point-gold h4{
    color: #C6A33D!important;
}

.timeline-point-gold .timeline-image img{
    box-shadow: none;
}

@media only screen and (max-width: 768px) {
    .timeline-image, .timeline-details {
        width: 100%;
        position: relative;
        z-index: 1;
    }
    .timeline-image, .timeline:nth-child(odd) .timeline-image {
        order: 1;
        text-align: center;
    }
    .timeline-icon, .timeline:nth-child(odd) .timeline-icon {
        order: 2;
        margin: 10px auto !important;
    }
    .timeline-details, .timeline:nth-child(odd) .timeline-details {
        text-align: left;
        order: 3;
        background-color: #fff;
        padding: 20px;
    }
    .timeline-sep-1, .timeline-sep-2 {
        display: none;
    }
}