.hero-container {
    background-image: url('/imgs/assets/bgs/pest_control_worker_in_crawlspace_portrait.png');

    .gradient {
        background: linear-gradient(180deg, rgba(14, 14, 14, .8) 40%, rgba(14, 14, 14, 0) 80%);
    }
}

.timeline-container {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(min-width: 768px) {
    .hero-container {
        background-image: url('/imgs/assets/bgs/pest_control_worker_in_crawlspace_landscape.png');

        .gradient {
            background: linear-gradient(95deg, rgba(14, 14, 14, .8) 40%, rgba(14, 14, 14, 0) 80%) !important;
        }
    }
}

@media(min-width: 992px) {
    .timeline-container {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline {
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0px;
    background: black;
}

.timeline-item {
    position: relative;
    z-index: 2;
    background-color: black;
    border: 4px solid white;
    color: var(--text-secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s ease, height .3s ease;
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .card-left,
    .card-right {
        text-align: left;
    }
}
