﻿.journey-cards .journey-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--light-base-color);
    transform: translateX(-50%);
    z-index: 1;
}

/* Dots */
.journey-cards .journey-dot {
    position: absolute;
    top: 28px;
    left: 110%;
    transform: translate(-50%, 0);
    width: 20px;
    height: 20px;
    border: 3px solid var(--dark-gray-color);
    border-radius: 50%;
    z-index: 3;
    background: var(--base-color);
}

.journey-cards .dot-right {
    left: -10%;
    transform: translate(-50%, 0);
}

.journey-cards .journey-connector {
    position: absolute;
    top: 36px;
    width: 68px;
    height: 2px;
    background-color: var(--light-base-color);
    z-index: 2;
}

.journey-cards .connector-left {
    left: calc(100% - 12px);
}

.journey-cards .connector-right {
    left: -10%;
}

.journey-cards .journey-card {
    position: relative;
    z-index: 2;
}

.journey-cards .journey-item {
    position: relative;
    margin-bottom: 80px;
}

.journey-cards .badge-bg {
    background: var(--light-base-color);
}

@media (max-width: 992px) {
    .journey-cards .journey-line {
        left: 10%;
        transform: translateX(-50%);
    }

    .journey-cards .journey-connector {
        display: none;
    }

    .journey-cards .journey-dot,
    .journey-cards .dot-right {
        display: none;
    }

    .journey-cards .journey-item {
        margin-bottom: 60px;
    }
}