.stack-cards:hover {
    box-shadow: 0px 0px 10px 0px #91B7F399;


    .explore-btn {
        background-color: var(--blue1);
        color: white;
    }
}

#progress-container {
    position: absolute;
    display: flex;

    top: 30px;
    right: 20px;
    width: 3px;
    height: 80%;
    background: #D5E6FF;
    border-radius: 10px;
    overflow: hidden;
    z-index: 998;
}

#progress-bar {
    width: 100%;
    height: 0%;
    background: #0066FF;
    border-radius: 10px;
    transition: height 0.2s ease-out;
}


.stack-wrapper::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;

}

.stack-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100vh;
    overflow: auto;
    position: relative;
    scroll-behavior: smooth;
    padding: 40px 30px;



}

.stack-cards {
    padding: 24px;
    border: 1px solid #D5E6FF;
    border-radius: 16px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 4rem;
    overflow: hidden;

    position: sticky;
    top: 0;
    z-index: 1;
    background: white;
    padding: 20px;
    transition: all 0.4s ease;
}


.stack-cards:nth-child(2) {
    top: 20px;

}

.stack-cards:nth-child(3) {
    top: 40px;

}

.stack-cards:nth-child(4) {
    top: 60px !important;

}


.stack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

}

@media (max-width: 991px) {
    .stack-wrapper {
        padding: 20px 10px;
        height: unset;

    }

    .stack-cards {
        margin-left: 0px;
        margin-right: 0px;
    }

    #progress-container {
        display: none;
    }


    .stack-img {

        object-fit: cover;
        object-position: center;
        display: block;

    }

}


.stack-cards img.stack-img {
    transition: transform 0.4s ease;
}

.stack-cards:hover img.stack-img {
    transform: scale(1.02);
}

.icon-20 {
    height: 20px;
    width: 20px;
}