.project_section{
    margin-top: 5em !important;
}
.project_images {
    position: relative;
    overflow: hidden;
}

.project_images img {
    transition: transform 0.3s ease;
    max-width: 100%;
    padding: 0rem;
    border: 0px solid black;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    object-fit: cover;
}

/* Default to 100vh */
.project_images img {
    height: 100vh;
}

/* Adjust height for different viewport widths */
@media (max-width: 1000px) {
    .project_images img {
        height: 90vh;
    }
}

@media (max-width: 900px) {
    .project_images img {
        height: 80vh;
    }
}

@media (max-width: 800px) {
    .project_images img {
        height: 70vh;
    }
}

@media (max-width: 700px) {
    .project_images img {
        height: 60vh;
    }
}

@media (max-width: 600px) {
    .project_images img {
        height: 50vh;
    }
}
@media (max-width: 500px) {
    .project_images img {
        height: 40vh;
    }
}


.project_images:hover img {
    transform: scale(1.1);
}
.project_images_in p{
    margin-top: 35%;
    font-family: Montserrat;
  }

.project_images_in {
    width: 100%;
    height: 100%;
    border: 0px solid green;
    position: absolute;
    top: -100%;
    overflow: hidden;
    text-align: center;
    font-size: 40px;
    background-color: rgba(200, 203, 218, 0.3);
    color: white;
    font-weight: 600;
}

.project_images:hover .project_images_in {
    top: 0%;
    transition: 0.5s;
    overflow: hidden;
}
.project_brick{
    /* width: 70%; */
    border: 0px solid red;
    /* text-align: justify; */
}
.project_brick p{
    font-family: Montserrat;
}
.project_brick a{
    font-family: Montserrat;
}
@media screen and (max-width: 768px) and (min-width: 0px) {
    .project_brick{
        width: 100%;
        border: 0px solid red;
        /* text-align: justify; */
        margin-top: 2em;
    }
    .project_images_in{
        font-size: 22px;
    } 
}