.inner-project-list { 
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    margin-right: -10px;
    margin-left: -10px;
} 
.project-list-item {  
    position: relative;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    height: 50%;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px; 
} 
.project-list {
    height: 100vh;
    padding-top: 75px; 
}
.project-list .container-fluid {
    height: 100%;
}
.inner-project {
    height: 100%;
}
.project-list-item .project-link {
    height: 100%;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    position: relative; 
}
.proj_list {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 10px; 
    text-align: center; 
    border: 1px solid #fbd67c; 
}
.proj_list h2 {
    color: #fbd67c;
    margin-bottom: 10px;
    font-size: 25px;
    font-family: 'latosemibold';
    text-transform: uppercase;
    z-index: 2;
}  
.proj_list p {
    font-family: 'latoitalic';
    color: #fff;
    font-size: 14px;
    margin: 0;
    z-index: 2;
}   
.proj_list h4 {
    color: #fff;
    text-align: center;
    line-height: normal;
    font-size: 16px;
    margin: 15px 0 0 0;
    z-index: 2;   
} 
.proj_list::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(5 56 68 / 26%);
    z-index: 1;
}
.project-list-item .project-link:hover .proj_list::before {
    background-color: rgba(0, 0, 0, 0); 
}
.two-part .project-list-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
}  
/* RESPONSIVE CSS STARTS HERE */
@media only screen and (max-width:991px) {
    .project-list-item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        height: 50%;
    }
    .proj_list h2 {
        font-size: 22px;
    }   
}

@media only screen and (max-width:767px) {
    .proj_list h2 {
        font-size: 18px;
    }
}
@media only screen and (max-width:575px) {
    .project-list-item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        height: 50%;
    }
    .two-part .project-list-item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        height: 50%;
    }
    .proj_list h2 {
        font-size: 16px;
    }
    .proj_list p {
        font-size: 13px;
    }
}
/* RESPONSIVE CSS ENDS HERE */
