.timeline-area {
    position: relative;
}

.timeline-area .section-title {
    margin-bottom: 40px;
    color: #1e1e1b !important;
}

@media only screen and (min-width: 768px) {
    .timeline-area .section-title .section-description {
        font-size: 20px;
    }
}

.timeline-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 440px;
    height: 390px;
    background-image: url([[pix:theme|bg/arrow-transparent]]);
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .timeline-area::before {
        display: none;
    }
}

.timeline-area .content-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-area .content-container .step-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .timeline-area .content-container .step-container {
        flex-direction: row;
    }
}

@media only screen and (max-width: 767px) {
    .timeline-area .content-container .step-container .step-number::after {
        content: '';
        position: absolute;
        top: -24px;
        left: 24px;
        width: 1px;
        height: calc(42px + 100%);
        background-color: black;
        /* z-index: -1; */
        z-index : 1;
    }
}

@media only screen and (min-width: 768px) {
    .timeline-area .content-container .step-container:not(:last-child) .step-number-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: calc(50px + 100%);
        background-color: black;
        /* z-index: -1; */
         z-index : 1;
    }
}

.timeline-area .content-container .step-container .step-number-container {
    position: relative;
}

.timeline-area .content-container .step-container .step-number-container .step-number-padding {
    padding: 20px 5px;
}

@media only screen and (min-width: 768px) {
    .timeline-area .content-container .step-container .step-number-container .step-number-padding {
        background-color: white;
        transform: translateY(10px);
        padding: 5px;
        position: relative;
        z-index: 2;
    }
}

.timeline-area .content-container .step-container .step-number-container .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-weight: bold;
    font-size: 20px;
    background-color: white;
    position: relative;
}

.timeline-area .content-container .step-container .card-description {
    color: #6e6e6e;
}

.timeline-area .content-container .step-container .card-title {
    color: #3d3d3d;
    font-weight: 600;
}

.timeline-area .content-container .step-container .card-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media only screen and (min-width: 768px) {
    .timeline-area .content-container .step-container .card-container {
        width: 40%;
    }
}

.timeline-area .content-container .step-container .card--borderless {
    width: 100%;
}

.timeline-area .content-container .step-container .card--borderless .card-title {
    font-size: 24px;
    margin-bottom: 3px;
}

.timeline-area .content-container .step-container .card {
    width: 100%;
    padding: 24px;
    border-radius: 12px;
    background-color: #f0f4f9;
    box-shadow: 0px 2px 10px 0px #00000026;
}

.timeline-area .content-container .step-container .card .card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.timeline-area .content-container .step-container .card .card-cta {
    width: 100%;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3717f0;
    color: white;
    height: 48px;
    text-align: center;
    font-weight: 500;
}

/* tambahan bg-accent */
.block_custom_timeline .bg-accent {
    position: relative;
}

.block_custom_timeline .bg-accent::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 440px;
    height: 390px;
    background-image: url(pix/arrow-transparent.png);
    z-index: 0;
}

@media screen and (max-width: 767px) {
    .block_custom_timeline .bg-accent::before {
        display: none;
    }
}
