/* =========================================================
   JOURNEY TIMELINE CSS
   Ready to paste - journey.css
   ========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Roboto,Arial,sans-serif;
    background:#f7f9fc;
    color:#333;
}

.journey-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h1,
.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#0A1650;
    margin-bottom:12px;
}

.section-title p{
    font-size:18px;
    color:#666;
}

.timeline{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:4px;
    background:#0A1650;
    transform:translateX(-50%);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:0 40px 60px;
}

.timeline-item.left{
    left:0;
}

.timeline-item.right{
    left:50%;
}

.year{
    position:absolute;
    top:25px;
    right:-45px;
    background:#0A1650;
    color:#fff;
    padding:10px 16px;
    border-radius:30px;
    font-weight:700;
    z-index:2;
}

.timeline-item.right .year{
    left:-45px;
    right:auto;
}

.timeline-content{
    position:relative;
    background:#fff;
    border-radius:16px;
    padding:26px 28px;
    margin-left:16px;
    box-shadow:0 6px 24px rgba(10,22,80,.08);
    transition:transform .35s, box-shadow .35s;
}

/* blue accent bar on the left edge */
.timeline-content::before{
    content:"";
    position:absolute;
    left:-16px;
    top:8px;
    bottom:8px;
    width:6px;
    border-radius:6px;
    background:#1B3A8C;
}

.timeline-content:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(10,22,80,.15);
}

.timeline-content h3{
    color:#0A1650;
    font-size:26px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:14px;
}

.timeline-content p{
    font-size:16px;
    line-height:1.75;
    color:#5a6478;
    margin-bottom:14px;
}

/* Exhibitors: 422 | Visitors: 34,569 */
.timeline-content .stats{
    font-size:16px;
    color:#3d4759;
    font-weight:500;
    margin-bottom:18px;
}

.timeline-content .stats b{
    color:#0A1650;
    font-weight:700;
}

.timeline-content .stats .sep{
    color:#c3cbdd;
    margin:0 9px;
    font-weight:400;
}

.timeline-content img{
    width:100%;
    display:block;
    border-radius:10px;
    border:1px solid #eef1f6;
    background:#f2f4f8;
    margin-top:4px;
}

@media(max-width:991px){

.timeline::before{
left:20px;
}

.timeline-item,
.timeline-item.left,
.timeline-item.right{
width:100%;
left:0;
padding-left:60px;
padding-right:15px;
}

.year{
left:0 !important;
right:auto;
top:10px;
}

.section-title h1,
.section-title h2{
font-size:36px;
}

}

@media(max-width:576px){

.journey-section{
padding:50px 0;
}

.section-title h1,
.section-title h2{
font-size:30px;
}

.timeline-content{
padding:18px;
}

.timeline-content h3{
font-size:22px;
}

.timeline-content p,
.timeline-content li{
font-size:15px;
}

}