.timeline-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 12% 2rem;
    gap: 150px;
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
}

.heading {
    font-size: 2.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.heading i {
    font-size: 4rem;
}

.content-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    margin: 0 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 3px solid rgb(110, 110, 110);
    border-radius: 1rem;
    font-size: 14px;
    transition: 0.4s ease;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    text-align: left;
}

.content-box:hover {
    box-shadow: 0 0 20px rgb(0, 255, 255);
    border: 3px solid rgb(0, 255, 255);
}

.timeline-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 1px solid rgb(0, 255, 255);
}

.content-box h3 {
    font-size: 1.3rem;
}

.date {
    font-size: 1.7rem;
    color: rgb(0, 255, 255);
    font-weight: 600;
    text-align: left;
}

.usd {
    font-size: 2.7rem;
    color: rgb(0, 255, 255);
    font-weight: 600;
    text-align: left;
}

.content-box::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    background-color: rgb(0, 255, 255);
    border-radius: 50px;
    left: -43px;
    top: 90px;
}

.timeline-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-image img {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 70px;
}


@media (max-width: 768px) {
    .timeline-wrapper {
        flex-direction: column;
    }

    .timeline-image {
        margin-top: -100px;
        margin-bottom: 60px;
    }

    .heading {
        font-size: 2rem;
        text-align: center;
        margin: 1rem 5rem;
    }

    .heading i {
        display: block;
        margin: 0 auto 0 -12px;
        font-size: 2.6rem; 
    }

    .timeline-image img {
        max-width: 100%;
    }

    .content-box {
        width: 83%;
        margin: 0 auto;
        
    }

    .content-box::before {
        display: none;
    }

    .timeline-box {
        border-left: none;
    }
}
