/* SECTION */
.milestone-section{
    padding: 80px 0;
    background: #ffffff;
}

/* TITLE */
.section-title{
    text-align: center;
    font-weight: 700;
    color:#1a2a57;
    margin-bottom: 60px;
}

/* TIMELINE */
.timeline{
    position: relative;
    margin: 0 auto;
    width: 90%;
}

/* CENTER LINE */
.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    top:0;
    bottom:0;
    border-left:2px dashed #b5bdcb;
}

/* ROW */
.milestone{
    position: relative;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
}

/* LEFT & RIGHT ATTACH FIX */
.milestone-left,
.milestone-right{
    width:100%;
}

.milestone-left{
    justify-content:flex-end;
    padding-right:50%;
}

.milestone-right{
    justify-content:flex-start;
    padding-left:50%;
}

/* CONTENT */
.milestone-content{
    width: 44%;
    font-size:14px;
    color:#555;
}

.milestone-content h6{
    font-weight:700;
    color:#1a2a57;
}

/* IMAGE CARD */
.milestone-image{
    width: 180px;
    height: auto;
    border-radius: 14px;
    overflow:hidden;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
    position:relative;
    margin: 0 25px;
}

.milestone-image img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

/* CONNECT LINE */
.milestone-left .milestone-image::after{
    content:'';
    position:absolute;
    width:35px;
    height:2px;
    background:#333;
    right:-35px;
    top:50%;
}

.milestone-right .milestone-image::after{
    content:'';
    position:absolute;
    width:35px;
    height:2px;
    background:#333;
    left:-35px;
    top:50%;
}

/* MOBILE */
@media(max-width:992px){
    .timeline::before{
        left:20px;
    }
    .milestone{
        flex-direction: column;
        align-items: flex-start;
        padding-left:40px;
    }
    .milestone-content{
        width:100%;
        margin-bottom:15px;
    }
    .milestone-image{
        margin:0;
    }
    .milestone-image::after{
        display:none;
    }
}

.milestone-wrapper .milestone-left:nth-child(2) {
    display: flex;
    flex-direction: row-reverse;
}
