.container-1 {
    width: 50%;
    margin: auto;
}

.h22 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

/* Progress Line */
.progress-line {
    position: absolute;
    left: 50px;
    /* top: 9px; */
    width: 4px;
    height: 0;
    background: #062f65;
    transition: height 0.5s ease-in-out, background 0.5s ease-in-out;
}

/* Steps */
.step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0.3;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icons */
.icon {
    width: 40px;
    height: 40px;
    background: #062f65;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

/* Dashed Line */
.step::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50px;
    height: 95px;
    width: 4px;
    background: #b0d4eb86;
    z-index: 0;
    transition: background 0.5s ease-in-out;
}

/* Content */
.content {
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.imgg {
    width: 100%;
    height: auto;
    object-fit: contain;
}



@media (max-width: 768px) {
    .progress-line {
        position: absolute;
        left: 88px;
        top: 9px;
        width: 4px;
        height: 0;
        background: #062f65;
        transition: height 0.5sease-in-out, background 0.5s ease-in-out;
    }

    .step::before {
        content: "";
        position: absolute;
        left: 59px;
        top: 36px;
        height: 238px;
        width: 4px;
        background: #b0d4eb86;
        z-index: 0;
        transition: background 0.5s ease-in-out;
    }

    .container-1{
        width: 40%;
    }
}