.index-icon-box {
    text-align: center;
    position: relative;
}

.index-icon-box i {
    background-color: #EDF5F7;
    font-size: 50px;
    color: #9352B3;
}

.index-icon-box h3 {
    font-weight: 500;
    font-size: 30px;
}

/* icons in timeline */

.timeline-icon i {
    background-color: #EDF5F7;
    font-size: 45px;
    color: #9352B3;
}

.timeline-icon h3 {
    font-weight: 450;
    font-size: 25px;
}

/*********** 6.7 Timeline *************/

.timeline {
    margin-top: 0px;
    position: relative;
}

.timeline .main-line {
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -1px;
    height: 100%;
    border-left: 2px dashed #e3e3e3;
}

.timeline .timeline-step {
    position: relative;
    padding: 50px 0;
}

.timeline .timeline-step:last-child:before {
    content: "\f00c";
    font-family: 'fontawesome';
    position: absolute;
    left: 50%;
    bottom: 0;
    line-height: 60px;
    font-size: 22px;
    color: #00b489;
    z-index: 99;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.timeline .timeline-step:last-child:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #a9e6cf;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: timeline_success_boxshadow 5s infinite;
    animation: timeline_success_boxshadow 5s infinite;
}

@-webkit-keyframes timeline_success_boxshadow {
    0% {
        -webkit-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        -moz-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        box-shadow: 0 0 0 rgba(169, 230, 208, .6);
    }
    50% {
        -webkit-box-shadow: 0 0 0 rgba(169, 230, 208, .2);
        -moz-box-shadow: 0 0 0 rgba(169, 230, 208, .2);
        box-shadow: 0 0 0 rgba(169, 230, 208, .2);
    }
    100% {
        -webkit-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        -moz-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        box-shadow: 0 0 0 rgba(169, 230, 208, .6);
    }
}

@keyframes timeline_success_boxshadow {
    0% {
        -webkit-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        -moz-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        box-shadow: 0 0 0 rgba(169, 230, 208, .6);
    }
    50% {
        -webkit-box-shadow: 0 0 0 rgba(169, 230, 208, .2);
        -moz-box-shadow: 0 0 0 rgba(169, 230, 208, .2);
        box-shadow: 0 0 0 rgba(169, 230, 208, .2);
    }
    100% {
        -webkit-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        -moz-box-shadow: 0 0 0 rgba(169, 230, 208, .6);
        box-shadow: 0 0 0 rgba(169, 230, 208, .6);
    }
}


/* Step Button */

.timeline span.timeline-step-btn {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 110px;
    height: 40px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #767676;
    background-color: #e3e3e3;
    font-size: 14px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* Text */

.timeline .timeline-text-wrapper {
    margin: auto 0;
}

.timeline .timeline-text-wrapper .timeline-text {
    padding-right: 100px;
}

.timeline .timeline-text-wrapper .timeline-text-right {
    padding-left: 100px;
}


/* Image */

.timeline .timeline-image-wrapper {
    text-align: center;
}

/*** responsive ***/
@media all and (max-width: 767px) {
    .timeline {
        margin-top: 50px;
    }

    .timeline .main-line {
        display: none;
    }

    .timeline .timeline-step:last-child {
        padding-bottom: 0;
    }

    .timeline .timeline-text-wrapper .timeline-text,
    .timeline .timeline-text-wrapper .timeline-text-right {
        padding: 0;
        text-align: center;
    }

    .timeline .timeline-image-wrapper,
    .timeline .timeline-step:last-child:before,
    .timeline .timeline-step:last-child:after {
        display: none;
    }
}