.main-timeline {
    /* font-family: 'Roboto', sans-serif; */
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

.main-timeline .timeline {
    width: 80%;
    padding: 0 0 0 50px;
    margin: 0 0 30px;
    float: left;
}

.main-timeline .timeline-content {
    color: #555;
    background-color: #fff;
    border-radius: 30px;
    display: block;
    position: relative;
}

.main-timeline .timeline-content:hover {
    text-decoration: none;
}

.main-timeline .timeline-content:before {
    content: '';
    /* background: linear-gradient(45deg, #FF5A00, #E4300C); */
    background: none;
    height: 120px;
    width: 120px;
    border-radius: 50% 0 50% 50%;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    left: -40px;
    top: 50%;
    bottom: -10px;
    z-index: 1;
}

.main-timeline .timeline-icon {
    color: #fff;
    /* background: linear-gradient(105deg, #E4300C, #FF5A00); */
    background: none;
    font-size: 45px;
    text-align: center;
    line-height: 100px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #fff inset, 0 0 5px #333;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -30px;
    z-index: 1;
}

.main-timeline .inner-content {
    background-color: #f5f5f5;
    padding: 15px 30px 15px 130px;
    border-radius: 30px;
}

.main-timeline .title {
    color: #E4300C;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 00px;
}

.main-timeline .description {
    color: #555;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.main-timeline .timeline.odd {
    padding: 0 50px 0 0;
    margin: 0 0 30px;
    float: right;
}

.main-timeline .timeline.odd .timeline-content:before {
    transform: translateY(-50%) rotate(225deg);
    left: auto;
    right: -40px;
}

.main-timeline .timeline.odd .timeline-icon {
    left: auto;
    right: -30px;
}

.main-timeline .timeline.odd .inner-content {
    padding: 15px 130px 15px 30px;
}

.main-timeline .timeline:nth-child(4n+2) .timeline-content:before {
    /* background: linear-gradient(45deg, #FF4EF7, #C620C1); */
    background: none;
}

.main-timeline .timeline:nth-child(4n+2) .timeline-icon {
    /* background: linear-gradient(105deg, #FF4EF7, #C620C1); */
    background: none;
}

.main-timeline .timeline:nth-child(4n+2) .title {
    color: #C620C1;
}

.main-timeline .timeline:nth-child(4n+3) .timeline-content:before {
    /* background: linear-gradient(45deg, #8710D9, #9A39F8); */
    background: none;
}

.main-timeline .timeline:nth-child(4n+3) .timeline-icon {
    /* background: linear-gradient(105deg, #8710D9, #9A39F8); */
    background: none;
}

.main-timeline .timeline:nth-child(4n+3) .title {
    color: #8710D9;
}

.main-timeline .timeline:nth-child(4n+4) .timeline-content:before {
    /* background: linear-gradient(45deg, #0083ED, #00A7DB); */
    background: none;
}

.main-timeline .timeline:nth-child(4n+4) .timeline-icon {
    /* background: linear-gradient(105deg, #0083ED, #00A7DB); */
    background: none;
}

.main-timeline .timeline:nth-child(4n+4) .title {
    color: #0083ED;
}

@media screen and (max-width:767px) {
    .main-timeline .timeline,
    .main-timeline .timeline.odd {
        width: 100%;
        padding: 60px 0 0 0;
        float: none;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline.odd .timeline-icon {
        transform: translateY(0) translateX(-50%);
        left: 50%;
        top: -40px;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline.odd .timeline-content:before {
        transform: translateY(0) translateX(-50%) rotate(135deg);
        left: 50%;
        top: -50px;
    }
    .main-timeline .inner-content,
    .main-timeline .timeline.odd .inner-content {
        text-align: center;
        padding: 115px 20px 20px;
    }
}

@media screen and (max-width:567px) {
    .main-timeline .title {
        font-size: 18px;
    }
}