/* MAIN WRAPPER */
.ct-timeline {
    position: relative;
    width: 100%;
    padding: 120px 0;
}

/* HEADER */
.ct-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

/* CENTER LINE (DESKTOP) */
.ct-line {
    position: absolute;
    left: 50%;
    top: 400px;
    bottom: 0;
    width: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    z-index: 1;
}

/* ITEM */
.ct-item {
    width: 50%;
    position: relative;
    padding: 40px 60px;
    box-sizing: border-box;
    z-index: 2;
}

.ct-item.left {
    left: 0;
    text-align: right;
}

.ct-item.right {
    left: 50%;
    text-align: left;
}

/* CONNECTOR */
.ct-connector {
    position: absolute;
    top: 60px;
    width: 40px;
    height: 2px;
    background: #ffffff;
}

.ct-item.left .ct-connector {
    right: -20px;
}

.ct-item.right .ct-connector {
    left: -20px;
}

/* BOX */
.ct-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* INNER ALIGNMENT */
.ct-content.left { text-align:left; }
.ct-content.center { text-align:center; }
.ct-content.right { text-align:right; }

.ct-image {
    margin-bottom: 15px;
}

.ct-image img {
    max-width: 100%;
    height: auto;
}




@media(max-width:767px){

    /* Remove extra side spacing */
    .ct-timeline{
        padding: 60px 10px;
    }

    .ct-line{
        left: 15px;
        top: 0;
    }

    .ct-item{
        width: 100%;
        left: 0 !important;
        padding: 20px 10px 20px 50px;
        text-align: left !important;
    }

    .ct-content{
        padding: 20px;
    }

    .ct-connector{
        left: 15px !important;
        right: auto !important;
    }

}