.fw-timeline {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.fw-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
}

.fw-timeline-item {
    position: relative;
    width: 100%;
    display: flex;
}

.fw-timeline-left {
    justify-content: flex-start;
}

.fw-timeline-right {
    justify-content: flex-end;
}

.fw-timeline-dot {
    position: absolute;
    left: 50%;
    top: 34px;
    width: 22px;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 8px #fff;
}

.fw-timeline-card {
    position: relative;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    border: 1px solid rgba(0,0,0,.08);
}

.fw-timeline-card::after {
    content: "";
    position: absolute;
    top: 36px;
    width: 18px;
    height: 18px;
    background: inherit;
    transform: rotate(45deg);
    border: inherit;
}

.fw-timeline-left .fw-timeline-card::after {
    right: -10px;
    border-left: 0;
    border-bottom: 0;
}

.fw-timeline-right .fw-timeline-card::after {
    left: -10px;
    border-right: 0;
    border-top: 0;
}

.fw-timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 54px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.fw-timeline-title {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.15;
}

.fw-timeline-subtitle {
    margin-bottom: 18px;
    font-weight: 700;
}

.fw-timeline-content {
    font-size: 16px;
    line-height: 1.65;
}

.fw-timeline-content ul {
    margin: 0 0 16px 20px;
}

@media (max-width: 767px) {
    .fw-timeline::before {
        left: 18px;
    }

    .fw-timeline-item,
    .fw-timeline-left,
    .fw-timeline-right {
        justify-content: flex-start;
        padding-left: 48px;
    }

    .fw-timeline-card {
        width: 100% !important;
        padding: 26px 22px;
    }

    .fw-timeline-dot {
        left: 18px;
    }

    .fw-timeline-card::after {
        left: -10px !important;
        right: auto !important;
        border-right: 0;
        border-top: 0;
        border-left: 1px solid rgba(0,0,0,.08);
        border-bottom: 1px solid rgba(0,0,0,.08);
    }
}