::-webkit-scrollbar {
    display: none;
}

.pri-txt-gredient {
    background-image: linear-gradient(141deg, #adf1e0, #8075ff 28%, #ff7171 98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pri-gredient {
    background-image: linear-gradient(141deg, #adf1e0, #8075ff 28%, #ff7171 98%);

}

.sec-gredient {
    background-image: linear-gradient(141deg, #adf1e07f, #8075ff7f 28%, #ff71717f 98%);

}

@media (prefers-color-scheme: light) {
    :root {
        --pri-bg: #fff;
        --sec-bg: rgba(0, 0, 0, 0.05);
        --sec-hover: rgba(0, 0, 0, 0.1);
        --font-clr: #000000;
        --sec-font-clr: #434343e9;
        --primary-anim: .3s;
        --font: 'Poppins', sans-serif;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --pri-bg: #000000;
        --sec-bg: rgba(255, 255, 255, 0.1);
        --sec-hover: rgba(255, 255, 255, 0.245);
        --font-clr: #ffffff;
        --sec-font-clr: rgb(184, 184, 184);
        --primary-anim: .3s;
        --font: 'Poppins', sans-serif;
    }
}


.project-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
}

.project-page-title {
    color: var(--font-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;

}

.btn-cont {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 50px;
}



.pro-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    border-radius: 1rem;
    border: none;
    position: relative;
    background: var(--sec-bg);
    transition: 0.1s;
}

.pro-btns::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1) 17.8%, rgba(2, 245, 255, 1) 100.2%);
    filter: blur(15px);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}

.pro-btns:active {
    transform: scale(0.9) rotate(3deg);
    background: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 94, 247, 1) 17.8%, rgba(2, 245, 255, 1) 100.2%);
    transition: 0.5s;
}

/* PROJECT CONTENTS */
.project-main-sec {
    display: flex;
    flex-direction: column;
    padding: 0px 20vw;
}

.progress-cont {
    display: flex;
}

.progress-last-cont {
    display: flex;
    margin-bottom: 100px;
}

.progress-title {
    font-size: 30px;
    font-weight: 500;
}

.prog-dis {
    width: 50vw;
    font-size: 17px;
    word-wrap: break-word;
    color: var(--sec-font-clr);
    margin-top: 20px;
}

.prog-img-cont {
    display: flex;
    width: 300px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--sec-bg);
    padding: 5px;
    padding-bottom: 10px;
    margin: 5px;
    border-radius: 25px;
}

.prog-img-cont-p {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.prog-img-title {

    color: var(--sec-font-clr);
}

.prog-imgs {
    width: 100%;
    border-radius: 25px;
}

.prog-ul {

    width: 50vw;
    font-size: 17px;
    word-wrap: break-word;
    color: var(--sec-font-clr);
    margin-bottom: 30px;
    margin-top: 20px;
}

/* TRACKER */
.trc-cont {
    left: 0px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    background-color: #72708200;
    width: 20px;
    margin-right: 50px;
    height: 100;
}

.trc-dot {
    background-color: #8d83ff;
    border-radius: 15px;
    position: absolute;
    width: 20px;
    height: 20px;
    -webkit-box-shadow: 0px 0px 25px 13px rgba(128, 117, 255, 1);
    -moz-box-shadow: 0px 0px 25px 13px rgba(128, 117, 255, 1);
    box-shadow: 0px 0px 25px 10px rgba(128, 117, 255, 1);

}

.trc-track {
    margin-top: 5px;
    width: 2px;
    height: 100%;
    background-color: var(--sec-bg);
    background-color: #adf1e0;
    background-image: linear-gradient(141deg, #adf1e0, #8075ff 28%, #ff7171 98%);
    -webkit-box-shadow: 0px 0px 10px 3px #adf1e0;
    -moz-box-shadow: 0px 0px 10px 3px #adf1e0;
    box-shadow: 0px 0px 10px 2px #adf1e0;
}

@media only screen and (max-width: 600px) {
    .trc-cont {
        left: 0px;
    }

    .project-main-sec {
        padding: 0px 5vw;
    }

    .project-page-title {
        font-size: 60px;
    }

    .prog-dis {
        width: 80vw;
    }
}