.hanami-timeline {
    background: linear-gradient(180deg,#0d3c84,#0a2f6b);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Title */
.timeline-title .big {
    font-size: 80px;
    font-weight: bold;
}

.timeline-title h2 {
    font-size: 28px;
    margin-top: 10px;
}

/* Line */
.timeline-line {
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 0.4;
    margin: 40px 0;
    position: relative;
}

/* Items */
.timeline-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.timeline-item {
    width: 16%;
    position: relative;
}

/* Circle number */
.timeline-item .circle {
    width: 60px;
    height: 60px;
    background: #ff7a00;
    border-radius: 50%;
    line-height: 60px;
    margin: 0 auto 15px;
    font-size: 22px;
    font-weight: bold;
}

/* Content */
.timeline-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 13px;
    opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {

    .timeline-items {
        flex-direction: column;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .timeline-line {
        display: none;
    }
}