.app-timeline-page{
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px;
}

.app-timeline{
    position:relative;
    margin:40px auto;
}

.app-timeline:before{
    content:'';
    position:absolute;
    top:0;
    bottom:0;
    left:50%;
    width:4px;
    background:#00695c;
    transform:translateX(-50%);
}

.app-timeline-item{
    position:relative;
    width:50%;
    padding:30px;
    box-sizing:border-box;
}

.app-timeline-item.left{
    left:0;
    text-align:right;
}

.app-timeline-item.right{
    left:50%;
    text-align:left;
}

.app-timeline-item:before{
    content:'';
    position:absolute;
    top:45px;
    width:18px;
    height:18px;
    background:#009688;
    border:4px solid #ffffff;
    border-radius:50%;
    z-index:5;
}

.app-timeline-item.left:before{
    right:-13px;
}

.app-timeline-item.right:before{
    left:-13px;
}

.app-timeline-year{
    display:inline-block;
    background:#25a8b8;
    color:#ffffff;
    font-weight:700;
    font-size:18px;
    padding:10px 18px;
    border-radius:12px;
    margin-bottom:15px;
}

.app-timeline-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    text-align:left;
}

.app-timeline-card img{
    width:100%;
    height:auto;
    display:block;
}

.app-timeline-content{
    padding:22px;
}

.app-timeline-content h2{
    margin:0 0 12px;
    font-size:26px;
    color:#07163f;
}

.app-timeline-content p{
    margin:0;
    line-height:1.7;
}

/* Smartphone */
@media(max-width:768px){

    .app-timeline:before{
        left:20px;
    }

    .app-timeline-item,
    .app-timeline-item.left,
    .app-timeline-item.right{
        width:100%;
        left:0;
        text-align:left;
        padding:25px 0 25px 55px;
    }

    .app-timeline-item.left:before,
    .app-timeline-item.right:before{
        left:8px;
        right:auto;
    }

    .app-timeline-year{
        margin-bottom:12px;
    }
}