/*Start Project Gallery - Desktop*/
.project_gallery_wrapper {
	background-color: #f7f7fa;
}
.project_gallery_container {
    padding-top: 18px;
    border-top: 1px solid rgb(226, 223, 240);
    margin-bottom: 18px;
}
.project_gallery_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}
.project_gallery_title h2 {
    	margin: 0;

	color: #2F2C82;
	font-family: Outfit;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.project_gallery_title h2:after {
    content: "";
    width: 90px;
    height: 4px;
    background-color: #ff792c;
    display: block;
    margin: 15px 0;
    clear: both;
}
.project_gallery_title p {
    font: 18px Outfit, sans-serif;
    color: rgb(107, 106, 134);
    margin: 0 0 0 auto;
}  
.project_gallery_list {  
	display: flex;
	flex-direction: row;
	align-items: stretch;
	flex-wrap: wrap;
	row-gap: 20px;
}    
.project_gallery_list_single {
     height: 250px;
     max-width: calc(25% - 20px);
	margin-right: 20px;   
}
.project_gallery_list_single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
/*End Project Gallery - Desktop*/


@media screen and (max-width: 767px) {
	.project_gallery_title {
		padding: 0 10px;
		flex-direction: column;
		align-items: flex-start;
	}
    	.project_gallery_list_single {
        max-width: calc(100% - 40px);
        margin-right: 20px;
        margin-left: 20px;
    	}
	.project_gallery_title p { 
		margin: 10px 0 0;
	}
}