.pro-container {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.row {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin: 40px 0;
}

.card:hover {
    transform: translateY(-30px) translateX(10px);
    background-color: #2889ff;
}

.card {
    transition: transform 300ms, background-color 300ms, box-shadow 300ms;
    /* max-width: 400px; */
    max-width: 25vw;
    height: 19vw;
    color: white;
    border-radius: 20px;
    padding: 5px;
    font-size: 1.3em;
    background-color: #0f74ee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    -webkit-box-shadow: -7px 10px 38px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 10px 38px 0px rgba(0,0,0,0.75);
    box-shadow: -7px 10px 38px 0px rgba(0,0,0,0.75);
}

.card a img {
    width: 100%;
    /* height: 100%; */
    border-radius: 10px;
    transition: all ease 400ms;
}
.card:hover  a img {
    scale: 1.1;
    filter: brightness(0.9);
}
.pro-img-container {
    margin: 15px 5px 0 5px !important;
    overflow: hidden;
    border-radius: 10px;
}
::-webkit-scrollbar {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #383838;
    border-radius: 10px;
}

.section-wrapper{
    /* margin-top: 300px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 440vh;
}

.projects-container {
    position: relative;
    /* border: 5px red solid; */
    width: 80%;
    height: 100%;
}
.projecthead-wrapper {
    /* background-color: blueviolet; */
    width: 100%;
    position: sticky;
    height: 100vh;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-head {
    font-size: 50px;
    font-weight: 500;
    margin-top: 120px;
    text-align: center;
}

.cards-container {
    position: absolute;
    z-index: 3;
    top: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.cards-wrapper{
    width: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 600px) {
    .pro-container {
        margin-bottom: 50px;
    }
    .row {
        flex-direction: column;
        margin: 0;
        width: auto;
    }
    .card {
        max-width: 85vw;
        width: 85vw;
        height: 70vw;
        margin-top: 50px;
    }
}