.projects-sec{
    width: 100%;
    min-height: 25rem;
    display: flex;
    justify-content: center;
    padding-bottom: 7rem;
    background-color: rgb(238, 244, 244);

}
.projects-inner{
    width: 90%;
    display: flex;
    justify-content: center;
}
.projects-con{
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.project-header{
    width: 70%;
}
.project-header h3, p{
    display: flex;
    justify-content: center;
}
.projects{
    width: 100%;
    min-height: 23rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}
.project{
    width: 14rem;
    height: 26rem;
    overflow: hidden;
    
}
.web-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


@media (max-width: 640px) {
    .projects{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}